content stringlengths 4 1.04M | lang stringclasses 358
values | score int64 0 5 | repo_name stringlengths 5 114 | repo_path stringlengths 4 229 | repo_licenses listlengths 1 8 |
|---|---|---|---|---|---|
package foo;
public class A {
public Nested nested() {
return new Nested();
}
public static class Nested {}
}
| Java | 3 | qussarah/declare | compiler/testData/cli/jvm/javaSrcWrongPackage/A.java | [
"Apache-2.0"
] |
// run-pass
#![allow(unused_variables)]
// Test implicit coercions from a fn item type to a fn pointer type.
// pretty-expanded FIXME #23616
fn foo(x: isize) -> isize { x * 2 }
fn bar(x: isize) -> isize { x * 4 }
type IntMap = fn(isize) -> isize;
fn eq<T>(x: T, y: T) { }
fn main() {
let f: IntMap = foo;
eq::<IntMap>(foo, bar);
}
| Rust | 4 | Eric-Arellano/rust | src/test/ui/functions-closures/fn-item-type-coerce.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
******************************************************************************;
* Copyright (c) 2015 by SAS Institute Inc., Cary, NC 27513 USA *;
* *;
* Licensed under the Apache License, Version 2.0 (the "License"); *;
* you may not use this file except in compliance with the License. *;
* You may obtain a copy of the License at *;
* *;
* http://www.apache.org/licenses/LICENSE-2.0 *;
* *;
* Unless required by applicable law or agreed to in writing, software *;
* distributed under the License is distributed on an "AS IS" BASIS, *;
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *;
* See the License for the specific language governing permissions and *;
* limitations under the License. *;
******************************************************************************;
******************************************************************************;
* simple random projections example: *;
* determine conservative number of random vectors to generate *;
* generate random uniform i.i.d. vectors *;
* execute original_features*transpose(random_generated_vectors) dot product *;
* to complete projection *;
******************************************************************************;
* set working directory;
%let git_repo_dir = ;
libname l "&git_repo_dir";
* conservatively determine the number of needed random vectors;
* choose epsilon, distance distortion introduced by a random projection is;
* factor of (1 +- epsilon);
%let epsilon = 0.1;
%macro determine_n_features(ds, epsilon);
%global n_features;
%let dsid = %sysfunc(open(&ds));
%let nobs = %sysfunc(attrn(&dsid, NLOBS));
%let _rc = %sysfunc(close(&dsid));
data _null_;
n_features = 4*log(&nobs)/(((&epsilon**2)/2)
- ((&epsilon**3)/3));
call symput('n_features', strip(put(ceil(n_features), best.)));
run;
%put n_features=&n_features.;
%mend;
%determine_n_features(l.original_features, &epsilon);
* create Gaussian i.i.d. random features with data step;
%macro create_random_vectors(ds, k, out=random_generated_vectors, seed=12345);
* create a macro array of input names in the training data;
* necessary for using PROC SCORE;
proc contents
data=&ds.(drop=id) /* do not use id variable in calculation */
out=names(keep=name)
noprint;
run;
data _null_;
set names end=eof;
call symput('name'||strip(put(_n_, best.)), name);
if eof then call symput('n_names', strip(put(_n_, best.)));
run;
* generate random row vectors for PROC SCORE;
data &out;
call streaminit(&seed);
do i=1 to &k;
_TYPE_='SCORE';
_NAME_=compress('random_feature'||strip(put(i, best.)));
%do j=1 %to &n_names;
&&name&j = 2*rand('NORMAL')-1;
%end;
output;
end;
drop i;
run;
%mend;
%create_random_vectors(l.original_features, &n_features);
* project data onto generated random vectors with PROC SCORE;
* executes original_features*transpose(generated_random_vectors) dot product;
proc score
data=l.original_features
type='SCORE' /* requests dot product multiplication */
score=random_generated_vectors
out=random_features(keep=random_feature:)
nostd;
var BE_: STD_:; /* do not use id variable in calculation */
id id;
run;
| SAS | 4 | mikiec84/enlighten-apply | SAS_UE_Random_Projections/random_projections.sas | [
"Apache-2.0"
] |
import createSvgIcon from './utils/createSvgIcon';
import { jsx as _jsx } from "react/jsx-runtime";
export default createSvgIcon([/*#__PURE__*/_jsx("path", {
d: "M13 19c1.65 0 3-1.35 3-3v-3h-6v3c0 1.65 1.35 3 3 3z",
opacity: ".3"
}, "0"), /*#__PURE__*/_jsx("path", {
d: "M9 7h8c.55 0 1-.45 1-1V4h2V2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14v-2h-4.03c1.23-.91 2.03-2.36 2.03-4v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v2c0 .55.45 1 1 1zm1 9v-3h6v3c0 1.65-1.35 3-3 3s-3-1.35-3-3z"
}, "1"), /*#__PURE__*/_jsx("circle", {
cx: "13",
cy: "9",
r: "1"
}, "2")], 'CoffeeMakerTwoTone'); | JavaScript | 4 | good-gym/material-ui | packages/material-ui-icons/lib/esm/CoffeeMakerTwoTone.js | [
"MIT"
] |
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
void main() {
runApp(
DecoratedBox(
decoration: const BoxDecoration(color: Colors.white),
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
textDirection: TextDirection.ltr,
children: const <Widget>[
FlutterLogo(size: 48),
Padding(
padding: EdgeInsets.all(32),
child: Text(
'This app is only meant to be run under the Flutter debugger',
textDirection: TextDirection.ltr,
textAlign: TextAlign.center,
style: TextStyle(color: Colors.black87),
),
),
],
),
),
),
);
}
| Dart | 3 | Mayb3Nots/flutter | examples/splash/lib/main.dart | [
"BSD-3-Clause"
] |
{}
:users $ {}
|rJoDgvdeG $ {} (:id |rJoDgvdeG) (:name |chen) (:nickname |chen) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
|root $ {} (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
:ir $ {} (:package |respo)
:files $ {}
|respo.app.style.widget $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.style.widget) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |hsl.core) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |hsl) (:by |root) (:at 1504774121421)
:defs $ {}
|button $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |button) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:line-height) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "|\"28px") (:by |rJoDgvdeG) (:at 1571551548528)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |hsl) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |100) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:display) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:inline-block) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:cursor) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:pointer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:font-family) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||Avenir,Verdana) (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:height) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |28) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "|\"0 6px 0 6px") (:by |rJoDgvdeG) (:at 1571551542606)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:background-color) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |hsl) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |80) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |70) (:by |root) (:at 1504774121421)
|input $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |input) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:font-size) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||16px) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:line-height) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||24px) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "||0px 8px") (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:outline) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:none) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:min-width) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||300px) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:background-color) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |hsl) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |94) (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:border) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:none) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.app.comp.wrap $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.comp.wrap) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |root) (:at 1505301328166)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1505301331033)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1540830069322)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1508915113987)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
:defs $ {}
|comp-wrap $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-wrap) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.app.comp.container $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.comp.container) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|f $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1540830018171)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1508915063808)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |span) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |<>) (:by |root) (:at 1504774121421)
|yT $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718739742) (:text |>>)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.comp.todolist) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-todolist) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592134715191)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592134715502) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592134718074) (:text |respo.comp.space)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592134718793) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592134718980)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592134719112) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592134722022) (:text |=<)
:defs $ {}
|comp-container $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-container) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |states) (:by |rJoDgvdeG) (:at 1584718727659)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:states) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-global) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|r $ {} (:type :leaf) (:text |comp-todolist) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |states) (:by |rJoDgvdeG) (:at 1584718729784)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:tasks) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|s $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-states) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1515895708075)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1515895708881) (:text |str)
|L $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1515895713104) (:text "||states: ")
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:states) (:by |root) (:at 1505327099898)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|style-global $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-global) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:font-family) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||Avenir,Verdana) (:by |root) (:at 1504774121421)
|style-states $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-states) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |8) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.render.html $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.render.html) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |clojure.string) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.format) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |prop->attr) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |purify-element) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |mute-element) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |ensure-string) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |text->html) (:by |root) (:at 1504774121421)
|yT $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291780486) (:text |get-style-value)
|yj $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1614697236792) (:text |dashed->camel)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.detect) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |component?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |element?) (:by |root) (:at 1504774121421)
:defs $ {}
|element->string $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element->string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tag-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |into) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |styles) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |or) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |text-inside) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1512356708165)
:data $ {}
|D $ {} (:type :leaf) (:text |if) (:by |rJoDgvdeG) (:at 1512356709151)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1512356709603)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |rJoDgvdeG) (:at 1512356709729)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:textarea) (:by |rJoDgvdeG) (:at 1512356722395)
|P $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1512356723117)
:data $ {}
|T $ {} (:type :leaf) (:text |escape-html) (:by |rJoDgvdeG) (:at 1512356727951)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1512356856748)
:data $ {}
|T $ {} (:type :leaf) (:text |:value) (:by |rJoDgvdeG) (:at 1512356856393)
|j $ {} (:type :leaf) (:text |attrs) (:by |rJoDgvdeG) (:at 1512356863457)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |or) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:innerHTML) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |attrs) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |text->html) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:inner-text) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |attrs) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tailored-props) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |attrs) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dissoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:innerHTML) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dissoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:inner-text) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1508600721515)
|j $ {} (:type :leaf) (:text |styles) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:text |props) (:by |root) (:at 1508600730204)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |styles) (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |props-in-string) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |props->string) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tailored-props) (:by |root) (:at 1504774121421)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |children) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:children) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |child) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |last) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |element->string) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |child) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|yr $ {} (:type :leaf) (:text |tag-name) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |or) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |text-inside) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string/join) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |children) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||<) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |props-in-string) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |>) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |count) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props-in-string) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text "|| ") (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text ||) (:by |root) (:at 1504774121421)
|yj $ {} (:type :leaf) (:text ||</) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |tag-name) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text ||>) (:by |root) (:at 1504774121421)
|yv $ {} (:type :leaf) (:text ||>) (:by |root) (:at 1504774121421)
|entry->string $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry->string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |k) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |v) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |last) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |prop->attr) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |k) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||=) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:by |root) (:at 1508599040218)
|j $ {} (:type :expr) (:by |root) (:at 1508599040686)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |k) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |style->string) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |v) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |root) (:at 1508599021605)
:data $ {}
|L $ {} (:type :expr) (:by |root) (:at 1508599023893)
:data $ {}
|T $ {} (:type :leaf) (:text |boolean?) (:by |root) (:at 1508599026215)
|j $ {} (:type :leaf) (:text |v) (:by |root) (:at 1508599027170)
|P $ {} (:type :expr) (:by |root) (:at 1508599029941)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1508599030568)
|j $ {} (:type :leaf) (:text |v) (:by |root) (:at 1508599031475)
|w $ {} (:type :expr) (:by |root) (:at 1508599021605)
:data $ {}
|L $ {} (:type :expr) (:by |root) (:at 1508599023893)
:data $ {}
|T $ {} (:type :leaf) (:text |number?) (:by |root) (:at 1508599060138)
|j $ {} (:type :leaf) (:text |v) (:by |root) (:at 1508599027170)
|P $ {} (:type :expr) (:by |root) (:at 1508599029941)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1508599030568)
|j $ {} (:type :leaf) (:text |v) (:by |root) (:at 1508599031475)
|wT $ {} (:type :expr) (:by |root) (:at 1508599021605)
:data $ {}
|L $ {} (:type :expr) (:by |root) (:at 1508599023893)
:data $ {}
|T $ {} (:type :leaf) (:text |keyword?) (:by |root) (:at 1508599131810)
|j $ {} (:type :leaf) (:text |v) (:by |root) (:at 1508599027170)
|P $ {} (:type :expr) (:by |root) (:at 1508599029941)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1508599134552)
|j $ {} (:type :leaf) (:text |v) (:by |root) (:at 1508599031475)
|wj $ {} (:type :expr) (:by |root) (:at 1508599159698)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1508599163749)
:data $ {}
|T $ {} (:type :leaf) (:text |string?) (:by |root) (:at 1508599165979)
|j $ {} (:type :leaf) (:text |v) (:by |root) (:at 1508599166869)
|j $ {} (:type :expr) (:by |root) (:at 1508599234789)
:data $ {}
|D $ {} (:type :leaf) (:text |escape-html) (:by |root) (:at 1508599235651)
|T $ {} (:type :leaf) (:text |v) (:by |root) (:at 1508599169148)
|x $ {} (:type :expr) (:by |root) (:at 1508599049536)
:data $ {}
|T $ {} (:type :leaf) (:text |:else) (:by |root) (:at 1508599050945)
|j $ {} (:type :expr) (:by |root) (:at 1508599161467)
:data $ {}
|D $ {} (:type :leaf) (:text |str) (:by |root) (:at 1508599162298)
|T $ {} (:type :leaf) (:text |v) (:by |root) (:at 1508599051449)
|escape-html $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |escape-html) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |text) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1512356884509)
:data $ {}
|D $ {} (:type :leaf) (:text |if) (:by |rJoDgvdeG) (:at 1512356885476)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1512356886561)
:data $ {}
|T $ {} (:type :leaf) (:text |nil?) (:by |rJoDgvdeG) (:at 1512356888690)
|j $ {} (:type :leaf) (:text |text) (:by |rJoDgvdeG) (:at 1512356889535)
|P $ {} (:type :leaf) (:text "|\"") (:by |rJoDgvdeG) (:at 1596102369852)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |text) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string/replace) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |re-pattern) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "||\"") (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||") (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string/replace) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |re-pattern) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||<) (:by |rJoDgvdeG) (:at 1512356539277)
|r $ {} (:type :leaf) (:text ||<) (:by |rJoDgvdeG) (:at 1512356541439)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string/replace) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |re-pattern) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||>) (:by |rJoDgvdeG) (:at 1512356543433)
|r $ {} (:type :leaf) (:text ||>) (:by |rJoDgvdeG) (:at 1512356546006)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string/replace) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |re-pattern) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "|\"\\n") (:by |rJoDgvdeG) (:at 1596102368087)
|r $ {} (:type :leaf) (:text "|\" ") (:by |rJoDgvdeG) (:at 1596102589821)
|make-string $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |make-string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tree) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |element->string) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |purify-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |mute-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tree) (:by |rJoDgvdeG) (:at 1612102552964)
|props->string $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props->string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |filter) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797272443)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1592797272797)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797274143) (:text |k)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797276719) (:text |v)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797286599)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |re-matches) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |re-pattern) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||^:on-.+) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |k) (:by |root) (:at 1504774121421)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797287302) (:text |and)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797287684)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797288707) (:text |some?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797289060) (:text |v)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry->string) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string/join) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "|| ") (:by |root) (:at 1504774121421)
|style->string $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style->string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |styles) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |styles) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |k) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |v) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291550895)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |last) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291778389) (:text |get-style-value)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1614697188660)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291554927) (:text |style-name)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1614697232401) (:text |dashed->camel)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291129389)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291131203) (:text |style-name)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291133775)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291133775) (:text |name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291133775) (:text |k)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||:) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text ||;) (:by |root) (:at 1504774121421)
|f $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291137245) (:text |style-name)
|t $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291536219)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291536884) (:text |escape-html)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291556854) (:text |v)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string/join) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.main $ {}
:ns $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714053436)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |rJoDgvdeG) (:at 1511714053436)
|j $ {} (:type :leaf) (:text |respo.main) (:by |rJoDgvdeG) (:at 1511714053436)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714079782)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |rJoDgvdeG) (:at 1511714088676)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714088948)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511714089812)
|j $ {} (:type :leaf) (:text |respo.core) (:by |rJoDgvdeG) (:at 1511714092170)
|r $ {} (:type :leaf) (:text |:refer) (:by |rJoDgvdeG) (:at 1511714092875)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714093124)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511714093849)
|j $ {} (:type :leaf) (:text |clear-cache!) (:by |rJoDgvdeG) (:at 1511714096348)
|r $ {} (:type :leaf) (:text |*changes-logger) (:by |rJoDgvdeG) (:at 1511714101816)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714103176)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511714111319)
|T $ {} (:type :leaf) (:text |cljs.reader) (:by |rJoDgvdeG) (:at 1511714104935)
|j $ {} (:type :leaf) (:text |:refer) (:by |rJoDgvdeG) (:at 1511714105596)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714106224)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511714106640)
|j $ {} (:type :leaf) (:text |read-string) (:by |rJoDgvdeG) (:at 1511714108290)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714112837)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511714113862)
|j $ {} (:type :leaf) (:text |respo.app.core) (:by |rJoDgvdeG) (:at 1511714115981)
|r $ {} (:type :leaf) (:text |:refer) (:by |rJoDgvdeG) (:at 1511714117106)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714117398)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511714117609)
|j $ {} (:type :leaf) (:text |render-app!) (:by |rJoDgvdeG) (:at 1511714120365)
|n $ {} (:type :leaf) (:by |root) (:at 1529814814468) (:text |handle-ssr!)
|r $ {} (:type :leaf) (:text |*store) (:by |rJoDgvdeG) (:at 1511714122091)
:defs $ {}
|main! $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714064801)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |rJoDgvdeG) (:at 1511714147703)
|j $ {} (:type :leaf) (:text |main!) (:by |rJoDgvdeG) (:at 1511714064801)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714064801)
:data $ {}
|t $ {} (:type :expr) (:by |root) (:at 1529814828134)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1541907170637) (:text |;)
|T $ {} (:type :leaf) (:by |root) (:at 1529814828532) (:text |handle-ssr!)
|j $ {} (:type :leaf) (:by |root) (:at 1529814837949) (:text |mount-target)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714151201)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |rJoDgvdeG) (:at 1511714151642)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714151901)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714152077)
:data $ {}
|T $ {} (:type :leaf) (:text |raw) (:by |rJoDgvdeG) (:at 1511714159309)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714159624)
:data $ {}
|T $ {} (:type :leaf) (:text |.getItem) (:by |rJoDgvdeG) (:at 1511714160896)
|j $ {} (:type :leaf) (:text |js/window.localStorage) (:by |rJoDgvdeG) (:at 1511714167059)
|r $ {} (:type :leaf) (:text ||respo) (:by |rJoDgvdeG) (:at 1511714168600)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714171488)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |rJoDgvdeG) (:at 1511714172059)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714172408)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |rJoDgvdeG) (:at 1511714173139)
|j $ {} (:type :leaf) (:text |raw) (:by |rJoDgvdeG) (:at 1511714174088)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714174658)
:data $ {}
|T $ {} (:type :leaf) (:text |swap!) (:by |rJoDgvdeG) (:at 1511714175868)
|j $ {} (:type :leaf) (:text |*store) (:by |rJoDgvdeG) (:at 1511714177637)
|r $ {} (:type :leaf) (:text |assoc) (:by |rJoDgvdeG) (:at 1511714178943)
|v $ {} (:type :leaf) (:text |:tasks) (:by |rJoDgvdeG) (:at 1511714180772)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714181319)
:data $ {}
|T $ {} (:type :leaf) (:text |read-string) (:by |rJoDgvdeG) (:at 1511714184225)
|j $ {} (:type :leaf) (:text |raw) (:by |rJoDgvdeG) (:at 1511714185238)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714188800)
:data $ {}
|T $ {} (:type :leaf) (:text |render-app!) (:by |rJoDgvdeG) (:at 1511714191933)
|j $ {} (:type :leaf) (:text |mount-target) (:by |rJoDgvdeG) (:at 1511714194378)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714210559)
:data $ {}
|T $ {} (:type :leaf) (:text |add-watch) (:by |rJoDgvdeG) (:at 1511714197749)
|j $ {} (:type :leaf) (:text |*store) (:by |rJoDgvdeG) (:at 1511714217070)
|r $ {} (:type :leaf) (:text |:rerender) (:by |rJoDgvdeG) (:at 1511714219489)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714220597)
:data $ {}
|T $ {} (:type :leaf) (:text "|#()") (:by |rJoDgvdeG) (:at 1511714238088)
|j $ {} (:type :leaf) (:text |render-app!) (:by |rJoDgvdeG) (:at 1511714232501)
|r $ {} (:type :leaf) (:text |mount-target) (:by |rJoDgvdeG) (:at 1511714235679)
|y $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714240706)
:data $ {}
|D $ {} (:type :leaf) (:text |;) (:by |rJoDgvdeG) (:at 1511714734746)
|T $ {} (:type :leaf) (:text |reset!) (:by |rJoDgvdeG) (:at 1511714243683)
|j $ {} (:type :leaf) (:text |*changes-logger) (:by |rJoDgvdeG) (:at 1511714251576)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714252645)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |rJoDgvdeG) (:at 1511714260040)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714260344)
:data $ {}
|T $ {} (:type :leaf) (:text |old-tree) (:by |rJoDgvdeG) (:at 1511714261804)
|j $ {} (:type :leaf) (:text |new-tree) (:by |rJoDgvdeG) (:at 1511714263034)
|r $ {} (:type :leaf) (:text |changes) (:by |rJoDgvdeG) (:at 1511714264193)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714265521)
:data $ {}
|T $ {} (:type :leaf) (:text |.log) (:by |rJoDgvdeG) (:at 1511714266146)
|j $ {} (:type :leaf) (:text |js/console) (:by |rJoDgvdeG) (:at 1511714267518)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714268749)
:data $ {}
|T $ {} (:type :leaf) (:text |clj->js) (:by |rJoDgvdeG) (:at 1511714270431)
|j $ {} (:type :leaf) (:text |changes) (:by |rJoDgvdeG) (:at 1511714272165)
|yT $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714274084)
:data $ {}
|T $ {} (:type :leaf) (:text |println) (:by |rJoDgvdeG) (:at 1511714275046)
|j $ {} (:type :leaf) (:text ||Loaded.) (:by |rJoDgvdeG) (:at 1511714279547)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714280283)
:data $ {}
|T $ {} (:type :leaf) (:text |.now) (:by |rJoDgvdeG) (:at 1511714280985)
|j $ {} (:type :leaf) (:text |js/performance) (:by |rJoDgvdeG) (:at 1511714286951)
|x $ {} (:type :expr) (:by |root) (:at 1540829557612)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1540829557612) (:text |set!)
|j $ {} (:type :expr) (:by |root) (:at 1540829557612)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1540829557612) (:text |.-onbeforeunload)
|j $ {} (:type :leaf) (:by |root) (:at 1540829557612) (:text |js/window)
|r $ {} (:type :leaf) (:by |root) (:at 1540829557612) (:text |save-store!)
|mount-target $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714063789)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |rJoDgvdeG) (:at 1511714126882)
|j $ {} (:type :leaf) (:text |mount-target) (:by |rJoDgvdeG) (:at 1511714063789)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714063789)
:data $ {}
|T $ {} (:type :leaf) (:text |.querySelector) (:by |rJoDgvdeG) (:at 1511714131169)
|j $ {} (:type :leaf) (:text |js/document) (:by |rJoDgvdeG) (:at 1511714135296)
|r $ {} (:type :leaf) (:text ||.app) (:by |rJoDgvdeG) (:at 1511714138171)
|reload! $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714076488)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |rJoDgvdeG) (:at 1511714076488)
|j $ {} (:type :leaf) (:text |reload!) (:by |rJoDgvdeG) (:at 1511714076488)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714076488)
:data $ {}
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714293542)
:data $ {}
|T $ {} (:type :leaf) (:text |clear-cache!) (:by |rJoDgvdeG) (:at 1511714296695)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714297341)
:data $ {}
|T $ {} (:type :leaf) (:text |render-app!) (:by |rJoDgvdeG) (:at 1511714299850)
|j $ {} (:type :leaf) (:text |mount-target) (:by |rJoDgvdeG) (:at 1511714301998)
|y $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714302367)
:data $ {}
|T $ {} (:type :leaf) (:text |.log) (:by |rJoDgvdeG) (:at 1511714303053)
|j $ {} (:type :leaf) (:text |js/console) (:by |rJoDgvdeG) (:at 1511714304564)
|r $ {} (:type :leaf) (:text "||code updated.") (:by |rJoDgvdeG) (:at 1511714306996)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1599216865039) (:text |^:dev/after-load)
|save-store! $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714070196)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |rJoDgvdeG) (:at 1511714070196)
|j $ {} (:type :leaf) (:text |save-store!) (:by |rJoDgvdeG) (:at 1511714070196)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714070196)
:data $ {}
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714357501)
:data $ {}
|T $ {} (:type :leaf) (:text |.setItem) (:by |rJoDgvdeG) (:at 1511714361234)
|j $ {} (:type :leaf) (:text |js/window.localStorage) (:by |rJoDgvdeG) (:at 1511714368950)
|r $ {} (:type :leaf) (:text ||respo) (:by |rJoDgvdeG) (:at 1511714372338)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714373782)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |rJoDgvdeG) (:at 1511714375633)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714376733)
:data $ {}
|T $ {} (:type :leaf) (:text |:tasks) (:by |rJoDgvdeG) (:at 1511714377407)
|j $ {} (:type :leaf) (:text |@*store) (:by |rJoDgvdeG) (:at 1511714380697)
:proc $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511714315065)
:data $ {}
|respo.util.format $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.format) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |clojure.string) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.detect) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |component?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |element?) (:by |root) (:at 1504774121421)
:defs $ {}
|prop->attr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |prop->attr) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |case) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text ||class-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||class) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text ||tab-index) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||tabindex) (:by |root) (:at 1504774121421)
|w $ {} (:type :expr) (:by |root) (:at 1508595954898)
:data $ {}
|T $ {} (:type :leaf) (:text ||read-only) (:by |root) (:at 1508595961204)
|j $ {} (:type :leaf) (:text ||readonly) (:by |root) (:at 1508595964339)
|x $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|t $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797578919)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797582480) (:text |when)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797585686)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797593324) (:text |string/includes?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797593975) (:text |x)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797595144) (:text "|\"?")
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797599316)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797601269) (:text |println)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797700485) (:text "|\"[Respo] warning: property contains `?` in")
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797701808) (:text |x)
|event->prop $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event->prop) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||on) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|ensure-string $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |ensure-string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |keyword?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:else) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|event->string $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event->string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |subs) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |3) (:by |root) (:at 1504774121421)
|dashed->camel $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |rJoDgvdeG) (:at 1623597065142)
|j $ {} (:type :leaf) (:text |dashed->camel) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1623596977643)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623596980009) (:text |.replace)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597032220) (:text |dashed-letter-pattern)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597034900) (:text |x)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1623597040209)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597040731) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1623597041880)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597042320) (:text |cc)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597044071) (:text |pos)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597044977) (:text |prop)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1623597047874)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597051832) (:text |.toUpperCase)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1623597052494)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597053587) (:text |aget)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597054125) (:text |cc)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597054495) (:text |1)
|dashed-letter-pattern $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1623597175922)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597175922) (:text |def)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597175922) (:text |dashed-letter-pattern)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1623597175922)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597178129) (:text |new)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597182109) (:text |js/RegExp)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597183862) (:text "|\"g")
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1623597191801) (:text "|\"-[a-z]")
|purify-events $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |purify-events) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |events) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |events) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |keys) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |into) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |#{}) (:by |root) (:at 1504774121421)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1596766606927)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1596766609367) (:text |filter)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1596766609572)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1596766610546) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1596766610870)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1596766611663)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1596766611897) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1596766613685) (:text |k)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1596766614006) (:text |v)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1596766615048)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1596766616020) (:text |some?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1596766616793) (:text |v)
|event->edn $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event->edn) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|L $ {} (:type :leaf) (:by |root) (:at 1530375390166) (:text |;)
|j $ {} (:type :leaf) (:text |.log) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |js/console) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text "|\"simplify event:") (:by |rJoDgvdeG) (:at 1552320148254)
|x $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |case) (:by |root) (:at 1504774121421)
|w $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"keypress") (:by |rJoDgvdeG) (:at 1552320133881)
|j $ {} (:type :expr) (:by |root) (:at 1530375468042)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1530375468977) (:text |merge)
|L $ {} (:type :expr) (:by |root) (:at 1530375435652)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375442825) (:text |map-keyboard-event)
|j $ {} (:type :leaf) (:by |root) (:at 1530375445812) (:text |event)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1507356376452)
:data $ {}
|T $ {} (:type :leaf) (:text |:type) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:keypress) (:by |root) (:at 1530375200628)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |root) (:at 1507356432247)
:data $ {}
|D $ {} (:type :leaf) (:text |:type) (:by |root) (:at 1507356436106)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-type) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by |root) (:at 1507356439268)
:data $ {}
|D $ {} (:type :leaf) (:text |:msg) (:by |root) (:at 1507356443151)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "||Unhandled event: ") (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-type) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"change") (:by |rJoDgvdeG) (:at 1552320141663)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1507356414848)
:data $ {}
|T $ {} (:type :leaf) (:text |:type) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:change) (:by |root) (:at 1507356419468)
|x $ {} (:type :expr) (:by |root) (:at 1507356422422)
:data $ {}
|D $ {} (:type :leaf) (:text |:value) (:by |root) (:at 1507356423113)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |aget) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||value) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-type) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"keyup") (:by |rJoDgvdeG) (:at 1552320136533)
|j $ {} (:type :expr) (:by |root) (:at 1530375476156)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1530375477052) (:text |merge)
|L $ {} (:type :expr) (:by |root) (:at 1530375435652)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375442825) (:text |map-keyboard-event)
|j $ {} (:type :leaf) (:by |root) (:at 1530375445812) (:text |event)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1507356389169)
:data $ {}
|T $ {} (:type :leaf) (:text |:type) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:keyup) (:by |root) (:at 1507356391758)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"keydown") (:by |rJoDgvdeG) (:at 1552320130879)
|j $ {} (:type :expr) (:by |root) (:at 1530375434548)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1530375435372) (:text |merge)
|L $ {} (:type :expr) (:by |root) (:at 1530375435652)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375442825) (:text |map-keyboard-event)
|j $ {} (:type :leaf) (:by |root) (:at 1530375445812) (:text |event)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1507356376452)
:data $ {}
|T $ {} (:type :leaf) (:text |:type) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:keydown) (:by |root) (:at 1507356379176)
|v $ {} (:type :expr) (:by |root) (:at 1507356381011)
:data $ {}
|T $ {} (:type :leaf) (:text |:key-code) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-keyCode) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by |root) (:at 1507356381011)
:data $ {}
|T $ {} (:type :leaf) (:text |:keycode) (:by |root) (:at 1507356387437)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-keyCode) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"focus") (:by |rJoDgvdeG) (:at 1552320143496)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1507356425148)
:data $ {}
|T $ {} (:type :leaf) (:text |:type) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:focus) (:by |root) (:at 1507356430636)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"click") (:by |rJoDgvdeG) (:at 1552320127389)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1507356445560)
:data $ {}
|T $ {} (:type :leaf) (:text |:type) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:click) (:by |root) (:at 1507356448692)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"input") (:by |rJoDgvdeG) (:at 1552320139392)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1507356404325)
:data $ {}
|T $ {} (:type :leaf) (:text |:type) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:input) (:by |root) (:at 1507356407422)
|x $ {} (:type :expr) (:by |root) (:at 1507356412556)
:data $ {}
|D $ {} (:type :leaf) (:text |:value) (:by |root) (:at 1507356413338)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |aget) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text "|\"value") (:by |rJoDgvdeG) (:at 1552320113734)
|y $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1552320072402)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1552320075203) (:text |:checked)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1552320075484)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1552320079828) (:text |..)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1552320081092) (:text |event)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1552320084151) (:text |-target)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1552320088359) (:text |-checked)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:original-event) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:event) (:by |root) (:at 1507356354798)
|r $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|pattern-non-dimensional $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291094870)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291094870) (:text |def)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291094870) (:text |pattern-non-dimensional)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291094870)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291097891) (:text |new)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291101798) (:text |js/RegExp)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613292362117) (:text "|\"acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera")
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291114369) (:text "|\"i")
|get-style-value $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291049013)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291049013) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291770963) (:text |get-style-value)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291049013)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291058025) (:text |x)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291059502) (:text |style-name)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291056944)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291056944) (:text |cond)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291056944)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291056944)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291056944) (:text |string?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291056944) (:text |x)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291056944) (:text |x)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291056944)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291056944)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291056944) (:text |keyword?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291056944) (:text |x)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291056944)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291056944) (:text |name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291056944) (:text |x)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291056944)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291056944) (:text |:else)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291056944)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291056944) (:text |str)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291056944) (:text |x)
|t $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291060711)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291061110)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291063937) (:text |number?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291064270) (:text |x)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291065820)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291066204) (:text |if)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291067120)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291069490) (:text |.test)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291082215) (:text |pattern-non-dimensional)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613292341586) (:text |style-name)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291088580)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291089015) (:text |str)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291089435) (:text |x)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291090868)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291091550) (:text |str)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291092067) (:text |x)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291093574) (:text "|\"px")
|mute-element $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |mute-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |component?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |update) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:tree) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |mute-element) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |update) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:event) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |events) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |list) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |update) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:children) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |children) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |children) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |mute-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |last) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|map-keyboard-event $ {} (:type :expr) (:by |root) (:at 1530375446806)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375446806) (:text |defn)
|j $ {} (:type :leaf) (:by |root) (:at 1530375446806) (:text |map-keyboard-event)
|r $ {} (:type :expr) (:by |root) (:at 1530375446806)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375448936) (:text |event)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by |root) (:at 1530375179034)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375180254) (:text |:key)
|j $ {} (:type :expr) (:by |root) (:at 1530375182300)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375183129) (:text |.-key)
|j $ {} (:type :leaf) (:by |root) (:at 1530375184063) (:text |event)
|yT $ {} (:type :expr) (:by |root) (:at 1530375184716)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375185391) (:text |:code)
|j $ {} (:type :expr) (:by |root) (:at 1530375185644)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375187278) (:text |.-code)
|j $ {} (:type :leaf) (:by |root) (:at 1530375187882) (:text |event)
|yj $ {} (:type :expr) (:by |root) (:at 1530375315159)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375319893) (:text |:ctrl?)
|j $ {} (:type :expr) (:by |root) (:at 1530375337222)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375341264) (:text |.-ctrlKey)
|j $ {} (:type :leaf) (:by |root) (:at 1530375341970) (:text |event)
|yr $ {} (:type :expr) (:by |root) (:at 1530375320383)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375321897) (:text |:meta?)
|j $ {} (:type :expr) (:by |root) (:at 1530375343648)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375347021) (:text |.-metaKey)
|j $ {} (:type :leaf) (:by |root) (:at 1530375348129) (:text |event)
|yv $ {} (:type :expr) (:by |root) (:at 1530375349388)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375352314) (:text |:alt?)
|j $ {} (:type :expr) (:by |root) (:at 1530375352591)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375354741) (:text |.-altKey)
|j $ {} (:type :leaf) (:by |root) (:at 1530375355455) (:text |event)
|yx $ {} (:type :expr) (:by |root) (:at 1530375495540)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375498599) (:text |:shift?)
|j $ {} (:type :expr) (:by |root) (:at 1530375498894)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530375500889) (:text |.-shiftKey)
|j $ {} (:type :leaf) (:by |root) (:at 1530375501545) (:text |event)
|purify-element $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |purify-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |markup) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496529941)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496530907) (:text |cond)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |nil?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |markup) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496536984)
:data $ {}
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496536984)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496536984) (:text |component?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496536984) (:text |markup)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496536984)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496536984) (:text |recur)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496536984)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496536984) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496536984) (:text |markup)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496544196)
:data $ {}
|D $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496548004)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496548567) (:text |element?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496550405) (:text |markup)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |into)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |{})
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |->)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |markup)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |update)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |:event)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |purify-events)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |update)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |:children)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |children)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |->>)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |children)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |map)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571590646796)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590645950) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590647999) (:text |k)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590648742) (:text |child)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |[])
|f $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590651765) (:text |k)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496542916)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496542916) (:text |purify-element)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590653863) (:text |child)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496561797)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496563208) (:text |:else)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496565694)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496566264) (:text |do)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571496566798)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496573905) (:text |js/console.warn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496593690) (:text "|\"Unknown markup during purify:")
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496596542) (:text |markup)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571496565029) (:text |nil)
|text->html $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |text->html) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string/replace) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |re-pattern) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||>) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||>) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string/replace) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |re-pattern) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||<) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||<) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.app.updater $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.updater) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |clojure.string) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871894046)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871894046) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871894046) (:text |respo.cursor)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871894046) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871894046)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871894046) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584874768040) (:text |update-states)
:defs $ {}
|updater $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |updater) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |op-id) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |case) (:by |root) (:at 1504774121421)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:toggle) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |update) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:tasks) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |task-id) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |mapv) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |task-id) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |update) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:done?) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:update) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |update) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:tasks) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |task-id) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |text) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:text) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |mapv) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |task-id) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:text) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |text) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:remove) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |update) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:tasks) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |filterv) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:add) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |update) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:tasks) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |conj) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719381815)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719382396) (:text |{})
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719382680)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719383870) (:text |:text)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719384757) (:text |op-data)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719385270)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719385873) (:text |:id)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719386694) (:text |op-id)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719387463)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719388784) (:text |:done?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719389569) (:text |false)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:hit-first) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |update-in) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:text) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:states) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871897159)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584874759470) (:text |update-states)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871899631) (:text |store)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871901297) (:text |op-data)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:clear) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:tasks) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|yv $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.render.dom $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.render.dom) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |clojure.string) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.format) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |dashed->camel) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |event->prop) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |ensure-string) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291755213) (:text |get-style-value)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098222885)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098223677) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098227770) (:text |respo.util.detect)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098228561) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098228744)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098228974) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098230783) (:text |component?)
:defs $ {}
|make-element $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |make-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |virtual-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097535169) (:text |coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097537191)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tag-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |virtual-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |virtual-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |virtual-element) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |children) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:children) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |virtual-element) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.createElement) (:by |rJoDgvdeG) (:at 1511712590571)
|b $ {} (:type :leaf) (:text |js/document) (:by |rJoDgvdeG) (:at 1511712593524)
|j $ {} (:type :leaf) (:text |tag-name) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |child-elements) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |children) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571497226519)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1571497229079)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571497229648) (:text |k)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571497230601) (:text |child)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571497234163)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590120955) (:text |when)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571497235375)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590116440) (:text |some?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571497237959) (:text |child)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |make-element) (:by |root) (:at 1504774121421)
|f $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571497232967) (:text |child)
|r $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097564494)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097565604) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097566443) (:text |coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097567623) (:text |k)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |doseq) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710860110)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |attrs) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |k) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dashed->camel) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |v) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |last) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |root) (:at 1505374985363)
:data $ {}
|D $ {} (:type :leaf) (:text |if) (:by |root) (:at 1505374986462)
|L $ {} (:type :expr) (:by |root) (:at 1505374987219)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |root) (:at 1505374988848)
|j $ {} (:type :leaf) (:text |v) (:by |root) (:at 1505374989216)
|T $ {} (:type :expr) (:by |root) (:at 1541076675970)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1541076675970) (:text |aset)
|j $ {} (:type :leaf) (:by |root) (:at 1541076675970) (:text |element)
|r $ {} (:type :leaf) (:by |root) (:at 1541076675970) (:text |k)
|v $ {} (:type :leaf) (:by |root) (:at 1541076675970) (:text |v)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |doseq) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710862329)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |k) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dashed->camel) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291711471) (:text |style-name)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |v) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |last) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|D $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291704235)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291705705) (:text |style-name)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291707648)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291707648) (:text |name)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291707648)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291707648) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291707648) (:text |entry)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |aset) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |aget) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||style) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |k) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291720919)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291723121) (:text |get-style-value)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1614697276053) (:text |k)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291730368) (:text |v)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |doseq) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710866263)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097598042)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |virtual-element) (:by |root) (:at 1504774121421)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097600488) (:text |keys)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name-in-string) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event->prop) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||listener:) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |name-in-string) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |aset) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |name-in-string) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098133659) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.stopPropagation) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |doseq) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710902318)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :leaf) (:text |child-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |child-elements) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571565822949)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571565822949) (:text |.appendChild)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571565822949) (:text |element)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571565822949) (:text |child-element)
|yT $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097538673) (:text |if)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097538938)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097540968) (:text |component?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097543174) (:text |virtual-element)
|P $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097543830)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097545733) (:text |recur)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097547193)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097547889) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097549725) (:text |virtual-element)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097551715) (:text |listener-builder)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097552695)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097553183) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097554858) (:text |coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097557533)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100149781) (:text |:name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097560116) (:text |virtual-element)
|style->string $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style->string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |styles) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |styles) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |k) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |v) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |get-style-value) (:by |rJoDgvdeG) (:at 1613291786863)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |last) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291183354) (:text |style-name)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291169112)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291171983) (:text |style-name)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291175422)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291175422) (:text |name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291175422) (:text |k)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |k) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||:) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |v) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text ||;) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string/join) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.app.core $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.core) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1505214232140)
|T $ {} (:type :leaf) (:text |respo.app.comp.container) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1505214236402)
|T $ {} (:type :leaf) (:text |comp-container) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1505214241667)
|T $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1505214244283)
|T $ {} (:type :leaf) (:text |render!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:by |root) (:at 1529814805888) (:text |realize-ssr!)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1505214248444)
|T $ {} (:type :leaf) (:text |respo.app.schema) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |schema) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1505214251355)
|T $ {} (:type :leaf) (:text |respo.app.updater) (:by |rJoDgvdeG) (:at 1571567296220)
|j $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1505214253641)
|T $ {} (:type :leaf) (:text |updater) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1505214256484)
|T $ {} (:type :leaf) (:text |respo.util.id) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1505214258150)
|T $ {} (:type :leaf) (:text |get-id!) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by |root) (:at 1529814385045)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529814385371) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1529814407806) (:text |respo.render.html)
|r $ {} (:type :leaf) (:by |root) (:at 1529814389927) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1529814390116)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529814390313) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1529814393915) (:text |make-string)
:defs $ {}
|*store $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defonce) (:by |root) (:at 1505327075946)
|j $ {} (:type :leaf) (:text |*store) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |atom) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |schema/store) (:by |root) (:at 1504774121421)
|dispatch! $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584720061550) (:text |op-data)
|L $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584720208804) (:text |;)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |updater) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |@*store) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871619734)
:data $ {}
|T $ {} (:type :leaf) (:text |get-id!) (:by |rJoDgvdeG) (:at 1584871619101)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |reset!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |*store) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|handle-ssr! $ {} (:type :expr) (:by |root) (:at 1529814786924)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529814786924) (:text |defn)
|j $ {} (:type :leaf) (:by |root) (:at 1529814786924) (:text |handle-ssr!)
|r $ {} (:type :expr) (:by |root) (:at 1529814786924)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529814839976) (:text |mount-target)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |realize-ssr!) (:by |root) (:at 1529814684031)
|j $ {} (:type :leaf) (:text |mount-target) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |comp-container) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |@*store) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|render-app! $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |render-app!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |mount-target) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |render!) (:by |root) (:at 1529814667905)
|j $ {} (:type :leaf) (:text |mount-target) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |comp-container) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |@*store) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.test.comp.todolist $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.test.comp.todolist) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.test.comp.task) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-task) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1508915194695)
|T $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1540830145807)
|j $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1508915196724)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|5 $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511711983734)
|D $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1505409082913)
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |list->) (:by |rJoDgvdeG) (:at 1511711981544)
:defs $ {}
|comp-todolist $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1505409072010)
|j $ {} (:type :leaf) (:text |comp-todolist) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |list->) (:by |rJoDgvdeG) (:at 1511711975290)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-todolist) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |comp-task) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|style-todolist $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-todolist) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:blue) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:font-family) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "||\"微软雅黑\", Verdana") (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.app.comp.zero $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.comp.zero) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |root) (:at 1505301334158)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1505301334988)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1540830062992)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1508915128682)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
:defs $ {}
|comp-zero $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-zero) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:inner-text) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.util.list $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.list) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.detect) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |component?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |element?) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1551289937077)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289937077) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289937077) (:text |respo.util.comparator)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289937077) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1551289937077)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289937077) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289937077) (:text |compare-xy)
:defs $ {}
|filter-first $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |filter-first) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |f) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |xs) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |reduce) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |acc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |when) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |f) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |reduced) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |xs) (:by |root) (:at 1504774121421)
|map-val $ {} (:type :expr) (:by |root) (:at 1517740297620)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740297620) (:text |defn)
|j $ {} (:type :leaf) (:by |root) (:at 1517740297620) (:text |map-val)
|r $ {} (:type :expr) (:by |root) (:at 1517740297620)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740322059) (:text |f)
|j $ {} (:type :leaf) (:by |root) (:at 1517740323381) (:text |xs)
|s $ {} (:type :expr) (:by |root) (:at 1517740390343)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740393396) (:text |assert)
|j $ {} (:type :expr) (:by |root) (:at 1517740394263)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740395757) (:text |fn?)
|j $ {} (:type :leaf) (:by |root) (:at 1517740396135) (:text |f)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571156591101) (:text "|\"expects f to be a function")
|t $ {} (:type :expr) (:by |root) (:at 1517740671973)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740673079) (:text |assert)
|j $ {} (:type :expr) (:by |root) (:at 1517740674003)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740676132) (:text |or)
|j $ {} (:type :expr) (:by |root) (:at 1517740676637)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740677274) (:text |map?)
|j $ {} (:type :leaf) (:by |root) (:at 1517740678228) (:text |xs)
|r $ {} (:type :expr) (:by |root) (:at 1517740679272)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740992166) (:text |sequential?)
|j $ {} (:type :leaf) (:by |root) (:at 1517740681143) (:text |xs)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571156578913)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571156579212) (:text |nil?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571156579850) (:text |xs)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571156604553) (:text "|\"expects xs to be a collection")
|v $ {} (:type :expr) (:by |root) (:at 1517740323910)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740333435) (:text |map)
|j $ {} (:type :expr) (:by |root) (:at 1517740340849)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740341365) (:text |fn)
|j $ {} (:type :expr) (:by |root) (:at 1517740519746)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1517740341938)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1517740523749) (:text |[])
|T $ {} (:type :leaf) (:by |root) (:at 1517740344244) (:text |k)
|j $ {} (:type :leaf) (:by |root) (:at 1517740344886) (:text |v)
|r $ {} (:type :expr) (:by |root) (:at 1517740524659)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1517740539425) (:text |[])
|T $ {} (:type :leaf) (:by |root) (:at 1517740525737) (:text |k)
|j $ {} (:type :expr) (:by |root) (:at 1517740526018)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740533024) (:text |f)
|j $ {} (:type :leaf) (:by |root) (:at 1517740527586) (:text |v)
|r $ {} (:type :leaf) (:by |root) (:at 1517740339336) (:text |xs)
|map-with-idx $ {} (:type :expr) (:by |root) (:at 1517740647082)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740647082) (:text |defn)
|j $ {} (:type :leaf) (:by |root) (:at 1517740647082) (:text |map-with-idx)
|r $ {} (:type :expr) (:by |root) (:at 1517740647082)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1517740653616) (:text |f)
|T $ {} (:type :leaf) (:by |root) (:at 1517740651858) (:text |xs)
|v $ {} (:type :expr) (:by |root) (:at 1517740654280)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740655990) (:text |assert)
|j $ {} (:type :expr) (:by |root) (:at 1517740657660)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740660297) (:text |fn?)
|j $ {} (:type :leaf) (:by |root) (:at 1517740660750) (:text |f)
|r $ {} (:type :leaf) (:by |root) (:at 1517740669719) (:text "||expects function")
|w $ {} (:type :expr) (:by |root) (:at 1517740348130)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740351005) (:text |assert)
|j $ {} (:type :expr) (:by |root) (:at 1517740418648)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740914848) (:text |sequential?)
|j $ {} (:type :leaf) (:by |root) (:at 1517740420674) (:text |xs)
|r $ {} (:type :leaf) (:by |root) (:at 1517740918808) (:text "||expects sequence")
|y $ {} (:type :expr) (:by |root) (:at 1517740693884)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740716325) (:text |map-indexed)
|j $ {} (:type :expr) (:by |root) (:at 1517740700328)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740705561) (:text |fn)
|j $ {} (:type :expr) (:by |root) (:at 1517740705932)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1517740713412) (:text |idx)
|T $ {} (:type :leaf) (:by |root) (:at 1517740708821) (:text |x)
|r $ {} (:type :expr) (:by |root) (:at 1517740719484)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740720016) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1517740723075) (:text |idx)
|r $ {} (:type :expr) (:by |root) (:at 1517740727169)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1517740727439) (:text |f)
|j $ {} (:type :leaf) (:by |root) (:at 1517740727891) (:text |x)
|r $ {} (:type :leaf) (:by |root) (:at 1517740697452) (:text |xs)
|pick-attrs $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |pick-attrs) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |nil?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |list) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |root) (:at 1513782866145)
:data $ {}
|D $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1513782868043)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dissoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:on) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dissoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:event) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dissoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1513782825167)
:data $ {}
|D $ {} (:type :leaf) (:text |filter) (:by |root) (:at 1513782826536)
|T $ {} (:type :expr) (:by |root) (:at 1513782780110)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1513782781810)
|j $ {} (:type :expr) (:by |root) (:at 1513782782091)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513782782279)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1513782783123)
|j $ {} (:type :leaf) (:text |k) (:by |root) (:at 1513782784128)
|r $ {} (:type :leaf) (:text |v) (:by |root) (:at 1513782784476)
|r $ {} (:type :expr) (:by |root) (:at 1513782875538)
:data $ {}
|D $ {} (:type :leaf) (:text |not) (:by |root) (:at 1513782876303)
|T $ {} (:type :expr) (:by |root) (:at 1513782786281)
:data $ {}
|T $ {} (:type :leaf) (:text |re-matches) (:by |root) (:at 1513783764074)
|j $ {} (:type :expr) (:by |root) (:at 1513782805857)
:data $ {}
|T $ {} (:type :leaf) (:text |re-pattern) (:by |root) (:at 1513782807980)
|j $ {} (:type :leaf) (:text "|\"on-\\w+") (:by |rJoDgvdeG) (:at 1551289872617)
|r $ {} (:type :expr) (:by |root) (:at 1513782820502)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1513782821083)
|j $ {} (:type :leaf) (:text |k) (:by |root) (:at 1513782821877)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |sort) (:by |rJoDgvdeG) (:at 1551289841027)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1551289841746)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289842831) (:text |fn)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1551289843567)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289843912) (:text |x)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289844955) (:text |y)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1551289846168)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289848611) (:text |compare-xy)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1551289849344)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289857807) (:text |x)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1551289851905)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289859960) (:text |first)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551289855532) (:text |y)
|pick-event $ {} (:type :expr) (:by |root) (:at 1513782743303)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1513782743303)
|j $ {} (:type :leaf) (:text |pick-event) (:by |root) (:at 1513782743303)
|r $ {} (:type :expr) (:by |root) (:at 1513782743303)
:data $ {}
|T $ {} (:type :leaf) (:text |props) (:by |root) (:at 1513782746280)
|v $ {} (:type :expr) (:by |root) (:at 1513782746786)
:data $ {}
|T $ {} (:type :leaf) (:text |merge) (:by |root) (:at 1513784377351)
|j $ {} (:type :expr) (:by |root) (:at 1513782769122)
:data $ {}
|T $ {} (:type :leaf) (:text |:on) (:by |root) (:at 1513785453815)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1513782771092)
|r $ {} (:type :expr) (:by |root) (:at 1513782771764)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1513782778580)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1513782779468)
|r $ {} (:type :expr) (:by |root) (:at 1513782825167)
:data $ {}
|D $ {} (:type :leaf) (:text |filter) (:by |root) (:at 1513782826536)
|T $ {} (:type :expr) (:by |root) (:at 1513782780110)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1513782781810)
|j $ {} (:type :expr) (:by |root) (:at 1513782782091)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513782782279)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1513782783123)
|j $ {} (:type :leaf) (:text |k) (:by |root) (:at 1513782784128)
|r $ {} (:type :leaf) (:text |v) (:by |root) (:at 1513782784476)
|r $ {} (:type :expr) (:by |root) (:at 1513782786281)
:data $ {}
|T $ {} (:type :leaf) (:text |re-matches) (:by |root) (:at 1513783768094)
|j $ {} (:type :expr) (:by |root) (:at 1513782805857)
:data $ {}
|T $ {} (:type :leaf) (:text |re-pattern) (:by |root) (:at 1513782807980)
|j $ {} (:type :leaf) (:text ||on-\w+) (:by |root) (:at 1513782817959)
|r $ {} (:type :expr) (:by |root) (:at 1513782820502)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1513782821083)
|j $ {} (:type :leaf) (:text |k) (:by |root) (:at 1513782821877)
|t $ {} (:type :expr) (:by |root) (:at 1513783773275)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1513783773761)
|j $ {} (:type :expr) (:by |root) (:at 1513783774099)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1513783774679)
|j $ {} (:type :expr) (:by |root) (:at 1513783776268)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513783777116)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1513783778028)
|T $ {} (:type :leaf) (:text |k) (:by |root) (:at 1513783776781)
|j $ {} (:type :leaf) (:text |v) (:by |root) (:at 1513783778980)
|r $ {} (:type :expr) (:by |root) (:at 1513783780024)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1513783782433)
|j $ {} (:type :expr) (:by |root) (:at 1513783784878)
:data $ {}
|T $ {} (:type :leaf) (:text |keyword) (:by |root) (:at 1513783786896)
|j $ {} (:type :expr) (:by |root) (:at 1513783794332)
:data $ {}
|D $ {} (:type :leaf) (:text |subs) (:by |root) (:at 1513783796051)
|T $ {} (:type :expr) (:by |root) (:at 1513783787120)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1513783789135)
|j $ {} (:type :leaf) (:text |k) (:by |root) (:at 1513784313055)
|j $ {} (:type :leaf) (:text |3) (:by |root) (:at 1513783800894)
|r $ {} (:type :leaf) (:text |v) (:by |root) (:at 1513783791555)
|v $ {} (:type :expr) (:by |root) (:at 1513782828422)
:data $ {}
|T $ {} (:type :leaf) (:text |into) (:by |root) (:at 1513782836438)
|j $ {} (:type :expr) (:by |root) (:at 1513782837037)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1513782837367)
|val-exists? $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |val-exists?) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pair) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |last) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |pair) (:by |root) (:at 1504774121421)
|val-of-first $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572885625576)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885625576) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885625576) (:text |val-of-first)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572885625576)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885629777) (:text |x)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572885630329)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885631743) (:text |last)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572885632356)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885634056) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885732132) (:text |x)
|detect-func-in-map? $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592239988889)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592239988889) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592239988889) (:text |detect-func-in-map?)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592239988889)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592239992999) (:text |params)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1594546487453)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240016492) (:text |if)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1594546502311)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240016716)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240017908) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240019314) (:text |params)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1594546504038) (:text |or)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1594546508323)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1594546511084) (:text |not)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1594546511691)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1594546513245) (:text |map?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1594546514342) (:text |params)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240020383) (:text |false)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240021344)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240028318) (:text |let)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240028547)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240028671)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240030477) (:text |p0)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240031112)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240031699) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240032639) (:text |params)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240036484)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240037867) (:text |if)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240041757)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240038380)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240039316) (:text |map?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240041326) (:text |p0)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240042379) (:text |and)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240042803)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240043910) (:text |some)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240044367)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240046161) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240046379)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240046527)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240046794) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240047135) (:text |k)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240047895) (:text |v)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240058560)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240059555) (:text |fn?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240062856) (:text |v)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240055203) (:text |p0)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240069746) (:text |true)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240072838)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240073825) (:text |recur)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592240075224)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240075881) (:text |rest)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240076926) (:text |params)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.app.schema $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.schema) (:by |root) (:at 1504774121421)
:defs $ {}
|store $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:tasks) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:states) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717665248)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717667420) (:text |:cursor)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717667697)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717667935) (:text |[])
|task $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:text) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:done?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |false) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.render.effect $ {}
:ns $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584552862)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584552862) (:text |ns)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584552862) (:text |respo.render.effect)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585076407)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585077120) (:text |:require)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585077332)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585077512) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585107681) (:text |respo.schema.op)
|p $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585109673) (:text |:as)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585110835) (:text |op)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585876619)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585876940) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585881514) (:text |respo.util.detect)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585882695) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585882869)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585883079) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585885737) (:text |component?)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585888334) (:text |element?)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572083125844) (:text |=seq)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572885775286)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885775606) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885779772) (:text |respo.util.list)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885780572) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572885780888)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885781097) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885781518) (:text |val-of-first)
:defs $ {}
|collect-mounting $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579646781)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579646781) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579646781) (:text |collect-mounting)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579646781)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579646781) (:text |collect!)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579646781) (:text |n-coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885009953) (:text |tree)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885011584) (:text |at-place?)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099014250) (:text |coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |cond)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |component?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |let)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |effects)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |:effects)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099001523)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099003840) (:text |new-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099004482)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099006768) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099007563) (:text |coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099010997)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099011727) (:text |:name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099012343) (:text |tree)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |when-not)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |effects)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |doseq)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |effect)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |effects)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |let)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |method)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |:method)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |effect)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |collect!)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521849228) (:text |op/effect-mount)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |n-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |target)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |method)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |:args)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |effect)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586823190) (:text |:mount)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |target)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885046062) (:text |at-place?)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099017851) (:text |new-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571590471520)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590474481) (:text |recur)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590471520) (:text |collect!)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590471520) (:text |n-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571590471520)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590471520) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590471520) (:text |tree)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885120720) (:text |false)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099022551) (:text |new-coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |element?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |loop)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |when-not)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |children)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |collect-mounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |collect!)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |n-coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |idx)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885763494) (:text |val-of-first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |children)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885041708) (:text |false)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099026014)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099028714) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099029914) (:text |coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099454793)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099453523)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099453523) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099453523) (:text |children)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099456105) (:text |first)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |recur)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |rest)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |children)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |inc)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |idx)
|f $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099489602)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099489602)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099489602) (:text |children)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099489602)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099489602) (:text |:children)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099489602) (:text |tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099489602)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099489602) (:text |idx)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099489602) (:text |0)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |:else)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586818321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |js/console.warn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586829665) (:text "|\"Unknown entry for mounting:")
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586818321) (:text |tree)
|collect-unmounting $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579661718)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579661718) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579661718) (:text |collect-unmounting)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579661718)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579661718) (:text |collect!)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579661718) (:text |n-coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586343497) (:text |tree)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885289598) (:text |at-place?)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098635355) (:text |coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585891342)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585896817) (:text |cond)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585897081)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585897489)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585899319) (:text |component?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586347005) (:text |tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585913161)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586629562) (:text |let)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586629954)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586630229)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586631810) (:text |effects)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586633045)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586647427) (:text |:effects)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586649034) (:text |tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098657960)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098658553) (:text |new-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098659187)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098659731) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098661041) (:text |coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098661973)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098663393) (:text |:name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098663987) (:text |tree)
|f $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571590486108)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590488915) (:text |collect-unmounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590486108) (:text |collect!)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590486108) (:text |n-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571590486108)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590486108) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590486108) (:text |tree)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885305363) (:text |false)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098656124) (:text |new-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586677962)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586679823) (:text |when-not)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586680081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586683132) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586684883) (:text |effects)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586686158)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586688657) (:text |doseq)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586689267)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586689508)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586692741) (:text |effect)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586694161) (:text |effects)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586699776)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586700336) (:text |let)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586700535)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586700660)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586701749) (:text |method)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586702038)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586703741) (:text |:method)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586705413) (:text |effect)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585914395)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585915897) (:text |collect!)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585921225)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585922284) (:text |[])
|L $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521863394) (:text |op/effect-unmount)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586777956) (:text |n-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585928880)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585936925) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585937176)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585938055) (:text |target)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585939168)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586730363) (:text |method)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586738020)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586738785) (:text |:args)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586740012) (:text |effect)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586741797)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586742046) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586744576) (:text |:unmount)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1594556676527) (:text |target)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885460369) (:text |at-place?)
|P $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098668013) (:text |new-coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585951623)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585954185)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585956221) (:text |element?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586348710) (:text |tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585998763)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586319279) (:text |loop)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586320116)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586320266)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586332867) (:text |children)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586334158)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586338117) (:text |:children)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586341745) (:text |tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586428636)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586430733) (:text |idx)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586431496) (:text |0)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586534778)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586546725) (:text |when-not)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586535981)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586537607) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586539932) (:text |children)
|P $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586563209)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586836392) (:text |collect-unmounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586569624) (:text |collect!)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586574715)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586578893) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586581173) (:text |n-coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586582687) (:text |idx)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586595529)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885770797) (:text |val-of-first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586606923) (:text |children)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885308599) (:text |false)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098673507)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098717350) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098718577) (:text |coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098718920)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098719573) (:text |first)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099509266)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099509266) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099509266) (:text |children)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586517651)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586496005) (:text |recur)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586616498)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586617696) (:text |rest)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586618983) (:text |children)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586614232)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586614561) (:text |inc)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586615527) (:text |idx)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585959871)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585960545) (:text |:else)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585960839)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585970462) (:text |js/console.warn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585993654) (:text "|\"Unknown entry for unmounting:")
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586798958) (:text |tree)
|collect-updating $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584455918)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584455918) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584455918) (:text |collect-updating)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584455918)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584455918) (:text |collect!)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572153040835) (:text |action)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584455918) (:text |n-coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584455918) (:text |old-tree)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584455918) (:text |new-tree)
|f $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098622658) (:text |coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584694613)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584698291) (:text |let)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584698512)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584698805)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584700271) (:text |effects)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584700545)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584701972) (:text |:effects)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584703782) (:text |new-tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099116740)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099119691) (:text |new-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099119975)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099797056) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099121543) (:text |coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099122837)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099123527) (:text |:name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099769652) (:text |new-tree)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169048870)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169052018) (:text |old-effects)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169052395)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612171183309) (:text |:effects)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612171099310) (:text |old-tree)
|P $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584705125)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505111703) (:text |when-not)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584708362)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584711219) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584712799) (:text |effects)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584716485)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585862241) (:text |;)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584716485) (:text |js/console.log)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571590555841) (:text "|\"collect update")
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584719536) (:text |n-coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584716485)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584716485) (:text |:effects)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584716485) (:text |new-tree)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584751804)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169030447) (:text |loop)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584773130)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584755263)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169069023) (:text |new-items)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584927299) (:text |effects)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169075335)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169079602) (:text |old-items)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169217744) (:text |old-effects)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584950008)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584952057) (:text |let)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584999530)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584952455)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169341419) (:text |new-effect)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169088643)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169089289) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169092876) (:text |new-items)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585004226)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169343350) (:text |old-effect)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169095130)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169096013) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169098467) (:text |old-items)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585029571)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585030641) (:text |method)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585031352)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585034416) (:text |:method)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585185787) (:text |new-effect)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572083095144)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572083101601) (:text |when-not)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169356934)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572083102323)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572083103443) (:text |=seq)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572083129368)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572083131013) (:text |:args)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572083133653) (:text |new-effect)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572083134287)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572083136426) (:text |:args)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572083139307) (:text |old-effect)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169358169) (:text |and)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169361707)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169365185) (:text |=)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169365836)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169369919) (:text |:name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169372862) (:text |new-effect)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169365836)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169369919) (:text |:name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169377097) (:text |old-effect)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585292071)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585293850) (:text |collect!)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585061798)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585291530) (:text |[])
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572521875365)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521876770) (:text |if)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572521878149)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521878916) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521879907) (:text |:update)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521882253) (:text |action)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521891228) (:text |op/effect-update)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521896805) (:text |op/effect-before-update)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585066870) (:text |n-coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585127485)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585127762) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585128067)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585131288) (:text |target)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585131846)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585136028) (:text |method)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585137281)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585138840) (:text |:args)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585141953) (:text |new-effect)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571585150952)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585151241) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572153043669) (:text |action)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571585163761) (:text |target)
|f $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099131028) (:text |new-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169108472)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169113245) (:text |when-not)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169113661)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169115391) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169118977) (:text |new-items)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169121354)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169122127) (:text |recur)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169122842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169123559) (:text |rest)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169128881) (:text |new-items)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612169129433)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169130490) (:text |rest)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612169132331) (:text |old-items)
|t $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099132635)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099134105) (:text |assert)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099134326)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099135646) (:text |component?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099142730) (:text |new-tree)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099149714) (:text "|\"Expected component for updating")
:proc $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584552862)
:data $ {}
|respo.controller.client $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.controller.client) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.render.patch) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |apply-dom-changes) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.format) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event->string) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |event->edn) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.render.dom) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |make-element) (:by |root) (:at 1504774121421)
:defs $ {}
|activate-instance! $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |activate-instance!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |entire-dom) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |mount-point) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |deliver-event) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |build-listener) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |deliver-event) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |set!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-innerHTML) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |mount-point) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.appendChild) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |mount-point) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |make-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entire-dom) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097626031)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097626342) (:text |[])
|build-listener $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |build-listener) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |deliver-event) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |simple-event) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event->edn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |deliver-event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |simple-event) (:by |root) (:at 1504774121421)
|patch-instance! $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |patch-instance!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |changes) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |mount-point) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |deliver-event) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |build-listener) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |deliver-event) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |apply-dom-changes) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |changes) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |mount-point) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.util.id $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.id) (:by |root) (:at 1504774121421)
:defs $ {}
|*cached-id $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |*cached-id) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |atom) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|get-id! $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |get-id!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |swap!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |*cached-id) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |inc) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612100187307)
:data $ {}
|T $ {} (:type :leaf) (:text |@*cached-id) (:by |root) (:at 1504774121421)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100188058) (:text |str)
|L $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100190064) (:text "|\"id-")
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.render.diff $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.render.diff) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|yr $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584589156)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584590442) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584594409) (:text |respo.render.effect)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584596307) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584596477)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584596667) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584600097) (:text |collect-mounting)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584605204) (:text |collect-updating)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584609629) (:text |collect-unmounting)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |clojure.string) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |string) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |clojure.set) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |difference) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.detect) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |component?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579443379) (:text |element?)
|yj $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1551287504848)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287504848) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287504848) (:text |respo.util.comparator)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287504848) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1551287504848)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287504848) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287504848) (:text |compare-xy)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.format) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by |root) (:at 1513921141140)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1513921142520)
|j $ {} (:type :leaf) (:text |respo.schema.op) (:by |root) (:at 1513921149310)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1513921149871)
|v $ {} (:type :leaf) (:text |op) (:by |root) (:at 1513921150205)
|yv $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572885674931)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885674931) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885674931) (:text |respo.util.list)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885674931) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572885674931)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885674931) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885674931) (:text |val-of-first)
:defs $ {}
|find-children-diffs $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |find-children-diffs) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098379404) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |.log) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |js/console) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text "||diff children:") (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|yT $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|yj $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |last) (:by |rJoDgvdeG) (:at 1612100542703)
|j $ {} (:type :leaf) (:text |pair) (:by |rJoDgvdeG) (:at 1612100544157)
|D $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612100533356)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100534160) (:text |pair)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612100535507)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100536188) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100539048) (:text |new-children)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612100546060)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100546654) (:text |k)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612100547182)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100547752) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100548453) (:text |pair)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612100580485)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100582190) (:text |new-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612100583165)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100583610) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100584499) (:text |coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100584715) (:text |k)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/append-element) (:by |root) (:at 1513921250034)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100589755) (:text |new-coord)
|t $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571582690804)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582959786) (:text |collect-mounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582690804) (:text |collect!)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572524606642)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572524607706) (:text |conj)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582690804) (:text |n-coord)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572524609158) (:text |index)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582690804) (:text |element)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885082770) (:text |true)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612100593809) (:text |new-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571548137034)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571548137034) (:text |recur)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571548137034) (:text |collect!)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571548137034) (:text |n-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571548137034)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571548137034) (:text |inc)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571548137034) (:text |index)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571548137034)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571548137034) (:text |[])
|y $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571548137034)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571548137034) (:text |rest)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571548137034) (:text |new-children)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098470123) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103174875)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571548192525)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571565768886) (:text |do)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571582695972)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582962009) (:text |collect-unmounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582702644) (:text |collect!)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885372123) (:text |true)
|u $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103242316) (:text |old-tree)
|q $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103250501) (:text |next-n-coord)
|m $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103281134) (:text |old-coord)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/rm-element) (:by |root) (:at 1513921255424)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |conj) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:by |root) (:at 1515769562002) (:text |nil)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103285469) (:text |old-coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098473019) (:text |coord)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103175626) (:text |let)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103175915)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103176054)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103186996) (:text |pair)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103187320)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103188259) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103191347) (:text |old-children)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103197256)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103200008) (:text |old-tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103202722)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103203551) (:text |last)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103204694) (:text |pair)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103208579)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103211014) (:text |old-k)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103211677)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103212296) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103212928) (:text |pair)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103228132)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103231035) (:text |next-n-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103231477)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103232899) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103234599) (:text |n-coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103235623) (:text |index)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103272668)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103275450) (:text |old-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103277943)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103277943) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103277943) (:text |coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103277943) (:text |old-k)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:else) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |old-keys) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |take) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |16) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |old-follows) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x1-remains?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |some) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |match-x1) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |new-keys) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-keys) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |take) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |16) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |match-x1) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |x1) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |y1) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-keys) (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |y1-existed?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |some) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |match-y1) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |old-keys) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x1) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-keys) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |match-y1) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |y1) (:by |root) (:at 1504774121421)
|yv $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-follows) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|yr $ {} (:type :leaf) (:text |old-keys) (:by |root) (:at 1504774121421)
|yT $ {} (:type :leaf) (:text |y1) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-keys) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |x1) (:by |root) (:at 1504774121421)
|yj $ {} (:type :leaf) (:text |y1-existed?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text "|\"compare:") (:by |rJoDgvdeG) (:at 1551287512397)
|y $ {} (:type :leaf) (:text |x1-remains?) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x1) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |y1) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |old-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |val-of-first) (:by |rJoDgvdeG) (:at 1572885693960)
|j $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |val-of-first) (:by |rJoDgvdeG) (:at 1572885697500)
|r $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |find-element-diffs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |conj) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-element) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-element) (:by |root) (:at 1504774121421)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098384489)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098385791) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098388018) (:text |coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098389340) (:text |x1)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |inc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |old-follows) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |new-follows) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098401991) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x1-remains?) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |y1-existed?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |rJoDgvdeG) (:at 1612103378334)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |val-of-first) (:by |rJoDgvdeG) (:at 1572885701372)
|j $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/add-element) (:by |root) (:at 1513921551218)
|v $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103390808) (:text |next-coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103406495) (:text |next-n-coord)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571582758137)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582965891) (:text |collect-mounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582764523) (:text |collect!)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571582780555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885703161) (:text |val-of-first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582780555) (:text |new-children)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885088913) (:text |true)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103393690) (:text |next-coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103414116) (:text |next-n-coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |inc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |new-follows) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098498547) (:text |coord)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103378606)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103378776)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103380664) (:text |next-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103382755)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103383302) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103384118) (:text |coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103385167) (:text |y1)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103397203)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103399241) (:text |next-n-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103409004)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103409004) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103409004) (:text |n-coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103409004) (:text |index)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x1-remains?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |y1-existed?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |rJoDgvdeG) (:at 1612103433386)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571582787203)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583014487) (:text |collect-unmounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582793600) (:text |collect!)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571582795684)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885709941) (:text |val-of-first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582807176) (:text |old-children)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885377083) (:text |true)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103449360) (:text |coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103477694) (:text |next-n-coord)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/rm-element) (:by |root) (:at 1513921266639)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103482041) (:text |next-n-coord)
|t $ {} (:type :leaf) (:by |root) (:at 1515768863567) (:text |nil)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103445154) (:text |next-coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |old-follows) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098411561) (:text |coord)
|X $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103433667)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103433842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103436846) (:text |next-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103438672)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103438672) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103438672) (:text |coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103438672) (:text |x1)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103466127)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103469845) (:text |next-n-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103473561)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103473561) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103473561) (:text |n-coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103473561) (:text |index)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:else) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |xi) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.indexOf) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-keys) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |x1) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |yi) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.indexOf) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-keys) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |y1) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first-old-entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first-new-entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103512263)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103515222) (:text |next-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103515649)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103517687) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103517687) (:text |coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103517687) (:text |y1)
|y $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103537120)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103539754) (:text |next-n-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612103542527)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103542527) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103542527) (:text |n-coord)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103542527) (:text |index)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||index:) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |xi) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |yi) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |<=) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |xi) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |yi) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |val-of-first) (:by |rJoDgvdeG) (:at 1572885715243)
|j $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/add-element) (:by |root) (:at 1513921276379)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103545835) (:text |next-n-coord)
|v $ {} (:type :leaf) (:text |new-element) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103521323) (:text |next-coord)
|t $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571582828154)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582971249) (:text |collect-mounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582836852) (:text |collect!)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103548632) (:text |next-n-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571582838879)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885719154) (:text |val-of-first)
|j $ {} (:type :leaf) (:by |root) (:at 1571907726206) (:text |new-children)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885091618) (:text |true)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103525538) (:text |next-coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |inc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |new-follows) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098414164) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571582848346)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582973650) (:text |collect-unmounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582860668) (:text |collect!)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103552887) (:text |next-n-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571582935452)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885723417) (:text |val-of-first)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583030401) (:text |old-children)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885367597) (:text |true)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103530858) (:text |next-coord)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/rm-element) (:by |root) (:at 1513921280969)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103555635) (:text |next-n-coord)
|t $ {} (:type :leaf) (:by |root) (:at 1515768853136) (:text |nil)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103533646) (:text |next-coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |old-follows) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098416079) (:text |coord)
|find-element-diffs $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |find-element-diffs) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |old-tree) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |new-tree) (:by |root) (:at 1504774121421)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098355483) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |.log) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |js/console) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text "||element diffing:") (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |old-tree) (:by |root) (:at 1504774121421)
|yT $ {} (:type :leaf) (:text |new-tree) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:by |root) (:at 1504774121421)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571578648899)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571578647700)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571578647700) (:text |identical?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571578647700) (:text |old-tree)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571578647700) (:text |new-tree)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571578649980) (:text |nil)
|f $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579214740)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579216395)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579216930) (:text |and)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579217869)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579219233) (:text |component?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579221885) (:text |old-tree)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579222419)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579226141) (:text |component?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579227445) (:text |new-tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098790994)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579229992)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579232236) (:text |if)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579232556)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579232718) (:text |=)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579242759)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579243571) (:text |:name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579247947) (:text |old-tree)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579248311)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579250109) (:text |:name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579251251) (:text |new-tree)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579279318)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579280813) (:text |do)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572153017092)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572153017092) (:text |collect-updating)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572153017092) (:text |collect!)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572153590044) (:text |:before-update)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572153017092) (:text |n-coord)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572153017092) (:text |old-tree)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572153017092) (:text |new-tree)
|p $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099153544) (:text |coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579281503)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579680435) (:text |find-element-diffs)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579286484) (:text |collect!)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579700711) (:text |n-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579290116)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579303679) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579294951) (:text |old-tree)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579296256)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579300219) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579298455) (:text |new-tree)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098808687) (:text |new-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584416898)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584423843) (:text |collect-updating)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584430949) (:text |collect!)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572153593073) (:text |:update)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584432754) (:text |n-coord)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584448513) (:text |old-tree)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584450268) (:text |new-tree)
|p $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099177443) (:text |coord)
|v $ {} (:type :expr) (:by |root) (:at 1571645905707)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1571645906812) (:text |do)
|b $ {} (:type :expr) (:by |root) (:at 1571645922814)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1571645922814) (:text |collect-unmounting)
|j $ {} (:type :leaf) (:by |root) (:at 1571645922814) (:text |collect!)
|r $ {} (:type :leaf) (:by |root) (:at 1571645922814) (:text |n-coord)
|v $ {} (:type :leaf) (:by |root) (:at 1571645922814) (:text |old-tree)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885328550) (:text |true)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098978849) (:text |coord)
|f $ {} (:type :expr) (:by |root) (:at 1571645935128)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1571645935128) (:text |find-element-diffs)
|j $ {} (:type :leaf) (:by |root) (:at 1571645935128) (:text |collect!)
|r $ {} (:type :leaf) (:by |root) (:at 1571645935128) (:text |n-coord)
|v $ {} (:type :expr) (:by |root) (:at 1571645935128)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1571645935128) (:text |:tree)
|j $ {} (:type :leaf) (:by |root) (:at 1571645935128) (:text |old-tree)
|x $ {} (:type :expr) (:by |root) (:at 1571645935128)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1571645935128) (:text |:tree)
|j $ {} (:type :leaf) (:by |root) (:at 1571645935128) (:text |new-tree)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098835659) (:text |new-coord)
|j $ {} (:type :expr) (:by |root) (:at 1571645912685)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1571645912685) (:text |collect-mounting)
|j $ {} (:type :leaf) (:by |root) (:at 1571645912685) (:text |collect!)
|r $ {} (:type :leaf) (:by |root) (:at 1571645912685) (:text |n-coord)
|v $ {} (:type :leaf) (:by |root) (:at 1571645912685) (:text |new-tree)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885169032) (:text |true)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099070463) (:text |coord)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098792559) (:text |let)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098792760)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098795379)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098795094) (:text |new-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098797973)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098798489) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098799355) (:text |coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098801115)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098802699) (:text |:name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099753314) (:text |new-tree)
|h $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579369166)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579412895)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579413711) (:text |and)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579420089)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579418442) (:text |component?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579419753) (:text |old-tree)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579423899)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579436539) (:text |element?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579428896) (:text |new-tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579509807)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579510406) (:text |do)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579453096)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571582992163) (:text |collect-unmounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579471444) (:text |collect!)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579477694) (:text |old-tree)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885332862) (:text |true)
|t $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099206920) (:text |n-coord)
|o $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099209433) (:text |coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579515810)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579520704) (:text |recur)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579524293) (:text |collect!)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579527828) (:text |n-coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579529176)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579531491) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579533690) (:text |old-tree)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579535765) (:text |new-tree)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098441174) (:text |coord)
|i $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579539020)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579539532)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579540135) (:text |and)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579540339)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579542913) (:text |element?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579545433) (:text |old-tree)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579546794)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579548581) (:text |component?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579550861) (:text |new-tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579552338)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099229800) (:text |let)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579593318)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579608929) (:text |find-element-diffs)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579615385) (:text |collect!)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579618284) (:text |n-coord)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579630006) (:text |old-tree)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579630290)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579631136) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579632528) (:text |new-tree)
|l $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099227277) (:text |new-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571579553262)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579569709) (:text |collect-mounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579568348) (:text |collect!)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579574796) (:text |n-coord)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571579592238) (:text |new-tree)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885184484) (:text |true)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099224163) (:text |coord)
|X $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099230048)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099230709)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099232194) (:text |new-coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099232541)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099233024) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099234580) (:text |coord)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099236423)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099235330) (:text |:name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099736760) (:text |new-tree)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571589511575)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |rJoDgvdeG) (:at 1571589515036)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571589515289)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571589516447) (:text |element?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571589517833) (:text |old-tree)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571589518194)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571589520220) (:text |element?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571589521971) (:text |new-tree)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:children) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-tree) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:children) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-tree) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not=) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-tree) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-tree) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/replace-element) (:by |root) (:at 1513921175999)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |new-tree) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098548899) (:text |coord)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |find-props-diffs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-tree) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-tree) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099266853) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-tree) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-tree) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not=) (:by |rJoDgvdeG) (:at 1551287431912)
|j $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |find-style-diffs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099315018) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |old-events) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |into) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |#{}) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |keys) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-tree) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-events) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |into) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |#{}) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |keys) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-tree) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |added-events) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |difference) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-events) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |old-events) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |removed-events) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |difference) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-events) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |new-events) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |doseq) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710841172)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |added-events) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/set-event) (:by |root) (:at 1513921161203)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098563016) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |doseq) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710845572)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |removed-events) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/rm-event) (:by |root) (:at 1513921163620)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098569706) (:text |coord)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |find-children-diffs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |old-children) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |new-children) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098374036) (:text |coord)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571589523056)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571589526542) (:text |:else)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571589526796)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571589534169) (:text |js/console.warn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571589550969) (:text "|\"Diffing unknown params")
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571589568660) (:text |old-tree)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571589570160) (:text |new-tree)
|find-props-diffs $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |find-props-diffs) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |old-props) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |new-props) (:by |root) (:at 1504774121421)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099280696) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |count) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-props) (:by |root) (:at 1504774121421)
|yT $ {} (:type :leaf) (:text |new-props) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |.log) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text "||find props:") (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |count) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-props) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |js/console) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |old-props) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-props) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-props) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/add-prop) (:by |root) (:at 1513921191482)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-props) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099287194) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-props) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-props) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099289234) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/rm-prop) (:by |root) (:at 1513921195177)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |key) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-props) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099292605) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-props) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-props) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099295214) (:text |coord)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:else) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |old-entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-props) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-props) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-k) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |old-v) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-props) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-k) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |new-v) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-props) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |old-follows) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-props) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-follows) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-props) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |.log) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |js/console) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-k) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-k) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |old-v) (:by |root) (:at 1504774121421)
|yT $ {} (:type :leaf) (:text |new-v) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |case) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |compare-xy) (:by |rJoDgvdeG) (:at 1551287537194)
|j $ {} (:type :leaf) (:text |old-k) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |new-k) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |-1) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/rm-prop) (:by |root) (:at 1513921198544)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-k) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099298503) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-follows) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-props) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099300051) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |1) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/add-prop) (:by |root) (:at 1513921201567)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |new-entry) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099302332) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-props) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-follows) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099304151) (:text |coord)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not=) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-v) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |new-v) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/replace-prop) (:by |root) (:at 1513921581049)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |new-entry) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099306721) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-follows) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-follows) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099308676) (:text |coord)
|find-style-diffs $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |find-style-diffs) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099329828) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |identical?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |follows) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/add-style) (:by |root) (:at 1513921217146)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099337338) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |follows) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099338821) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |was-empty?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |now-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |follows) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/rm-style) (:by |root) (:at 1513921220868)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |key) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |entry) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099339801) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |follows) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099340992) (:text |coord)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:else) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |old-entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-entry) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |old-follows) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-follows) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |case) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |compare-xy) (:by |rJoDgvdeG) (:at 1551287524216)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |key) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |key) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |-1) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/rm-style) (:by |root) (:at 1513921225016)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |key) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-entry) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099344415) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-follows) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-style) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099345842) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |1) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/add-style) (:by |root) (:at 1513921227292)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |new-entry) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099347124) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-style) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-follows) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099348332) (:text |coord)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |identical?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |val) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |old-entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |val) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |new-entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op/replace-style) (:by |root) (:at 1513921229870)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |new-entry) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099359970) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |old-follows) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |new-follows) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099358120) (:text |coord)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.test.html $ {}
:ns $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710949521)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |rJoDgvdeG) (:at 1511710949521)
|j $ {} (:type :leaf) (:text |respo.test.html) (:by |rJoDgvdeG) (:at 1511710949521)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711075178)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |rJoDgvdeG) (:at 1511711077503)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711077795)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511711079414)
|j $ {} (:type :leaf) (:text |cljs.test) (:by |rJoDgvdeG) (:at 1511711082626)
|r $ {} (:type :leaf) (:text |:refer) (:by |rJoDgvdeG) (:at 1511711084271)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711084778)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511711085044)
|j $ {} (:type :leaf) (:text |deftest) (:by |rJoDgvdeG) (:at 1511711086690)
|r $ {} (:type :leaf) (:text |is) (:by |rJoDgvdeG) (:at 1511711089580)
|v $ {} (:type :leaf) (:text |testing) (:by |rJoDgvdeG) (:at 1511711090467)
|x $ {} (:type :leaf) (:text |run-tests) (:by |rJoDgvdeG) (:at 1511711787409)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711096271)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511711097662)
|j $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1540830130336)
|r $ {} (:type :leaf) (:text |:refer) (:by |rJoDgvdeG) (:at 1511711101326)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711101548)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511711101718)
|yr $ {} (:type :leaf) (:text |link) (:by |rJoDgvdeG) (:at 1511711113456)
|yT $ {} (:type :leaf) (:text |meta') (:by |rJoDgvdeG) (:at 1511711112309)
|j $ {} (:type :leaf) (:text |html) (:by |rJoDgvdeG) (:at 1511711102265)
|x $ {} (:type :leaf) (:text |script) (:by |rJoDgvdeG) (:at 1511711109940)
|v $ {} (:type :leaf) (:text |title) (:by |rJoDgvdeG) (:at 1511711105347)
|yj $ {} (:type :leaf) (:text |div) (:by |rJoDgvdeG) (:at 1511711112888)
|yx $ {} (:type :leaf) (:text |textarea) (:by |rJoDgvdeG) (:at 1512357211526)
|r $ {} (:type :leaf) (:text |head) (:by |rJoDgvdeG) (:at 1511711104602)
|y $ {} (:type :leaf) (:text |style) (:by |rJoDgvdeG) (:at 1511711111136)
|yv $ {} (:type :leaf) (:text |body) (:by |rJoDgvdeG) (:at 1511711114187)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711115083)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511711115879)
|j $ {} (:type :leaf) (:text |respo.test.comp.todolist) (:by |rJoDgvdeG) (:at 1511711589707)
|r $ {} (:type :leaf) (:text |:refer) (:by |rJoDgvdeG) (:at 1511711127295)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711127565)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511711128304)
|j $ {} (:type :leaf) (:text |comp-todolist) (:by |rJoDgvdeG) (:at 1511711132271)
|w $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711137930)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511711138422)
|j $ {} (:type :leaf) (:text |respo.render.html) (:by |rJoDgvdeG) (:at 1511711141952)
|r $ {} (:type :leaf) (:text |:refer) (:by |rJoDgvdeG) (:at 1511711143036)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711143323)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511711143485)
|j $ {} (:type :leaf) (:text |make-string) (:by |rJoDgvdeG) (:at 1511711145892)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711133914)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511711134871)
|j $ {} (:type :leaf) (:text ||fs) (:by |rJoDgvdeG) (:at 1511711135679)
|r $ {} (:type :leaf) (:text |:as) (:by |rJoDgvdeG) (:at 1511711136527)
|v $ {} (:type :leaf) (:text |fs) (:by |rJoDgvdeG) (:at 1511711137232)
:defs $ {}
|html-quote-test $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711065520)
:data $ {}
|T $ {} (:type :leaf) (:text |deftest) (:by |rJoDgvdeG) (:at 1511711360457)
|j $ {} (:type :leaf) (:text |html-quote-test) (:by |rJoDgvdeG) (:at 1511711065520)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711362403)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |rJoDgvdeG) (:at 1511711363272)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711363498)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711363692)
:data $ {}
|T $ {} (:type :leaf) (:text |tree-demo) (:by |rJoDgvdeG) (:at 1511711365003)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711366585)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |rJoDgvdeG) (:at 1511711367304)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711367835)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711368191)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711368438)
:data $ {}
|T $ {} (:type :leaf) (:text |:value) (:by |rJoDgvdeG) (:at 1511711369543)
|j $ {} (:type :leaf) (:text "||a\"b\"c") (:by |rJoDgvdeG) (:at 1511711381698)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711383807)
:data $ {}
|T $ {} (:type :leaf) (:text |:x) (:by |rJoDgvdeG) (:at 1511711385578)
|r $ {} (:type :leaf) (:text ||y) (:by |rJoDgvdeG) (:at 1511711852059)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711389092)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |rJoDgvdeG) (:at 1511711391354)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711392425)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711392777)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711393603)
:data $ {}
|T $ {} (:type :leaf) (:text |:content) (:by |rJoDgvdeG) (:at 1511711395471)
|j $ {} (:type :leaf) (:text "||d\"e\"f") (:by |rJoDgvdeG) (:at 1511711399966)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711404221)
:data $ {}
|T $ {} (:type :leaf) (:text |testing) (:by |rJoDgvdeG) (:at 1511711405191)
|j $ {} (:type :leaf) (:text "||HTML contains quotes") (:by |rJoDgvdeG) (:at 1511711409876)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711410891)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:by |rJoDgvdeG) (:at 1511711411345)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711411540)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |rJoDgvdeG) (:at 1511711411770)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711412559)
:data $ {}
|T $ {} (:type :leaf) (:text |slurp) (:by |rJoDgvdeG) (:at 1511711414239)
|j $ {} (:type :leaf) (:text ||test/examples/quote.html) (:by |rJoDgvdeG) (:at 1511711424284)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711426056)
:data $ {}
|T $ {} (:type :leaf) (:text |make-string) (:by |rJoDgvdeG) (:at 1511711427360)
|j $ {} (:type :leaf) (:text |tree-demo) (:by |rJoDgvdeG) (:at 1511711429408)
|html-test $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711049027)
:data $ {}
|T $ {} (:type :leaf) (:text |deftest) (:by |rJoDgvdeG) (:at 1511711183530)
|j $ {} (:type :leaf) (:text |html-test) (:by |rJoDgvdeG) (:at 1511711049027)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711186214)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |rJoDgvdeG) (:at 1511711186657)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711187714)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711187879)
:data $ {}
|T $ {} (:type :leaf) (:text |todo-demo) (:by |rJoDgvdeG) (:at 1511711190184)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711190437)
:data $ {}
|T $ {} (:type :leaf) (:text |comp-todolist) (:by |rJoDgvdeG) (:at 1511711193568)
|j $ {} (:type :leaf) (:text |todolist-store) (:by |rJoDgvdeG) (:at 1511711199093)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711200571)
:data $ {}
|T $ {} (:type :leaf) (:text |testing) (:by |rJoDgvdeG) (:at 1511711203224)
|j $ {} (:type :leaf) (:text "||test generated HTML from component") (:by |rJoDgvdeG) (:at 1511712220676)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711211316)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:by |rJoDgvdeG) (:at 1511711211593)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711213169)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |rJoDgvdeG) (:at 1511711213352)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711214146)
:data $ {}
|T $ {} (:type :leaf) (:text |slurp) (:by |rJoDgvdeG) (:at 1511711215010)
|j $ {} (:type :leaf) (:text ||test/examples/demo.html) (:by |rJoDgvdeG) (:at 1511711221378)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711223959)
:data $ {}
|T $ {} (:type :leaf) (:text |make-string) (:by |rJoDgvdeG) (:at 1511711227344)
|j $ {} (:type :leaf) (:text |todo-demo) (:by |rJoDgvdeG) (:at 1511711230659)
|simple-html-test $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711052310)
:data $ {}
|T $ {} (:type :leaf) (:text |deftest) (:by |rJoDgvdeG) (:at 1511711243596)
|j $ {} (:type :leaf) (:text |simple-html-test) (:by |rJoDgvdeG) (:at 1511711052310)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711246326)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |rJoDgvdeG) (:at 1511711246812)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711247077)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711247231)
:data $ {}
|T $ {} (:type :leaf) (:text |tree-demo) (:by |rJoDgvdeG) (:at 1511711248778)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711249744)
:data $ {}
|T $ {} (:type :leaf) (:text |html) (:by |rJoDgvdeG) (:at 1511711250327)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711254430)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711255470)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711258663)
:data $ {}
|T $ {} (:type :leaf) (:text |head) (:by |rJoDgvdeG) (:at 1511711259228)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711260060)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711260423)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711262910)
:data $ {}
|T $ {} (:type :leaf) (:text |title) (:by |rJoDgvdeG) (:at 1511711263719)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711264912)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711265347)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711265574)
:data $ {}
|T $ {} (:type :leaf) (:text |:innerHTML) (:by |rJoDgvdeG) (:at 1511711269084)
|j $ {} (:type :leaf) (:text ||Demo) (:by |rJoDgvdeG) (:at 1511711270946)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711272344)
:data $ {}
|T $ {} (:type :leaf) (:text |link) (:by |rJoDgvdeG) (:at 1511711273486)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711274424)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711274784)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711275046)
:data $ {}
|T $ {} (:type :leaf) (:text |:rel) (:by |rJoDgvdeG) (:at 1511711275849)
|j $ {} (:type :leaf) (:text ||icon) (:by |rJoDgvdeG) (:at 1511711278077)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711278957)
:data $ {}
|T $ {} (:type :leaf) (:text |:type) (:by |rJoDgvdeG) (:at 1511711280306)
|j $ {} (:type :leaf) (:text ||image/png) (:by |rJoDgvdeG) (:at 1511711282747)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711285280)
:data $ {}
|T $ {} (:type :leaf) (:text |script) (:by |rJoDgvdeG) (:at 1511711286184)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711287716)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711288100)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711288419)
:data $ {}
|T $ {} (:type :leaf) (:text |:innerHTML) (:by |rJoDgvdeG) (:at 1511711291400)
|j $ {} (:type :leaf) (:text ||{}) (:by |rJoDgvdeG) (:at 1511711293274)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711301964)
:data $ {}
|T $ {} (:type :leaf) (:text |body) (:by |rJoDgvdeG) (:at 1511711302821)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711304679)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711305945)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711306551)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |rJoDgvdeG) (:at 1511711307844)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711308073)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711308546)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711309684)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |rJoDgvdeG) (:at 1511711309976)
|j $ {} (:type :leaf) (:text ||app) (:by |rJoDgvdeG) (:at 1511711311170)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711313111)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |rJoDgvdeG) (:at 1511711313643)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711313919)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711314530)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711317205)
:data $ {}
|T $ {} (:type :leaf) (:text |testing) (:by |rJoDgvdeG) (:at 1511711318220)
|j $ {} (:type :leaf) (:text "||test generated HTML from tree") (:by |rJoDgvdeG) (:at 1511712209700)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711328507)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:by |rJoDgvdeG) (:at 1511711328786)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711329109)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |rJoDgvdeG) (:at 1511711329562)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711330162)
:data $ {}
|T $ {} (:type :leaf) (:text |slurp) (:by |rJoDgvdeG) (:at 1511711331434)
|j $ {} (:type :leaf) (:text ||test/examples/simple.html) (:by |rJoDgvdeG) (:at 1511711338330)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711340747)
:data $ {}
|T $ {} (:type :leaf) (:text |make-string) (:by |rJoDgvdeG) (:at 1511711343880)
|j $ {} (:type :leaf) (:text |tree-demo) (:by |rJoDgvdeG) (:at 1511711346103)
|slurp $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711043994)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |rJoDgvdeG) (:at 1511711043994)
|j $ {} (:type :leaf) (:text |slurp) (:by |rJoDgvdeG) (:at 1511711043994)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711043994)
:data $ {}
|T $ {} (:type :leaf) (:text |file-path) (:by |rJoDgvdeG) (:at 1511711156163)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711157114)
:data $ {}
|T $ {} (:type :leaf) (:text |.readFileSync) (:by |rJoDgvdeG) (:at 1511711159376)
|j $ {} (:type :leaf) (:text |fs) (:by |rJoDgvdeG) (:at 1511711164087)
|r $ {} (:type :leaf) (:text |file-path) (:by |rJoDgvdeG) (:at 1511711165612)
|v $ {} (:type :leaf) (:text ||utf8) (:by |rJoDgvdeG) (:at 1511711167327)
|textarea-test $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1512356927258)
:data $ {}
|T $ {} (:type :leaf) (:text |deftest) (:by |rJoDgvdeG) (:at 1512356958915)
|j $ {} (:type :leaf) (:text |textarea-test) (:by |rJoDgvdeG) (:at 1512356927258)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711186214)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |rJoDgvdeG) (:at 1511711186657)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711187714)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1512357039364)
:data $ {}
|T $ {} (:type :leaf) (:text |piece) (:by |rJoDgvdeG) (:at 1512357039764)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1512357102353)
:data $ {}
|T $ {} (:type :leaf) (:text |textarea) (:by |rJoDgvdeG) (:at 1512357104007)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1512357104455)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1512357104853)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1512357105079)
:data $ {}
|T $ {} (:type :leaf) (:text |:value) (:by |rJoDgvdeG) (:at 1512357106286)
|j $ {} (:type :leaf) (:text "||a\nb\nc\n\"\nd") (:by |rJoDgvdeG) (:at 1512357122629)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711200571)
:data $ {}
|T $ {} (:type :leaf) (:text |testing) (:by |rJoDgvdeG) (:at 1511711203224)
|j $ {} (:type :leaf) (:text "||test generated HTML from component") (:by |rJoDgvdeG) (:at 1511712220676)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711211316)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:by |rJoDgvdeG) (:at 1511711211593)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711213169)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |rJoDgvdeG) (:at 1511711213352)
|f $ {} (:type :leaf) (:text "||<textarea value=\"a b c " d\">a b c " d</textarea>") (:by |rJoDgvdeG) (:at 1596421840316)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711223959)
:data $ {}
|T $ {} (:type :leaf) (:text |make-string) (:by |rJoDgvdeG) (:at 1511711227344)
|j $ {} (:type :leaf) (:text |piece) (:by |rJoDgvdeG) (:at 1512357036561)
|todolist-store $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711037998)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |rJoDgvdeG) (:at 1511711890004)
|j $ {} (:type :leaf) (:text |todolist-store) (:by |rJoDgvdeG) (:at 1511711037998)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711037998)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511711901013)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711901332)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711901811)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711902095)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |rJoDgvdeG) (:at 1511711903467)
|j $ {} (:type :leaf) (:text |101) (:by |rJoDgvdeG) (:at 1511711904306)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711905464)
:data $ {}
|T $ {} (:type :leaf) (:text |:text) (:by |rJoDgvdeG) (:at 1511711907148)
|j $ {} (:type :leaf) (:text ||101) (:by |rJoDgvdeG) (:at 1511711908988)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711901332)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |rJoDgvdeG) (:at 1511711901811)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711902095)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |rJoDgvdeG) (:at 1511711903467)
|j $ {} (:type :leaf) (:text |102) (:by |rJoDgvdeG) (:at 1511711914637)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711905464)
:data $ {}
|T $ {} (:type :leaf) (:text |:text) (:by |rJoDgvdeG) (:at 1511711907148)
|j $ {} (:type :leaf) (:text ||102) (:by |rJoDgvdeG) (:at 1511711917510)
|nil-prop-test $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797386780)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797392969) (:text |deftest)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797386780) (:text |nil-prop-test)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797395431)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797395431) (:text |let)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797395431)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797395431)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797395431) (:text |piece)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797395431)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797398379) (:text |script)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797395431)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797395431) (:text |{})
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797395431)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797405200) (:text |:src)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797413123) (:text "|\"a.js")
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797469766)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797825951) (:text |:defer)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797728705) (:text |nil)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797395431)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797395431) (:text |testing)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797426106) (:text "||test generate script with nil")
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797395431)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797395431) (:text |is)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797395431)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797395431) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797459599) (:text "||<script src=\"a.js\"></script>")
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592797395431)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797395431) (:text |make-string)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592797395431) (:text |piece)
:proc $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710949521)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711772311)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |rJoDgvdeG) (:at 1511711775973)
|j $ {} (:type :leaf) (:text |main!) (:by |rJoDgvdeG) (:at 1511711777071)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711777783)
:data $ {}
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711778794)
:data $ {}
|T $ {} (:type :leaf) (:text |run-tests) (:by |rJoDgvdeG) (:at 1511711782015)
|respo.schema.op $ {}
:ns $ {} (:type :expr) (:by |root) (:at 1513920723777)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1513920723777)
|j $ {} (:type :leaf) (:text |respo.schema.op) (:by |root) (:at 1513920723777)
:defs $ {}
|rm-event $ {} (:type :expr) (:by |root) (:at 1513920784876)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513920952138)
|j $ {} (:type :leaf) (:text |rm-event) (:by |root) (:at 1513920784876)
|r $ {} (:type :leaf) (:text |32) (:by |root) (:at 1513920985172)
|replace-style $ {} (:type :expr) (:by |root) (:at 1513920774287)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513920920415)
|j $ {} (:type :leaf) (:text |replace-style) (:by |root) (:at 1513920774287)
|r $ {} (:type :leaf) (:text |21) (:by |root) (:at 1513920976985)
|replace-element $ {} (:type :expr) (:by |root) (:at 1513920797062)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513920878196)
|j $ {} (:type :leaf) (:text |replace-element) (:by |root) (:at 1513920797062)
|r $ {} (:type :leaf) (:text |1) (:by |root) (:at 1513920862050)
|append-element $ {} (:type :expr) (:by |root) (:at 1513920804206)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513920822758)
|j $ {} (:type :leaf) (:text |append-element) (:by |root) (:at 1513920804206)
|r $ {} (:type :leaf) (:text |3) (:by |root) (:at 1513920845568)
|set-event $ {} (:type :expr) (:by |root) (:at 1513920779217)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513921447857)
|j $ {} (:type :leaf) (:text |set-event) (:by |root) (:at 1513920933652)
|r $ {} (:type :leaf) (:text |30) (:by |root) (:at 1513920980144)
|rm-prop $ {} (:type :expr) (:by |root) (:at 1513920762699)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513920906407)
|j $ {} (:type :leaf) (:text |rm-prop) (:by |root) (:at 1513920762699)
|r $ {} (:type :leaf) (:text |12) (:by |root) (:at 1513920971567)
|effect-mount $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572521760381)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521777565) (:text |def)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521760381) (:text |effect-mount)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521779516) (:text |41)
|add-prop $ {} (:type :expr) (:by |root) (:at 1513920760423)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513920895382)
|j $ {} (:type :leaf) (:text |add-prop) (:by |root) (:at 1513920760423)
|r $ {} (:type :leaf) (:text |10) (:by |root) (:at 1513920967810)
|replace-prop $ {} (:type :expr) (:by |root) (:at 1513920757879)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513920900259)
|j $ {} (:type :leaf) (:text |replace-prop) (:by |root) (:at 1513920757879)
|r $ {} (:type :leaf) (:text |11) (:by |root) (:at 1513920969688)
|effect-update $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572521765373)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521787525) (:text |def)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521765373) (:text |effect-update)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521786677) (:text |43)
|effect-before-update $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572521771240)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521798380) (:text |def)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521771240) (:text |effect-before-update)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521799902) (:text |42)
|add-style $ {} (:type :expr) (:by |root) (:at 1513920766350)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513920913975)
|j $ {} (:type :leaf) (:text |add-style) (:by |root) (:at 1513920766350)
|r $ {} (:type :leaf) (:text |20) (:by |root) (:at 1513920974431)
|rm-style $ {} (:type :expr) (:by |root) (:at 1513920776112)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513920924808)
|j $ {} (:type :leaf) (:text |rm-style) (:by |root) (:at 1513920776112)
|r $ {} (:type :leaf) (:text |22) (:by |root) (:at 1513920978283)
|effect-unmount $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572521762724)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521806568) (:text |def)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521762724) (:text |effect-unmount)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521807957) (:text |44)
|rm-element $ {} (:type :expr) (:by |root) (:at 1513920794452)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513920838971)
|j $ {} (:type :leaf) (:text |rm-element) (:by |root) (:at 1513920794452)
|r $ {} (:type :leaf) (:text |2) (:by |root) (:at 1513920881474)
|add-element $ {} (:type :expr) (:by |root) (:at 1513920790595)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1513920814252)
|j $ {} (:type :leaf) (:text |add-element) (:by |root) (:at 1513920790595)
|r $ {} (:type :leaf) (:text |0) (:by |root) (:at 1513920815969)
:proc $ {} (:type :expr) (:by |root) (:at 1513920723777)
:data $ {}
|respo.cursor $ {}
:ns $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871828389)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871828389) (:text |ns)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871828389) (:text |respo.cursor)
:defs $ {}
|update-states $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871832107)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871832107) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871832107) (:text |update-states)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871832107)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871837564) (:text |store)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871839767)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871843294) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871867563) (:text |cursor)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871872130) (:text |new-state)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871847797)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584872093061) (:text |assoc-in)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871855179) (:text |store)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871857834)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871859467) (:text |concat)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871859709)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871859893) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871863170) (:text |:states)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871878400) (:text |cursor)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871879289)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871879508) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871880620) (:text |:data)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871883571) (:text |new-state)
:proc $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871828389)
:data $ {}
|respo.render.patch $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.render.patch) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |clojure.string) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |string) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.format) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |dashed->camel) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |event->prop) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |ensure-string) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291812983) (:text |get-style-value)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.render.dom) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |make-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |style->string) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by |root) (:at 1513921026110)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1513921028940)
|j $ {} (:type :leaf) (:text |respo.schema.op) (:by |root) (:at 1513921101977)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1513921033014)
|v $ {} (:type :leaf) (:text |op) (:by |root) (:at 1513921103387)
:defs $ {}
|rm-event $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |rm-event) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event-prop) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event->prop) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |aset) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |event-prop) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|replace-style $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |replace-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |style-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dashed->camel) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |key) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |style-value) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ensure-string) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |val) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |aset) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |style-name) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |style-value) (:by |root) (:at 1504774121421)
|replace-element $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |replace-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098166633) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |make-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098169082) (:text |coord)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |parent-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-parentElement) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.insertBefore) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |parent-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |new-element) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.remove) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|append-element $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |append-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098173622) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |make-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098175518) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.appendChild) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |new-element) (:by |root) (:at 1504774121421)
|add-event $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |add-event) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event-name) (:by |rJoDgvdeG) (:at 1612099404587)
|r $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099407258) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event-prop) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event->prop) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |aset) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |event-prop) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.stopPropagation) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|rm-prop $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |rm-prop) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |root) (:at 1515771402147)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1515771408225) (:text |let)
|L $ {} (:type :expr) (:by |root) (:at 1515771408443)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515771408607)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515771409412) (:text |k)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dashed->camel) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|T $ {} (:type :expr) (:by |root) (:at 1541076742345)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1541076742345) (:text |aset)
|j $ {} (:type :leaf) (:by |root) (:at 1541076742345) (:text |target)
|r $ {} (:type :leaf) (:by |root) (:at 1541076742345) (:text |k)
|v $ {} (:type :leaf) (:by |root) (:at 1541076742345) (:text |nil)
|add-prop $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |add-prop) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |prop-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dashed->camel) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |key) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |prop-value) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |val) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |case) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |prop-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text ||style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1541076694462)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1541076694462) (:text |aset)
|j $ {} (:type :leaf) (:by |root) (:at 1541076694462) (:text |target)
|r $ {} (:type :leaf) (:by |root) (:at 1541076694462) (:text |prop-name)
|v $ {} (:type :expr) (:by |root) (:at 1541076694462)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1541076694462) (:text |style->string)
|j $ {} (:type :leaf) (:by |root) (:at 1541076694462) (:text |prop-value)
|x $ {} (:type :expr) (:by |root) (:at 1541076698436)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1541076698436) (:text |aset)
|j $ {} (:type :leaf) (:by |root) (:at 1541076698436) (:text |target)
|r $ {} (:type :leaf) (:by |root) (:at 1541076698436) (:text |prop-name)
|v $ {} (:type :leaf) (:by |root) (:at 1541076698436) (:text |prop-value)
|replace-prop $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |replace-prop) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |prop-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dashed->camel) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |key) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |prop-value) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |val) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |prop-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||value) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |not=) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |prop-value) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-value) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |root) (:at 1541076728088)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1541076728088) (:text |aset)
|j $ {} (:type :leaf) (:by |root) (:at 1541076728088) (:text |target)
|r $ {} (:type :leaf) (:by |root) (:at 1541076728088) (:text |prop-name)
|v $ {} (:type :leaf) (:by |root) (:at 1541076728088) (:text |prop-value)
|v $ {} (:type :expr) (:by |root) (:at 1541076730573)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1541076730573) (:text |aset)
|j $ {} (:type :leaf) (:by |root) (:at 1541076730573) (:text |target)
|r $ {} (:type :leaf) (:by |root) (:at 1541076730573) (:text |prop-name)
|v $ {} (:type :leaf) (:by |root) (:at 1541076730573) (:text |prop-value)
|apply-dom-changes $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |apply-dom-changes) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |changes) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |mount-point) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |root) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-firstElementChild) (:by |root) (:at 1529815273075)
|j $ {} (:type :leaf) (:text |mount-point) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |doseq) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710876295)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |changes) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|t $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098074986) (:text |n-coord)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |find-target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |root) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |n-coord) (:by |rJoDgvdeG) (:at 1612099916238)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|L $ {} (:type :leaf) (:by |root) (:at 1529815294505) (:text |;)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:by |root) (:at 1513921632338)
|yyp $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584018933)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584020078)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584019801) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584024536) (:text |op-type)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572522008145) (:text |op/effect-unmount)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584031327)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584033932) (:text |run-effect)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584035839) (:text |target)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584039176) (:text |op-data)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505555674) (:text |coord)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921744877)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921745453)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921745952)
|T $ {} (:type :leaf) (:text |op/set-event) (:by |root) (:at 1513921098758)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |add-event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099604621) (:text |coord)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921740695)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921741272)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921742164)
|T $ {} (:type :leaf) (:text |op/replace-style) (:by |root) (:at 1513921068496)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |replace-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|yyqT $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584018933)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584020078)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584019801) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584024536) (:text |op-type)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572522005870) (:text |op/effect-before-update)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584031327)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584033932) (:text |run-effect)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584035839) (:text |target)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584039176) (:text |op-data)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505555674) (:text |coord)
|yyq $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584018933)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584020078)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584019801) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584024536) (:text |op-type)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572522009659) (:text |op/effect-update)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584031327)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584033932) (:text |run-effect)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584035839) (:text |target)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584039176) (:text |op-data)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505555674) (:text |coord)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921736990)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921737559)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921738108)
|T $ {} (:type :leaf) (:text |op/rm-prop) (:by |root) (:at 1513921071080)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rm-prop) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |root) (:at 1513921637106)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921733119)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921735523)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921736242)
|T $ {} (:type :leaf) (:text |op/add-prop) (:by |root) (:at 1513921073360)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |add-prop) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921742846)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921743440)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921744132)
|T $ {} (:type :leaf) (:text |op/rm-style) (:by |root) (:at 1513921067091)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rm-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|yx $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921748883)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921749477)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921749918)
|T $ {} (:type :leaf) (:text |op/add-element) (:by |root) (:at 1513921082965)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |add-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098149402) (:text |coord)
|yyj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921756063)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921756711)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921757478)
|T $ {} (:type :leaf) (:text |op/append-element) (:by |root) (:at 1513921096442)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |append-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098206301) (:text |coord)
|yyT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921753946)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921754622)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921755388)
|T $ {} (:type :leaf) (:text |op/replace-element) (:by |root) (:at 1513921090034)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |replace-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098151793) (:text |coord)
|yyn $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584018933)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584020078)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584019801) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584024536) (:text |op-type)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572521976375) (:text |op/effect-mount)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584031327)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584033932) (:text |run-effect)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584035839) (:text |target)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584039176) (:text |op-data)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505555674) (:text |coord)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921731082)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921731695)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921732308)
|T $ {} (:type :leaf) (:text |op/replace-prop) (:by |root) (:at 1513921074654)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |replace-prop) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921738988)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921739555)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921739967)
|T $ {} (:type :leaf) (:text |op/add-style) (:by |root) (:at 1513921069876)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |add-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|yy $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921751525)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921752119)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921752855)
|T $ {} (:type :leaf) (:text |op/rm-element) (:by |root) (:at 1513921085749)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rm-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|yyr $ {} (:type :expr) (:by |root) (:at 1513921759098)
:data $ {}
|D $ {} (:type :leaf) (:text |:else) (:by |root) (:at 1513921760192)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "||not implemented:") (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583244563) (:text |coord)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583245954) (:text |op-data)
|yv $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513921746753)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513921747653)
|L $ {} (:type :leaf) (:text |op-type) (:by |root) (:at 1513921748198)
|T $ {} (:type :leaf) (:text |op/rm-event) (:by |root) (:at 1513921063938)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rm-event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |op-data) (:by |root) (:at 1504774121421)
|add-style $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |add-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |style-prop) (:by |rJoDgvdeG) (:at 1613291230288)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dashed->camel) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291235280) (:text |style-name)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |style-value) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |get-style-value) (:by |rJoDgvdeG) (:at 1613291810523)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |val) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1614697163448) (:text |style-prop)
|D $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291215729)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291223509) (:text |style-name)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291227639)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291227639) (:text |name)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1613291227639)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291227639) (:text |key)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613291227639) (:text |op)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |aset) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |style-prop) (:by |rJoDgvdeG) (:at 1613291231922)
|v $ {} (:type :leaf) (:text |style-value) (:by |root) (:at 1504774121421)
|rm-style $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |rm-style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |style-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dashed->camel) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |aset) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |style-name) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|run-effect $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584061797)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584061797) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584061797) (:text |run-effect)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584061797)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584061797) (:text |target)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584061797) (:text |op-data)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505639266) (:text |coord)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572505527034)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505527586) (:text |if)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572505528559)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505529273) (:text |some?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505530622) (:text |target)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584062993)
:data $ {}
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571587470291) (:text |op-data)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571587472632) (:text |target)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572505531510)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572507524060) (:text |js/console.warn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505606809) (:text "|\"Unknown effects target:")
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572507525441)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572507526646) (:text |pr-str)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505559083) (:text |coord)
|rm-element $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |rm-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |root) (:at 1505376311769)
:data $ {}
|D $ {} (:type :leaf) (:text |if) (:by |root) (:at 1505376312417)
|L $ {} (:type :expr) (:by |root) (:at 1505376313121)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |root) (:at 1505376313962)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1505376315269)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.remove) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1505376316231)
:data $ {}
|T $ {} (:type :leaf) (:text |.warn) (:by |root) (:at 1505376324118)
|j $ {} (:type :leaf) (:text |js/console) (:by |root) (:at 1505376319552)
|r $ {} (:type :leaf) (:text "||Respo: Element already removed! Probably by :inner-text.") (:by |root) (:at 1505376369651)
|find-target $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |find-target) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |root) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:by |rJoDgvdeG) (:at 1572505746508)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572505747189)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505750018) (:text |root)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572505767602)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505768610) (:text |:else)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |child) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |aget) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-children) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |root) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |index) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572505774020)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505774558) (:text |if)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572505775994)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505777060) (:text |some?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505777714) (:text |child)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |child) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572505780916) (:text |nil)
|add-element $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |add-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098158679) (:text |coord)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |new-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |make-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |op) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |listener-builder) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098161180) (:text |coord)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |parent-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.-parentElement) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.insertBefore) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |parent-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |new-element) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.app.comp.todolist $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.comp.todolist) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|n $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1505214161101)
|T $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1540830028210)
|j $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1508915101761)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
|vT $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1552321198978) (:text |textarea)
|w $ {} (:type :leaf) (:text |<>) (:by |root) (:at 1505215173770)
|yT $ {} (:type :leaf) (:text |list->) (:by |root) (:at 1509035192092)
|j $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |input) (:by |root) (:at 1504774121421)
|yx $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719016462) (:text |>>)
|r $ {} (:type :leaf) (:text |span) (:by |root) (:at 1504774121421)
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1505214162915)
|yv $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571574481109) (:text |defeffect)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.comp.wrap) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-wrap) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.comp.inspect) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-inspect) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |clojure.string) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |string) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.comp.task) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-task) (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.comp.zero) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-zero) (:by |root) (:at 1504774121421)
|yx $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.style.widget) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |widget) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |hsl.core) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |hsl) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.comp.space) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|yy $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1611898515154)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898515424) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898517258) (:text |memof.alias)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898518000) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1611898518191)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898518330) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898520205) (:text |memof-call)
|yv $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.dom) (:by |rJoDgvdeG) (:at 1511713157059)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |text-width) (:by |rJoDgvdeG) (:at 1511713175666)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571935419517) (:text |time!)
:defs $ {}
|style-root $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-root) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:black) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:background-color) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |hsl) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |120) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |20) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |98) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:line-height) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||24px) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"font-size") (:by |rJoDgvdeG) (:at 1549948863953)
|j $ {} (:type :leaf) (:text |16) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |10) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:font-family) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "||\"微软雅黑\", Verdana") (:by |root) (:at 1504774121421)
|style-list $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-list) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:black) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:background-color) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |hsl) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |120) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |20) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |98) (:by |root) (:at 1504774121421)
|style-toolbar $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-toolbar) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:display) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:flex) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:flex-direction) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:row) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:justify-content) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:start) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "|\"4px 0") (:by |root) (:at 1540830107261)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:white-space) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:nowrap) (:by |root) (:at 1504774121421)
|style-panel $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-panel) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:display) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:flex) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:margin-bottom) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |4) (:by |root) (:at 1504774121421)
|on-test $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |on-test) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |e) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "||trigger test!") (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by |root) (:at 1509168148061)
:data $ {}
|T $ {} (:type :leaf) (:text |run-test!) (:by |root) (:at 1509168224460)
|j $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1509168150129)
|r $ {} (:type :expr) (:by |root) (:at 1509168426017)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1509168426291)
|on-focus $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |on-focus) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |e) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "||Just focused~") (:by |root) (:at 1504774121421)
|effect-focus $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571574470979)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571574484158) (:text |defeffect)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571574470979) (:text |effect-focus)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571574470979)
:data $ {}
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571574488737)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571574489044) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571574491586) (:text |action)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571574495520) (:text |parent)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1594556638235) (:text |at-place?)
|y $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571847133611)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571847139132) (:text |js/console.log)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571847149555) (:text "|\"todolist effect:")
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571935522848) (:text |action)
|run-test! $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1509168140715)
|j $ {} (:type :leaf) (:text |run-test!) (:by |root) (:at 1509168218767)
|n $ {} (:type :expr) (:by |root) (:at 1509168141638)
:data $ {}
|T $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1509168221837)
|j $ {} (:type :leaf) (:text |acc) (:by |root) (:at 1509168431012)
|r $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1509168137711)
|j $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |started) (:by |root) (:at 1509168137711)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571935425340)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571935425643) (:text |time!)
|n $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:clear) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |loop) (:by |root) (:at 1509168137711)
|j $ {} (:type :expr) (:by |root) (:at 1510373650726)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1509168137711)
|r $ {} (:type :leaf) (:text |20) (:by |rJoDgvdeG) (:at 1594555164569)
|r $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1509168137711)
|j $ {} (:type :leaf) (:text |:add) (:by |root) (:at 1509168137711)
|r $ {} (:type :leaf) (:text ||empty) (:by |root) (:at 1509168137711)
|v $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1509168137711)
|j $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |>) (:by |root) (:at 1509168137711)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1509168137711)
|r $ {} (:type :leaf) (:text |0) (:by |root) (:at 1509168137711)
|r $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1509168137711)
|j $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |dec) (:by |root) (:at 1509168137711)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1509168137711)
|v $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |loop) (:by |root) (:at 1509168137711)
|j $ {} (:type :expr) (:by |root) (:at 1510373648352)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1509168137711)
|r $ {} (:type :leaf) (:text |20) (:by |root) (:at 1509168137711)
|r $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1509168137711)
|j $ {} (:type :leaf) (:text |:hit-first) (:by |root) (:at 1509168137711)
|r $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |rand) (:by |root) (:at 1509168137711)
|v $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1509168137711)
|j $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |>) (:by |root) (:at 1509168137711)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1509168137711)
|r $ {} (:type :leaf) (:text |0) (:by |root) (:at 1509168137711)
|r $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1509168137711)
|j $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |dec) (:by |root) (:at 1509168137711)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1509168137711)
|x $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1509168137711)
|j $ {} (:type :leaf) (:text |:clear) (:by |root) (:at 1509168137711)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1509168137711)
|y $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |loop) (:by |root) (:at 1509168137711)
|j $ {} (:type :expr) (:by |root) (:at 1510373654172)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1509168137711)
|r $ {} (:type :leaf) (:text |10) (:by |root) (:at 1509168137711)
|r $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1509168137711)
|j $ {} (:type :leaf) (:text |:add) (:by |root) (:at 1509168137711)
|r $ {} (:type :leaf) (:text "||only 10 items") (:by |root) (:at 1509168137711)
|v $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1509168137711)
|j $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |>) (:by |root) (:at 1509168137711)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1509168137711)
|r $ {} (:type :leaf) (:text |0) (:by |root) (:at 1509168137711)
|r $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1509168137711)
|j $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |dec) (:by |root) (:at 1509168137711)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1509168137711)
|yj $ {} (:type :expr) (:by |root) (:at 1509168454003)
:data $ {}
|D $ {} (:type :leaf) (:text |let) (:by |root) (:at 1509168454759)
|L $ {} (:type :expr) (:by |root) (:at 1509168455004)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1509168455590)
:data $ {}
|T $ {} (:type :leaf) (:text |cost) (:by |root) (:at 1509168456193)
|j $ {} (:type :expr) (:by |root) (:at 1509168137711)
:data $ {}
|T $ {} (:type :leaf) (:text |-) (:by |root) (:at 1509168137711)
|f $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571935687946)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571935428461) (:text |time!)
|r $ {} (:type :leaf) (:text |started) (:by |root) (:at 1509168137711)
|T $ {} (:type :expr) (:by |root) (:at 1509168186760)
:data $ {}
|D $ {} (:type :leaf) (:text |if) (:by |root) (:at 1509168187694)
|L $ {} (:type :expr) (:by |root) (:at 1509168192591)
:data $ {}
|D $ {} (:type :leaf) (:text |<) (:by |root) (:at 1509168440280)
|L $ {} (:type :expr) (:by |root) (:at 1509168435561)
:data $ {}
|T $ {} (:type :leaf) (:text |count) (:by |root) (:at 1509168435203)
|j $ {} (:type :leaf) (:text |acc) (:by |root) (:at 1509168438004)
|T $ {} (:type :leaf) (:text |40) (:by |rJoDgvdeG) (:at 1584872987926)
|T $ {} (:type :expr) (:by |root) (:at 1509168181449)
:data $ {}
|T $ {} (:type :leaf) (:text |js/setTimeout) (:by |root) (:at 1509168183634)
|b $ {} (:type :expr) (:by |root) (:at 1509168200951)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1509168201003)
|j $ {} (:type :expr) (:by |root) (:at 1509168202162)
:data $ {}
|r $ {} (:type :expr) (:by |root) (:at 1509168204270)
:data $ {}
|T $ {} (:type :leaf) (:text |run-test!) (:by |root) (:at 1509168211334)
|j $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1509168214335)
|r $ {} (:type :expr) (:by |root) (:at 1509168478201)
:data $ {}
|T $ {} (:type :leaf) (:text |conj) (:by |root) (:at 1509168478710)
|j $ {} (:type :leaf) (:text |acc) (:by |root) (:at 1509168514886)
|r $ {} (:type :leaf) (:text |cost) (:by |root) (:at 1509168485475)
|j $ {} (:type :leaf) (:text |0) (:by |root) (:at 1509168535016)
|j $ {} (:type :expr) (:by |root) (:at 1509168487516)
:data $ {}
|T $ {} (:type :leaf) (:text |println) (:by |root) (:at 1509168739638)
|j $ {} (:type :leaf) (:text ||result:) (:by |root) (:at 1509168497610)
|r $ {} (:type :expr) (:by |root) (:at 1509168720407)
:data $ {}
|D $ {} (:type :leaf) (:text |vec) (:by |root) (:at 1509168733977)
|T $ {} (:type :expr) (:by |root) (:at 1509168498404)
:data $ {}
|T $ {} (:type :leaf) (:text |sort) (:by |root) (:at 1509168498959)
|j $ {} (:type :leaf) (:text |acc) (:by |root) (:at 1509168501346)
|initial-state $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |initial-state) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:draft) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:locked?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |false) (:by |root) (:at 1504774121421)
|comp-todolist $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1536678904198)
|j $ {} (:type :leaf) (:text |comp-todolist) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |states) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |or) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:data) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |states) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |initial-state) (:by |root) (:at 1504774121421)
|D $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718933236)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718934262) (:text |cursor)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584872700149)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718934490)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718936300) (:text |:cursor)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718936996) (:text |states)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584872700685) (:text |or)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584872701364)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584872702117) (:text |[])
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571574450097)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571574450942) (:text |[])
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571574456411)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571574459596) (:text |effect-focus)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1509095397934)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |style-root) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |comp-inspect) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||States) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:left) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||80px) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1509095400516)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1509075547676)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |widget/button) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-click) (:by |root) (:at 1513786721684)
|j $ {} (:type :leaf) (:text |on-test) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text "||heavy tasks") (:by |root) (:at 1505214591716)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |span) (:by |root) (:at 1509095407440)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:inner-text) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||Clear) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |widget/button) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :leaf) (:text |:on-click) (:by |root) (:at 1513785859523)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719201804)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515602317260)
:data $ {}
|T $ {} (:type :leaf) (:text |d!) (:by |rJoDgvdeG) (:at 1584719206363)
|j $ {} (:type :leaf) (:text |:clear) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719202433) (:text |fn)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719202698)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719202947) (:text |e)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719204094) (:text |d!)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |style-panel) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:text |e) (:by |root) (:at 1509095823927)
:data $ {}
|T $ {} (:type :leaf) (:text |span) (:by |root) (:at 1509095405907)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |widget/button) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :leaf) (:text |:on-click) (:by |root) (:at 1513786776154)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718972053)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718972053)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text |e)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text |d!)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718972053)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text |d!)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text |:add)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718972053)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text |:draft)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text |state)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718972053)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text |d!)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718976271) (:text |cursor)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718972053)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text |assoc)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text |state)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text |:draft)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718972053) (:text ||)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |span) (:by |root) (:at 1541907201738)
|f $ {} (:type :expr) (:by |root) (:at 1541907202546)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1541907202898) (:text |{})
|j $ {} (:type :expr) (:by |root) (:at 1541907204143)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1541907207000) (:text |:on-click)
|j $ {} (:type :leaf) (:by |root) (:at 1541907207635) (:text |nil)
|r $ {} (:type :expr) (:by |root) (:at 1541907259476)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1541907262472) (:text |:inner-text)
|j $ {} (:type :leaf) (:by |root) (:at 1541907264780) (:text "|\"Add")
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |8) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1509729582436)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |8) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |input) (:by |rJoDgvdeG) (:at 1552321228514)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:placeholder) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "|\"Text") (:by |rJoDgvdeG) (:at 1552321207220)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:value) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:draft) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |merge) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |widget/input) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:width) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |max) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |200) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |+) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |24) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |text-width) (:by |rJoDgvdeG) (:at 1511713145149)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:draft) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |16) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text ||BlinkMacSystemFont) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-input) (:by |root) (:at 1513785840605)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718917698)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |d!) (:by |rJoDgvdeG) (:at 1584718922663)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:draft) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:value) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |e) (:by |rJoDgvdeG) (:at 1584719194955)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718940793) (:text |cursor)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718918282) (:text |fn)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718918562)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718918864) (:text |e)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718919959) (:text |d!)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-focus) (:by |root) (:at 1513785843651)
|j $ {} (:type :leaf) (:text |on-focus) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |8) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1509729542799)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |list->) (:by |root) (:at 1511967962941)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:class-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||task-list) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-list) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |reverse) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |task-id) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task-id) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|r $ {} (:type :leaf) (:text |comp-task) (:by |root) (:at 1515603002223)
|x $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|t $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718760523)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718761557) (:text |>>)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718762077) (:text |task-id)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718766713) (:text |states)
|P $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898512270) (:text |memof-call)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |>) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |count) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1509075652750)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:spell-check) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |true) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-toolbar) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1509095910147)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |widget/button) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-click) (:by |rJoDgvdeG) (:at 1584719033076)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:locked?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719039343)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719039343) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719039343)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719039343) (:text |e)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719039343) (:text |d!)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719039343)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719039343) (:text |d!)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719039343) (:text |:clear)
|n $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612103348162) (:text |nil)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||Clear2) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |8) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |widget/button) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :leaf) (:text |:on-click) (:by |root) (:at 1513785889595)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718996844)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |d!) (:by |rJoDgvdeG) (:at 1584719000658)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |update) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:locked?) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |not) (:by |root) (:at 1504774121421)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719001619) (:text |cursor)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718997374) (:text |fn)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584718997610)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718997836) (:text |e)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584718998626) (:text |d!)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||Lock?) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:locked?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |8) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |comp-wrap) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |comp-zero) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |comp-inspect) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||Tasks) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |tasks) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:left) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |500) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:top) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |20) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.comp.space $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.comp.space) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |root) (:at 1505301338392)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1505301339203)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1540830048701)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1508915151159)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
:defs $ {}
|=< $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1509729563664)
|j $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|n $ {} (:type :expr) (:by |root) (:at 1509729564574)
:data $ {}
|T $ {} (:type :leaf) (:text |w) (:by |root) (:at 1509729564809)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1509729565457)
|r $ {} (:type :expr) (:by |root) (:at 1509729566572)
:data $ {}
|T $ {} (:type :leaf) (:text |comp-space) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |w) (:by |root) (:at 1509729567667)
|r $ {} (:type :leaf) (:text |x) (:by |root) (:at 1509729568077)
|comp-space $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-space) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |w) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |h) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |w) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-space) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:width) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |w) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assoc) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-space) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:height) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |h) (:by |root) (:at 1504774121421)
|style-space $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-space) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:height) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |1) (:by |root) (:at 1505230211192)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:width) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |1) (:by |root) (:at 1505326468454)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:display) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:inline-block) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.util.comparator $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.comparator) (:by |root) (:at 1504774121421)
:defs $ {}
|compare-xy $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |compare-xy) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |y) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |type-x) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |type-as-int) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |type-y) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |type-as-int) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |y) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |type-x) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |type-y) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |compare) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |y) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |compare) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |type-x) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |type-y) (:by |root) (:at 1504774121421)
|type-as-int $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |type-as-int) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |number?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |keyword?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |1) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |string?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |2) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:else) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |throw) (:by |rJoDgvdeG) (:at 1511712664791)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712665650)
:data $ {}
|D $ {} (:type :leaf) (:text |js/Error.) (:by |rJoDgvdeG) (:at 1511712671140)
|T $ {} (:type :leaf) (:text "||use number, keyword or string in coord!") (:by |rJoDgvdeG) (:at 1511712668065)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.test.comp.task $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.test.comp.task) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |hsl.core) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |hsl) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1508915185060)
|T $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1540830138479)
|j $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1508915183390)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|D $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1505409019792)
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |span) (:by |root) (:at 1504774121421)
:defs $ {}
|comp-task $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1505409022685)
|j $ {} (:type :leaf) (:text |comp-task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |span) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:inner-text) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:text) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.util.detect $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.detect) (:by |root) (:at 1504774121421)
:defs $ {}
|=seq $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |=seq) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |xs) (:by |root) (:at 1517741380629)
|j $ {} (:type :leaf) (:text |ys) (:by |root) (:at 1517741391582)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |a-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |xs) (:by |root) (:at 1517741382245)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |b-empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |ys) (:by |root) (:at 1517741394104)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571933004375)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933006970) (:text |cond)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |a-empty?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |b-empty?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |true) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571933017841)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571933010820)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933010820) (:text |or)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933010820) (:text |a-empty?)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933010820) (:text |b-empty?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933021436) (:text |false)
|p $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571933248147)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571933248683)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933248966) (:text |=)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571933252215)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933250968) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933253271) (:text |xs)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571933254002)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933255401) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933256879) (:text |ys)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571933257761)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933259022) (:text |recur)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571933261728)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933261514) (:text |rest)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933262428) (:text |xs)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571933264395)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933265303) (:text |rest)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933266436) (:text |ys)
|s $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571933268071)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933269900) (:text |:else)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571933272140) (:text |false)
|component? $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |component?) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571495550242)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495550371) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495552938) (:text |:component)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571495554928)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495556556) (:text |:respo-node)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495558683) (:text |x)
|effect? $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573031814)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573035671) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573031814) (:text |effect?)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573031814)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573037460) (:text |x)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573038088)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573038322) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573041555) (:text |:effect)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573041968)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573050174) (:text |:respo-node)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573051716) (:text |x)
|element? $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element?) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571495569702)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495570035) (:text |x)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571495570664)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495572911) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495575641) (:text |:element)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571495577592)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495581791) (:text |:respo-node)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495582174) (:text |x)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.app.comp.task $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.comp.task) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|b $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1540830039824)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1508915091929)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|yT $ {} (:type :leaf) (:text |<>) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |span) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |input) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|y $ {} (:type :leaf) (:text |button) (:by |root) (:at 1504774121421)
|yv $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586991762) (:text |defeffect)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |hsl.core) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |hsl) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.comp.space) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.comp.inspect) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-inspect) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.app.style.widget) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |widget) (:by |root) (:at 1504774121421)
:defs $ {}
|comp-task $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1536679003089)
|j $ {} (:type :leaf) (:text |comp-task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |states) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |or) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:data) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |states) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||) (:by |root) (:at 1504774121421)
|D $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719172690)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719173865) (:text |cursor)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719174123)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719176906) (:text |:cursor)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719177962) (:text |states)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586889509)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586890799) (:text |[])
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586895374)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586927464) (:text |effect-log)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572083411761) (:text |task)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |8) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |8) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-task) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |8) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |button) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |merge) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-done) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text "|\"background-color") (:by |rJoDgvdeG) (:at 1549948893658)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:done?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |hsl) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |200) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |20) (:by |rJoDgvdeG) (:at 1549948909284)
|v $ {} (:type :leaf) (:text |80) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |hsl) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |200) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |80) (:by |rJoDgvdeG) (:at 1549948914057)
|v $ {} (:type :leaf) (:text |70) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-click) (:by |root) (:at 1513785917865)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719149495)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |d!) (:by |rJoDgvdeG) (:at 1584719153664)
|j $ {} (:type :leaf) (:text |:toggle) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719150633) (:text |fn)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719150856)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719151115) (:text |e)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719151808) (:text |d!)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |input) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:value) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |widget/input) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-input) (:by |root) (:at 1513786754951)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719089367)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719090017) (:text |fn)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719090626)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719090845) (:text |e)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719091699) (:text |d!)
|P $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719094021)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719094932) (:text |d!)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719096043) (:text |cursor)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719097135)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719097786) (:text |:value)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584720105188) (:text |e)
|yx $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |8) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |comp-inspect) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||Task) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:left) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |200) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |input) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:value) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:text) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |widget/input) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by |root) (:at 1505382679150)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-input) (:by |root) (:at 1513785912794)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719129318)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719129318) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719129318)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719163429) (:text |e)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719164292) (:text |d!)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719129318)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719129318) (:text |let)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719129318)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719129318)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719129318) (:text |task-id)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719129318)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719129318) (:text |:id)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719129318) (:text |task)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719129318)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719129318) (:text |text)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719129318)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719129318) (:text |:value)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719160982) (:text |e)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719129318)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719134707) (:text |d!)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719129318) (:text |:update)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719138745)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719129318)
:data $ {}
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719129318) (:text |:id)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719129318) (:text |task-id)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719139337) (:text |{})
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719141429)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719142464) (:text |:text)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719143230) (:text |text)
|yy $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|yv $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |widget/button) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |root) (:at 1515603131600)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1515603136628) (:text |:on-click)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719102767)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |d!) (:by |rJoDgvdeG) (:at 1584719108258)
|j $ {} (:type :leaf) (:text |:remove) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |task) (:by |root) (:at 1504774121421)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719103368) (:text |fn)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584719103687)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719103914) (:text |e)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584719104519) (:text |d!)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||Remove) (:by |root) (:at 1504774121421)
|effect-log $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586937354)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586939749) (:text |defeffect)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586937354) (:text |effect-log)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586937354)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586950105) (:text |task)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586952422)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586957133) (:text |action)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586961474) (:text |parent)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885426290) (:text |at-place?)
|y $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571586962138)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586967079) (:text |js/console.log)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586977512) (:text "|\"Task effect")
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571586982894) (:text |action)
|y $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885427880) (:text |at-place?)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612171403344) (:text |;)
|yT $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086688548)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086689200) (:text |case)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086691733) (:text |action)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086692002)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086697795) (:text |:mount)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086730754)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086731349) (:text |let)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086731782)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086732615)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086733624) (:text |x0)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086734358)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086734358) (:text |js/Math.random)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086743497)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086744295) (:text |println)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086747755) (:text "|\"Stored")
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086749463) (:text |x0)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584720182535) (:text |;)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086750609)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086751544) (:text |:update)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086751819)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086755689) (:text |println)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086756916) (:text "|\"read")
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584720178072) (:text |;)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086765428)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086766906) (:text |:unmount)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086770977)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584720180308) (:text |println)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086770977) (:text "|\"read")
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584720180800) (:text |;)
|y $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572086772386)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572086772701) (:text |do)
|on-click $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |on-click) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |state) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||clicked.) (:by |root) (:at 1504774121421)
|style-done $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-done) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:width) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |32) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:height) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |32) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:outline) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:none) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:border) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:none) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:vertical-align) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:middle) (:by |root) (:at 1504774121421)
|style-task $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-task) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:display) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:flex) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "||4px 0px") (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.test.main $ {}
:ns $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710942011)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |rJoDgvdeG) (:at 1511710942011)
|j $ {} (:type :leaf) (:text |respo.test.main) (:by |rJoDgvdeG) (:at 1511710942011)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710992049)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |rJoDgvdeG) (:at 1511710995250)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710995449)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |rJoDgvdeG) (:at 1511710995647)
|j $ {} (:type :leaf) (:text |respo.test.html) (:by |rJoDgvdeG) (:at 1511710998533)
|r $ {} (:type :leaf) (:text |:as) (:by |rJoDgvdeG) (:at 1511711799580)
|v $ {} (:type :leaf) (:text |html) (:by |rJoDgvdeG) (:at 1511711800004)
|v $ {} (:type :expr) (:by |root) (:at 1513784070951)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1513784071801)
|j $ {} (:type :leaf) (:text |cljs.test) (:by |root) (:at 1513784073871)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1513784075043)
|v $ {} (:type :expr) (:by |root) (:at 1513784075270)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1513784075460)
|b $ {} (:type :leaf) (:text |deftest) (:by |root) (:at 1513784115309)
|j $ {} (:type :leaf) (:text |testing) (:by |root) (:at 1513784076853)
|r $ {} (:type :leaf) (:text |is) (:by |root) (:at 1513784077318)
|v $ {} (:type :leaf) (:text |run-tests) (:by |root) (:at 1513785253094)
|x $ {} (:type :expr) (:by |root) (:at 1513784025184)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1513784026319)
|j $ {} (:type :leaf) (:text |respo.util.list) (:by |root) (:at 1513784028897)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1513784029739)
|v $ {} (:type :expr) (:by |root) (:at 1513784029972)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1513784030576)
|j $ {} (:type :leaf) (:text |pick-attrs) (:by |root) (:at 1513784033999)
|r $ {} (:type :leaf) (:text |pick-event) (:by |root) (:at 1513784040329)
:defs $ {}
|main! $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710961298)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |rJoDgvdeG) (:at 1511710961298)
|j $ {} (:type :leaf) (:text |main!) (:by |rJoDgvdeG) (:at 1511710961298)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710961298)
:data $ {}
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710964620)
:data $ {}
|T $ {} (:type :leaf) (:text |html/main!) (:by |rJoDgvdeG) (:at 1511711805435)
|x $ {} (:type :expr) (:by |root) (:at 1513785216370)
:data $ {}
|T $ {} (:type :leaf) (:text |run-tests) (:by |root) (:at 1513785249271)
|reload! $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712031878)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |rJoDgvdeG) (:at 1511712031878)
|j $ {} (:type :leaf) (:text |reload!) (:by |rJoDgvdeG) (:at 1511712031878)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712031878)
:data $ {}
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712034731)
:data $ {}
|T $ {} (:type :leaf) (:text |main!) (:by |rJoDgvdeG) (:at 1511712035802)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1599216877830) (:text |^:dev/after-load)
|test-pick-attrs $ {} (:type :expr) (:by |root) (:at 1513783968618)
:data $ {}
|T $ {} (:type :leaf) (:text |deftest) (:by |root) (:at 1513783969980)
|j $ {} (:type :leaf) (:text |test-pick-attrs) (:by |root) (:at 1513783968618)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711211316)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:by |rJoDgvdeG) (:at 1511711211593)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511711213169)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |rJoDgvdeG) (:at 1511711213352)
|f $ {} (:type :expr) (:by |root) (:at 1513783998155)
:data $ {}
|T $ {} (:type :leaf) (:text |pick-attrs) (:by |root) (:at 1513784000528)
|j $ {} (:type :expr) (:by |root) (:at 1513784002422)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1513784002798)
|j $ {} (:type :expr) (:by |root) (:at 1513784048201)
:data $ {}
|T $ {} (:type :leaf) (:text |:value) (:by |root) (:at 1513784048810)
|j $ {} (:type :leaf) (:text ||string) (:by |root) (:at 1513784050061)
|r $ {} (:type :expr) (:by |root) (:at 1513784199776)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-click) (:by |root) (:at 1513784201331)
|j $ {} (:type :expr) (:by |root) (:at 1513784204720)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1513784205297)
|j $ {} (:type :expr) (:by |root) (:at 1513784206251)
:data $ {}
|p $ {} (:type :expr) (:by |root) (:at 1513784005171)
:data $ {}
|T $ {} (:type :leaf) (:text |list) (:by |root) (:at 1513784189135)
|j $ {} (:type :expr) (:by |root) (:at 1513784006440)
:data $ {}
|D $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1513784196224)
|T $ {} (:type :leaf) (:text |:value) (:by |root) (:at 1513784019017)
|j $ {} (:type :leaf) (:text ||string) (:by |root) (:at 1513784021893)
|test-pick-event $ {} (:type :expr) (:by |root) (:at 1513784223167)
:data $ {}
|T $ {} (:type :leaf) (:text |deftest) (:by |root) (:at 1513784225457)
|j $ {} (:type :leaf) (:text |test-pick-event) (:by |root) (:at 1513784223167)
|r $ {} (:type :expr) (:by |root) (:at 1513785230464)
:data $ {}
|D $ {} (:type :leaf) (:text |testing) (:by |root) (:at 1513785231821)
|L $ {} (:type :leaf) (:text "||test event") (:by |root) (:at 1513785235070)
|T $ {} (:type :expr) (:by |root) (:at 1513784259082)
:data $ {}
|D $ {} (:type :leaf) (:text |let) (:by |root) (:at 1513784259718)
|L $ {} (:type :expr) (:by |root) (:at 1513784259931)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513784260090)
:data $ {}
|T $ {} (:type :leaf) (:text |f) (:by |root) (:at 1513784260621)
|j $ {} (:type :expr) (:by |root) (:at 1513784261206)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1513784261517)
|j $ {} (:type :expr) (:by |root) (:at 1513784261806)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1513784237111)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:by |root) (:at 1513784237484)
|j $ {} (:type :expr) (:by |root) (:at 1513784238993)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513784239156)
|j $ {} (:type :expr) (:by |root) (:at 1513784242284)
:data $ {}
|T $ {} (:type :leaf) (:text |pick-event) (:by |root) (:at 1513784243569)
|j $ {} (:type :expr) (:by |root) (:at 1513784244146)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1513784244493)
|j $ {} (:type :expr) (:by |root) (:at 1513784244729)
:data $ {}
|T $ {} (:type :leaf) (:text |:value) (:by |root) (:at 1513784247855)
|j $ {} (:type :leaf) (:text ||a) (:by |root) (:at 1513784248976)
|r $ {} (:type :expr) (:by |root) (:at 1513784249626)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-click) (:by |root) (:at 1513784253846)
|j $ {} (:type :leaf) (:text |f) (:by |root) (:at 1513784264952)
|r $ {} (:type :expr) (:by |root) (:at 1513784268459)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1513784270461)
|j $ {} (:type :expr) (:by |root) (:at 1513784271913)
:data $ {}
|T $ {} (:type :leaf) (:text |:click) (:by |root) (:at 1513784276414)
|j $ {} (:type :leaf) (:text |f) (:by |root) (:at 1513784276764)
|j $ {} (:type :expr) (:by |root) (:at 1513784237111)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:by |root) (:at 1513784237484)
|j $ {} (:type :expr) (:by |root) (:at 1513784238993)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1513784239156)
|j $ {} (:type :expr) (:by |root) (:at 1513784242284)
:data $ {}
|T $ {} (:type :leaf) (:text |pick-event) (:by |root) (:at 1513784243569)
|j $ {} (:type :expr) (:by |root) (:at 1513784244146)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1513784244493)
|j $ {} (:type :expr) (:by |root) (:at 1513784244729)
:data $ {}
|T $ {} (:type :leaf) (:text |:value) (:by |root) (:at 1513784247855)
|j $ {} (:type :leaf) (:text ||a) (:by |root) (:at 1513784248976)
|r $ {} (:type :expr) (:by |root) (:at 1513784249626)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-click) (:by |root) (:at 1513784253846)
|j $ {} (:type :leaf) (:text |f) (:by |root) (:at 1513784264952)
|v $ {} (:type :expr) (:by |root) (:at 1513784401595)
:data $ {}
|T $ {} (:type :leaf) (:text |:on) (:by |root) (:at 1513784403254)
|j $ {} (:type :expr) (:by |root) (:at 1513784403575)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1513784404710)
|j $ {} (:type :expr) (:by |root) (:at 1513784405124)
:data $ {}
|T $ {} (:type :leaf) (:text |:input) (:by |root) (:at 1513784406656)
|j $ {} (:type :leaf) (:text |f) (:by |root) (:at 1513784408578)
|r $ {} (:type :expr) (:by |root) (:at 1513784268459)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1513784270461)
|j $ {} (:type :expr) (:by |root) (:at 1513784271913)
:data $ {}
|T $ {} (:type :leaf) (:text |:click) (:by |root) (:at 1513784276414)
|j $ {} (:type :leaf) (:text |f) (:by |root) (:at 1513784276764)
|r $ {} (:type :expr) (:by |root) (:at 1513785461409)
:data $ {}
|T $ {} (:type :leaf) (:text |:input) (:by |root) (:at 1513785462941)
|j $ {} (:type :leaf) (:text |f) (:by |root) (:at 1513785463265)
:proc $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511710942011)
:data $ {}
|respo.schema $ {}
:ns $ {} (:type :expr) (:by |root) (:at 1505328949889)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1505328949889)
|j $ {} (:type :leaf) (:text |respo.schema) (:by |root) (:at 1505328949889)
:defs $ {}
|component $ {} (:type :expr) (:by |root) (:at 1509727673463)
:data $ {}
|D $ {} (:type :leaf) (:text |def) (:by |root) (:at 1509727675550)
|L $ {} (:type :leaf) (:text |component) (:by |root) (:at 1509727678455)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571330125884)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495510572) (:text |:respo-node)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495516175) (:text |:component)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1509727680722)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:coord) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:tree) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|xT $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573104186)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573104186) (:text |:effects)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573104186)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573104186) (:text |[])
|effect $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571572970677)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571572975536) (:text |def)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571572970677) (:text |effect)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571572970677)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571572977581) (:text |{})
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571572977834)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571572982171) (:text |:name)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571572984492) (:text |nil)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571572989655)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571572993070) (:text |:respo-node)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571572994513) (:text |:effect)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571572985180)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571572987289) (:text |:coord)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571572987495)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571572987833) (:text |[])
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571572996327)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571572999739) (:text |:args)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573000099)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573000248) (:text |[])
|y $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573004068)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573005229) (:text |:method)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573005963)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573006299) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573006505)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573010966) (:text |args)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573016117)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573016311) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573017655) (:text |action)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573020414) (:text |parent)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1594556709664) (:text |at-place?)
|element $ {} (:type :expr) (:by |root) (:at 1505328957189)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1505375874791)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1505328957189)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:div) (:by |root) (:at 1505375908999)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571330117261)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571495535573) (:text |:respo-node)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571330123170) (:text |:element)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:coord) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1505375890561)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1505375892385)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1505375895120)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:children) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1505375897493)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1505375899450)
|cache-info $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592128521861)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592128524075) (:text |def)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592128521861) (:text |cache-info)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592128521861)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592128525060) (:text |{})
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592128525355)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592128526375) (:text |:value)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592128527024) (:text |nil)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592128527554)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592128599812) (:text |:initial-loop)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592128552155) (:text |nil)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592128548625)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592128692796) (:text |:last-hit)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592128577658) (:text |nil)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592128604110)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592128615161) (:text |:hit-times)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592128619977) (:text |0)
:proc $ {} (:type :expr) (:by |root) (:at 1505328949889)
:data $ {}
|respo.comp.inspect $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.comp.inspect) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|f $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1540830055277)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1508915140751)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |pre) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |<>) (:by |root) (:at 1504774121421)
:defs $ {}
|comp-inspect $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defcomp) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |comp-inspect) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tip) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |style) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pre) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:inner-text) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tip) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text "||: ") (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |grab-info) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |merge) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-data) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |style) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-click) (:by |root) (:at 1513786986945)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |on-click) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|grab-info $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |grab-info) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:by |root) (:at 1504774121421)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||Fn) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |keyword?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||Map/) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |count) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |nil?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||nil) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |set?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||Set/) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |count) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |boolean?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |vector?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||Vector/) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |count) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |number?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|yv $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:else) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|on-click $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |on-click) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |e) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |raw) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |>) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |count) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |raw) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |60) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.log) (:by |rJoDgvdeG) (:at 1511712434288)
|b $ {} (:type :leaf) (:text |js/console) (:by |rJoDgvdeG) (:at 1511712437897)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |clj->js) (:by |rJoDgvdeG) (:at 1565455850610)
|j $ {} (:type :leaf) (:text |data) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |.log) (:by |rJoDgvdeG) (:at 1511712440629)
|b $ {} (:type :leaf) (:text |js/console) (:by |rJoDgvdeG) (:at 1511712441229)
|j $ {} (:type :leaf) (:text |raw) (:by |root) (:at 1504774121421)
|style-data $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |style-data) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "||2px 6px") (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:font-family) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||Avenir,Verdana) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:position) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:absolute) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:opacity) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |0.2) (:by |rJoDgvdeG) (:at 1613291959523)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:white) (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:line-height) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "|\"1.4em") (:by |rJoDgvdeG) (:at 1613291331109)
|yx $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:max-width) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |160) (:by |root) (:at 1504774121421)
|yyj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:overflow) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:ellipsis) (:by |root) (:at 1504774121421)
|yyT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:white-space) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:normal) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:background-color) (:by |root) (:at 1504774121421)
|b $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1613292495673) (:text "|\"hsl(240,100%,0%)")
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:font-size) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||12px) (:by |root) (:at 1504774121421)
|yy $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:max-height) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |32) (:by |root) (:at 1504774121421)
|yyr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:cursor) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |:default) (:by |root) (:at 1504774121421)
|yv $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:border-radius) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text ||4px) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.controller.resolve $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.controller.resolve) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |clojure.string) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |string) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.detect) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |component?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |element?) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.list) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |filter-first) (:by |root) (:at 1504774121421)
:defs $ {}
|build-deliver-event $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |build-deliver-event) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |*global-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |simple-event) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |find-event-target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |@*global-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target-listener) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |get) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871534908)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871546817) (:text |dispatch-wrap)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871547656)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871547971) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871548221)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871548803) (:text |op)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871557596) (:text |data)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584872185338)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871558547)
:data $ {}
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871560410)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871562129) (:text |vector?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871563045) (:text |op)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871563843)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871566681) (:text |dispatch!)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871571390) (:text |:states)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584871573638)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871573986) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871574651) (:text |op)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584871575952) (:text |data)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584872332376) (:text |cond)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584872190627)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584872192240) (:text |:else)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584872192690)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584872192690) (:text |dispatch!)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584872192690) (:text |op)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584872192690) (:text |data)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target-listener) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text "||listener found:") (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target-listener) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |simple-event) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |dispatch-wrap) (:by |rJoDgvdeG) (:at 1584871591793)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text "||found no listener:") (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|find-event-target $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |find-event-target) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |get-markup-at) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |element-exists?) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text "||target element:") (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element-exists?) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |root) (:at 1541907295253)
|j $ {} (:type :expr) (:by |root) (:at 1541907082099)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1541907293020) (:text |get)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:by |root) (:at 1541907087091) (:text |event-name)
|r $ {} (:type :leaf) (:text |target-element) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element-exists?) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |subvec) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |-) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |count) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |1) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |event-name) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|get-markup-at $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |get-markup-at) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |markup) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||markup:) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |markup) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |component?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |markup) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:tree) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |markup) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |coord-head) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |child-pair) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |filter-first) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |child-entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |get) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |child-entry) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |0) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |coord-head) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:children) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |markup) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |child-pair) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |get-markup-at) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |get) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |child-pair) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |1) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |throw) (:by |rJoDgvdeG) (:at 1511712551663)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712553351)
:data $ {}
|D $ {} (:type :leaf) (:text |js/Error.) (:by |rJoDgvdeG) (:at 1511712555708)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text "||child not found:") (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:children) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |markup) (:by |root) (:at 1504774121421)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.core $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.core) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1504774121421)
|yr $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.detect) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |component?) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850642783) (:text |element?)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097394787) (:text |effect?)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.controller.client) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |activate-instance!) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |patch-instance!) (:by |root) (:at 1504774121421)
|yt $ {} (:type :expr) (:by |root) (:at 1529815791840)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815792234) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1529815795712) (:text |respo.util.dom)
|r $ {} (:type :leaf) (:by |root) (:at 1529815797885) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1529815798177)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815798360) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1529815798851) (:text |compare-to-dom!)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.render.diff) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |find-element-diffs) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.controller.resolve) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |build-deliver-event) (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.list) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |pick-attrs) (:by |root) (:at 1504774121421)
|n $ {} (:type :leaf) (:text |pick-event) (:by |root) (:at 1513782741285)
|t $ {} (:type :leaf) (:by |root) (:at 1514823570239) (:text |val-exists?)
|w $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592240014255) (:text |detect-func-in-map?)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097337656) (:text |filter-first)
|yx $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1551287469134)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287469134) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287469134) (:text |respo.util.comparator)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287469134) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1551287469134)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287469134) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287469134) (:text |compare-xy)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |respo.util.format) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |purify-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |mute-element) (:by |root) (:at 1504774121421)
|xT $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584626730)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584627009) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584633569) (:text |respo.render.effect)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584635633) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571584635914)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584636147) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571584639313) (:text |collect-mounting)
|yy $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592132244745)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1592132245055) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898124229) (:text |memof.alias)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898131062) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1611898131297)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898131515) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898202765) (:text |tick-calling-loop!)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898206999) (:text |reset-calling-caches!)
|yv $ {} (:type :expr) (:by |root) (:at 1509727695077)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1509727696555)
|j $ {} (:type :leaf) (:text |respo.schema) (:by |root) (:at 1509727698379)
|r $ {} (:type :leaf) (:text |:as) (:by |root) (:at 1509727698767)
|v $ {} (:type :leaf) (:text |schema) (:by |root) (:at 1509727699801)
|v $ {} (:type :expr) (:by |root) (:at 1540829968903)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1540829971694) (:text |:require-macros)
|j $ {} (:type :expr) (:by |root) (:at 1540829971917)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1540829972147) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1540829974627) (:text |respo.core)
:defs $ {}
|>> $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717583807)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717583807) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717583807) (:text |>>)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717583807)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717587429) (:text |states)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717589003) (:text |k)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717590808)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717593513) (:text |let)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717593734)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717593912)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717602856) (:text |parent-cursor)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717633898)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717603162)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717604395) (:text |:cursor)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717605146) (:text |states)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717634441) (:text |or)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717635438)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717635678) (:text |[])
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717607005)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717615395) (:text |branch)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717616411)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717618041) (:text |get)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717618973) (:text |states)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717619385) (:text |k)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717620560)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717622795) (:text |assoc)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717623675) (:text |branch)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717625744) (:text |:cursor)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1584717626141)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717626655) (:text |conj)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717630765) (:text |parent-cursor)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1584717631832) (:text |k)
|*changes-logger $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defonce) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |*changes-logger) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |atom) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|create-element $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |create-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tag-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |&) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |children) (:by |root) (:at 1504774121421)
|t $ {} (:type :expr) (:by |root) (:at 1511966921576)
:data $ {}
|T $ {} (:type :leaf) (:text |assert) (:by |root) (:at 1511966923670)
|n $ {} (:type :expr) (:by |root) (:at 1511967482844)
:data $ {}
|D $ {} (:type :leaf) (:text |not) (:by |root) (:at 1511967483827)
|T $ {} (:type :expr) (:by |root) (:at 1511967298757)
:data $ {}
|T $ {} (:type :leaf) (:text |some) (:by |root) (:at 1511967299332)
|j $ {} (:type :leaf) (:text |sequential?) (:by |root) (:at 1511967303719)
|r $ {} (:type :leaf) (:text |children) (:by |root) (:at 1511967305138)
|r $ {} (:type :expr) (:by |root) (:at 1511967405174)
:data $ {}
|D $ {} (:type :leaf) (:text |str) (:by |root) (:at 1511967406048)
|T $ {} (:type :leaf) (:text "||For rendering lists, please use list-> , got: ") (:by |root) (:at 1511967412666)
|j $ {} (:type :expr) (:by |root) (:at 1511967416764)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |root) (:at 1511967418406)
|j $ {} (:type :leaf) (:text |children) (:by |root) (:at 1511967419631)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pick-attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |styles) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |contains?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |sort) (:by |rJoDgvdeG) (:at 1549948808117)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1549948790690)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549948791557) (:text |fn)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1549948791820)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549948792107) (:text |x)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549948809716) (:text |y)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1549948814038)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287462774) (:text |compare-xy)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1549948793504)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549948794373) (:text |x)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1549948817113)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549948817755) (:text |first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549948818561) (:text |y)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |list) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |root) (:at 1513782729323)
:data $ {}
|T $ {} (:type :leaf) (:text |pick-event) (:by |root) (:at 1513782731925)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1513782735356)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |children) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |->>) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |map-indexed) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |vector) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |children) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |filter) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571543633915) (:text |val-exists?)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571543739295)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571543740349) (:text |merge)
|L $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571543742445) (:text |schema/element)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tag-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:coord) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |attrs) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |styles) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:children) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |children) (:by |root) (:at 1504774121421)
|render! $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |render!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |markup) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |@*global-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |rerender-app!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |markup) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |mount-app!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |markup) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|mount-app! $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |mount-app!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |rJoDgvdeG) (:at 1612100764419)
|r $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assert) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |instance?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element-type) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text "||1st argument should be an element") (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assert) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |component?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |rJoDgvdeG) (:at 1612100762364)
|r $ {} (:type :leaf) (:text "||2nd argument should be a component") (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |rJoDgvdeG) (:at 1612100759534)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |deliver-event) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |build-deliver-event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |*global-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583125696)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583125696) (:text |*changes)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583125696)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583125696) (:text |atom)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583125696)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583125696) (:text |[])
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583130554)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text |collect!)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583130554)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583130554)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text |x)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583130554)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text |assert)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583130554)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098261863) (:text |4)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583130554)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text |count)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text |x)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text "||change op should has length 3")
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583130554)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text |swap!)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text |*changes)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text |conj)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583130554) (:text |x)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text "||mount app") (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |activate-instance!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |deliver-event) (:by |root) (:at 1504774121421)
|w $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583146439)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583152433) (:text |collect-mounting)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583154801) (:text |collect!)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583155692)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583155267) (:text |[])
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583164474) (:text |element)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885066295) (:text |true)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098277150)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098277367) (:text |[])
|wT $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571583222453)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583222453) (:text |patch-instance!)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583222453) (:text |@*changes)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583222453) (:text |target)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571583222453) (:text |deliver-event)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |reset!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |*global-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|extract-effects-list $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097289114)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097289114) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097289114) (:text |extract-effects-list)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097289114)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097304088) (:text |m)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612101187468)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097304767)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097305090) (:text |if)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097307008)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097308203) (:text |vector?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612101194069) (:text |tree)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097309886)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097321237) (:text |let)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097321533)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097322619)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097324464) (:text |node-tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097324840)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097326601) (:text |filter-first)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612101195777) (:text |tree)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097349389)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097349663) (:text |fn)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097349909)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097350714) (:text |x)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097355769)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097357458) (:text |and)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097358243)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097358605) (:text |map?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097359286) (:text |x)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097359666)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097360116) (:text |or)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097360664)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097362697) (:text |component?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097363138) (:text |x)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097364227)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097366027) (:text |element?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097366373) (:text |x)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097377651)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097380053) (:text |effects-list)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097380294)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097387567) (:text |filter)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097389006) (:text |effect?)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612101199463) (:text |tree)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097442290)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097442290) (:text |merge)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097442290) (:text |m)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097442290)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097442290) (:text |{})
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097442290)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097442290) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097442290) (:text |node-tree)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612097442290)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097442290) (:text |:effects)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097442290) (:text |effects-list)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612097424127) (:text |m)
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612101188237) (:text |let)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612101188651)
:data $ {}
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612101188790)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612101189446) (:text |tree)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612101190263)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612101190943) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612101191696) (:text |m)
|create-list-element $ {} (:type :expr) (:by |root) (:at 1509034723018)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1509034723018)
|j $ {} (:type :leaf) (:text |create-list-element) (:by |root) (:at 1509034723018)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |tag-name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |child-map) (:by |root) (:at 1509073531039)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pick-attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |styles) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |contains?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1549952016919)
:data $ {}
|T $ {} (:type :leaf) (:text |sort) (:by |rJoDgvdeG) (:at 1549951786567)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1549951368526)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |rJoDgvdeG) (:at 1549951368925)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1549951369187)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549951369419) (:text |x)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549951371962) (:text |y)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1549951374800)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1551287483474) (:text |compare-xy)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1549952200904)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549952202491) (:text |first)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549951386917) (:text |x)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1549952203895)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549952205251) (:text |first)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1549951387368) (:text |y)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |list) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by |root) (:at 1513782729323)
:data $ {}
|T $ {} (:type :leaf) (:text |pick-event) (:by |root) (:at 1513782731925)
|j $ {} (:type :leaf) (:text |props) (:by |root) (:at 1513782735356)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571543727829)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571543729591) (:text |merge)
|L $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571543731905) (:text |schema/element)
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:name) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |tag-name) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:coord) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:attrs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |attrs) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |styles) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |event) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |:children) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |child-map) (:by |root) (:at 1509073533618)
|realize-ssr! $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |realize-ssr!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |rJoDgvdeG) (:at 1612100807349)
|r $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assert) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |instance?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element-type) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text "||1st argument should be an element") (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |assert) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |component?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |rJoDgvdeG) (:at 1612100809788)
|r $ {} (:type :leaf) (:text "||2nd argument should be a component") (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :expr) (:by |root) (:at 1529832063849)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529832069280) (:text |app-element)
|j $ {} (:type :expr) (:by |root) (:at 1529815617824)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815642401) (:text |.-firstElementChild)
|j $ {} (:type :leaf) (:by |root) (:at 1529815626176) (:text |target)
|r $ {} (:type :expr) (:by |root) (:at 1572231935928)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231935928) (:text |*changes)
|j $ {} (:type :expr) (:by |root) (:at 1572231935928)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231935928) (:text |atom)
|j $ {} (:type :expr) (:by |root) (:at 1572231935928)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231935928) (:text |[])
|v $ {} (:type :expr) (:by |root) (:at 1572231940314)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text |collect!)
|j $ {} (:type :expr) (:by |root) (:at 1572231940314)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text |fn)
|j $ {} (:type :expr) (:by |root) (:at 1572231940314)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text |x)
|r $ {} (:type :expr) (:by |root) (:at 1572231940314)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text |assert)
|j $ {} (:type :expr) (:by |root) (:at 1572231940314)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099586111) (:text |4)
|r $ {} (:type :expr) (:by |root) (:at 1572231940314)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text |count)
|j $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text |x)
|r $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text "||change op should has length 3")
|v $ {} (:type :expr) (:by |root) (:at 1572231940314)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text |swap!)
|j $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text |*changes)
|r $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text |conj)
|v $ {} (:type :leaf) (:by |root) (:at 1572231940314) (:text |x)
|x $ {} (:type :expr) (:by |root) (:at 1572232092948)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572232092948) (:text |deliver-event)
|j $ {} (:type :expr) (:by |root) (:at 1572232092948)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572232092948) (:text |build-deliver-event)
|j $ {} (:type :leaf) (:by |root) (:at 1572232092948) (:text |*global-element)
|r $ {} (:type :leaf) (:by |root) (:at 1572232092948) (:text |dispatch!)
|w $ {} (:type :expr) (:by |root) (:at 1529832194519)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529832196460) (:text |if)
|L $ {} (:type :expr) (:by |root) (:at 1529832079527)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529832161915) (:text |nil?)
|j $ {} (:type :leaf) (:by |root) (:at 1529832082894) (:text |app-element)
|T $ {} (:type :expr) (:by |root) (:at 1529832230122)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529832231845) (:text |throw)
|T $ {} (:type :expr) (:by |root) (:at 1529832184049)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529832183281) (:text |js/Error.)
|j $ {} (:type :leaf) (:by |root) (:at 1529832236322) (:text "|\"Detected no element from SSR!")
|x $ {} (:type :expr) (:by |root) (:at 1529815663311)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815670222) (:text |compare-to-dom!)
|j $ {} (:type :expr) (:by |root) (:at 1529815398942)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815402369) (:text |purify-element)
|j $ {} (:type :leaf) (:by |root) (:at 1529815403992) (:text |element)
|r $ {} (:type :leaf) (:by |root) (:at 1529832076748) (:text |app-element)
|xT $ {} (:type :expr) (:by |root) (:at 1572231952932)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231952932) (:text |collect-mounting)
|j $ {} (:type :leaf) (:by |root) (:at 1572231952932) (:text |collect!)
|r $ {} (:type :expr) (:by |root) (:at 1572231952932)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231952932) (:text |[])
|v $ {} (:type :leaf) (:by |root) (:at 1572231952932) (:text |element)
|x $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885203913) (:text |true)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612099582062)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612099582989) (:text |[])
|xj $ {} (:type :expr) (:by |root) (:at 1572231958599)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1572231958599) (:text |patch-instance!)
|j $ {} (:type :leaf) (:by |root) (:at 1572231958599) (:text |@*changes)
|r $ {} (:type :leaf) (:by |root) (:at 1572231958599) (:text |target)
|v $ {} (:type :leaf) (:by |root) (:at 1572231958599) (:text |deliver-event)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |reset!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |*global-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |mute-element) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|rerender-app! $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |rerender-app!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |element) (:by |rJoDgvdeG) (:at 1612100792333)
|r $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|yT $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |patch-instance!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |@*changes) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |target) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |deliver-event) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |deliver-event) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |build-deliver-event) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |*global-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |dispatch!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |*changes) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |atom) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|n $ {} (:type :expr) (:by |root) (:at 1515768534738)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515768536064) (:text |assert)
|j $ {} (:type :expr) (:by |root) (:at 1515768537406)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515768538903) (:text |=)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098267496) (:text |4)
|r $ {} (:type :expr) (:by |root) (:at 1515768539839)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515768540524) (:text |count)
|j $ {} (:type :leaf) (:by |root) (:at 1515768541742) (:text |x)
|r $ {} (:type :leaf) (:by |root) (:at 1541076996707) (:text "||change op should has length 3")
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |swap!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |*changes) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |conj) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |x) (:by |root) (:at 1504774121421)
|x $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |find-element-diffs) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |collect!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |@*global-element) (:by |root) (:at 1504774121421)
|x $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1612098533599)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1612098533888) (:text |[])
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text ||Changes:) (:by |root) (:at 1504774121421)
|v $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |pr-str) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |mapv) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |partial) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |take) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |2) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |@*changes) (:by |root) (:at 1504774121421)
|yj $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |reset!) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |*global-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |;) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |println) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |@*global-element) (:by |root) (:at 1504774121421)
|y $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |logger) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |@*changes-logger) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1504774121421)
|j $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |logger) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |logger) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |@*global-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :leaf) (:text |element) (:by |root) (:at 1504774121421)
|v $ {} (:type :leaf) (:text |@*changes) (:by |root) (:at 1504774121421)
|t $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592135595342)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898217716) (:text |tick-calling-loop!)
|element-type $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1565455760753)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1565455770526) (:text |def)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1565455760753) (:text |element-type)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1565455760753)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1565455772000) (:text |if)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1565455774250)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1565455776972) (:text |exists?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1565455779009) (:text |js/Element)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1565455782729) (:text |js/Element)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1565455786739) (:text |js/Error)
|*global-element $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defonce) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |*global-element) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |atom) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |nil) (:by |root) (:at 1504774121421)
|clear-cache! $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1504774121421)
|j $ {} (:type :leaf) (:text |clear-cache!) (:by |root) (:at 1504774121421)
|r $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|x $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1592132484436)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1611898232851) (:text |tick-calling-loop!)
|confirm-child $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571849837293)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571849837293) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571849837293) (:text |confirm-child)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571849837293)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571849977778) (:text |x)
|t $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571849854178)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850629042) (:text |when-not)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571850633926)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850635465) (:text |or)
|H $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571850818280)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850818280) (:text |nil?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850818280) (:text |x)
|L $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571850636152)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850638498) (:text |element?)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850639292) (:text |x)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571850629618)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850633520) (:text |component?)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571849978626) (:text |x)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571850646073)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850650012) (:text |throw)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571850651370)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850655118) (:text |js/Error.)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571850656662)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850657154) (:text |str)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850847642) (:text "|\"Invalid data in elements tree: ")
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571850728118)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850730245) (:text |pr-str)
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571850664816) (:text |x)
|v $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571849980101) (:text |x)
:proc $ {} (:type :expr) (:by nil) (:at 1504774121421)
:data $ {}
|respo.util.dom $ {}
:ns $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712852131)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |rJoDgvdeG) (:at 1511712852131)
|j $ {} (:type :leaf) (:text |respo.util.dom) (:by |rJoDgvdeG) (:at 1511712852131)
|r $ {} (:type :expr) (:by |root) (:at 1529830096052)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830097485) (:text |:require)
|j $ {} (:type :expr) (:by |root) (:at 1529830097685)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830097925) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1529830100583) (:text |clojure.string)
|r $ {} (:type :leaf) (:by |root) (:at 1529830101448) (:text |:as)
|v $ {} (:type :leaf) (:by |root) (:at 1529830102848) (:text |string)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572885810265)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885810635) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885816497) (:text |respo.util.list)
|r $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885817751) (:text |:refer)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1572885817942)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885818170) (:text |[])
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885819155) (:text |val-of-first)
:defs $ {}
|compare-to-dom! $ {} (:type :expr) (:by |root) (:at 1529815704509)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815704509) (:text |defn)
|j $ {} (:type :leaf) (:by |root) (:at 1529815704509) (:text |compare-to-dom!)
|r $ {} (:type :expr) (:by |root) (:at 1529815704509)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815745559) (:text |vdom)
|j $ {} (:type :leaf) (:by |root) (:at 1529815719025) (:text |element)
|t $ {} (:type :expr) (:by |root) (:at 1529830816491)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529831794711) (:text |;)
|T $ {} (:type :leaf) (:by |root) (:at 1529830817270) (:text |println)
|j $ {} (:type :leaf) (:by |root) (:at 1529831117125) (:text "|\"compare")
|p $ {} (:type :expr) (:by |root) (:at 1529831404928)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529831405781) (:text |:name)
|j $ {} (:type :leaf) (:by |root) (:at 1529831406862) (:text |vdom)
|v $ {} (:type :expr) (:by |root) (:at 1529831325932)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529831327578) (:text |map)
|f $ {} (:type :leaf) (:by |root) (:at 1529831376412) (:text |:name)
|r $ {} (:type :expr) (:by |root) (:at 1529831352947)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529831354677) (:text |vals)
|T $ {} (:type :expr) (:by |root) (:at 1529831338020)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529831336570) (:text |:children)
|j $ {} (:type :leaf) (:by |root) (:at 1529831339614) (:text |vdom)
|u $ {} (:type :expr) (:by |root) (:at 1529830825546)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529831797247) (:text |;)
|T $ {} (:type :leaf) (:by |root) (:at 1529830826837) (:text |.log)
|j $ {} (:type :leaf) (:by |root) (:at 1529830829927) (:text |js/console)
|r $ {} (:type :leaf) (:by |root) (:at 1529830830791) (:text |element)
|v $ {} (:type :expr) (:by |root) (:at 1529830137956)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529830138579) (:text |let)
|L $ {} (:type :expr) (:by |root) (:at 1529830138830)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1529830138972)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830693329) (:text |virtual-name)
|j $ {} (:type :expr) (:by |root) (:at 1529830082251)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529830083986) (:text |name)
|T $ {} (:type :expr) (:by |root) (:at 1529815756068)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815756999) (:text |:name)
|j $ {} (:type :leaf) (:by |root) (:at 1529815761065) (:text |vdom)
|j $ {} (:type :expr) (:by |root) (:at 1529830147620)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830150553) (:text |real-name)
|j $ {} (:type :expr) (:by |root) (:at 1529830084997)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529830118577) (:text |string/lower-case)
|T $ {} (:type :expr) (:by |root) (:at 1529815764305)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815766925) (:text |.-tagName)
|j $ {} (:type :leaf) (:by |root) (:at 1529815770517) (:text |element)
|T $ {} (:type :expr) (:by |root) (:at 1529830077150)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529830078828) (:text |when)
|T $ {} (:type :expr) (:by |root) (:at 1529815746389)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830076621) (:text |not=)
|j $ {} (:type :leaf) (:by |root) (:at 1529830160483) (:text |virtual-name)
|r $ {} (:type :leaf) (:by |root) (:at 1529830162025) (:text |real-name)
|j $ {} (:type :expr) (:by |root) (:at 1529830120964)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830123608) (:text |.warn)
|j $ {} (:type :leaf) (:by |root) (:at 1529830126262) (:text |js/console)
|n $ {} (:type :leaf) (:by |root) (:at 1529832761307) (:text "|\"SSR checking: tag names do not match:")
|t $ {} (:type :expr) (:by |root) (:at 1529832830626)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529832832009) (:text |pr-str)
|T $ {} (:type :expr) (:by |root) (:at 1529831819690)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529831821094) (:text |dissoc)
|T $ {} (:type :leaf) (:by |root) (:at 1529831818869) (:text |vdom)
|j $ {} (:type :leaf) (:by |root) (:at 1529831826495) (:text |:children)
|w $ {} (:type :leaf) (:by |root) (:at 1529831830652) (:text |element)
|x $ {} (:type :expr) (:by |root) (:at 1529830186509)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529830256529) (:text |if)
|T $ {} (:type :expr) (:by |root) (:at 1529815879997)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830185824) (:text |not=)
|j $ {} (:type :expr) (:by |root) (:at 1529815890320)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529815891633) (:text |count)
|T $ {} (:type :expr) (:by |root) (:at 1529815885011)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815887642) (:text |:children)
|j $ {} (:type :leaf) (:by |root) (:at 1529815889892) (:text |vdom)
|r $ {} (:type :expr) (:by |root) (:at 1529815892347)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815898109) (:text |.-length)
|j $ {} (:type :expr) (:by |root) (:at 1529815900565)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529815903187) (:text |.-children)
|j $ {} (:type :leaf) (:by |root) (:at 1529815904957) (:text |element)
|j $ {} (:type :expr) (:by |root) (:at 1530207068204)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1530207069049) (:text |let)
|L $ {} (:type :expr) (:by |root) (:at 1530207069412)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1530207069767)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530207074816) (:text |maybe-html)
|j $ {} (:type :expr) (:by |root) (:at 1530206409278)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530206412177) (:text |:innerHTML)
|j $ {} (:type :expr) (:by |root) (:at 1530206849376)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1530206851167) (:text |into)
|L $ {} (:type :expr) (:by |root) (:at 1530206852510)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530206852846) (:text |{})
|T $ {} (:type :expr) (:by |root) (:at 1530206412632)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530206422607) (:text |:attrs)
|j $ {} (:type :leaf) (:by |root) (:at 1530206418715) (:text |vdom)
|T $ {} (:type :expr) (:by |root) (:at 1530206390299)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1530206391351) (:text |if)
|L $ {} (:type :expr) (:by |root) (:at 1530206405448)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530206408931) (:text |some?)
|j $ {} (:type :leaf) (:by |root) (:at 1530207080665) (:text |maybe-html)
|P $ {} (:type :expr) (:by |root) (:at 1530207401065)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1530207418509) (:text |when)
|L $ {} (:type :expr) (:by |root) (:at 1530207404007)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530207404196) (:text |=)
|j $ {} (:type :leaf) (:by |root) (:at 1530207407640) (:text |maybe-html)
|r $ {} (:type :expr) (:by |root) (:at 1530207408971)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530207410780) (:text |.-innerHTML)
|j $ {} (:type :leaf) (:by |root) (:at 1530207414751) (:text |element)
|T $ {} (:type :expr) (:by |root) (:at 1530206424739)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530206998631) (:text |.warn)
|j $ {} (:type :leaf) (:by |root) (:at 1530206429777) (:text |js/console)
|r $ {} (:type :leaf) (:by |root) (:at 1530207446749) (:text "|\"SSR checking: noticed dom containing innerHTML:")
|x $ {} (:type :leaf) (:by |root) (:at 1529815904957) (:text |element)
|T $ {} (:type :expr) (:by |root) (:at 1529831621447)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529831623231) (:text |do)
|T $ {} (:type :expr) (:by |root) (:at 1529830187657)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830202813) (:text |.error)
|j $ {} (:type :leaf) (:by |root) (:at 1529830204739) (:text |js/console)
|r $ {} (:type :leaf) (:by |root) (:at 1529832736857) (:text "|\"SSR checking: children sizes do not match!")
|n $ {} (:type :expr) (:by |root) (:at 1529831589989)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529831908196) (:text |.log)
|b $ {} (:type :leaf) (:by |root) (:at 1529831910269) (:text |js/console)
|j $ {} (:type :leaf) (:by |root) (:at 1529833110265) (:text "|\"virtual:")
|r $ {} (:type :expr) (:by |root) (:at 1529832862971)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529832864130) (:text |->>)
|L $ {} (:type :leaf) (:by |root) (:at 1529832865919) (:text |vdom)
|P $ {} (:type :leaf) (:by |root) (:at 1529832970824) (:text |:children)
|R $ {} (:type :expr) (:by |root) (:at 1530206897760)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1530206899792) (:text |map)
|j $ {} (:type :leaf) (:by |root) (:at 1530206900401) (:text |last)
|S $ {} (:type :expr) (:by |root) (:at 1529832872030)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529832871319) (:text |map)
|j $ {} (:type :leaf) (:by |root) (:at 1529832873317) (:text |:name)
|q $ {} (:type :leaf) (:by |root) (:at 1529833137299) (:text |pr-str)
|r $ {} (:type :expr) (:by |root) (:at 1529831602840)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529831606586) (:text |.log)
|j $ {} (:type :leaf) (:by |root) (:at 1529831608324) (:text |js/console)
|r $ {} (:type :leaf) (:by |root) (:at 1529831610016) (:text "|\"real:")
|v $ {} (:type :expr) (:by |root) (:at 1529830239274)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830241412) (:text |.-children)
|j $ {} (:type :leaf) (:by |root) (:at 1529830243454) (:text |element)
|r $ {} (:type :expr) (:by |root) (:at 1529830403040)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1529830404535) (:text |let)
|L $ {} (:type :expr) (:by |root) (:at 1529830404758)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1529830404885)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830408632) (:text |real-children)
|j $ {} (:type :expr) (:by |root) (:at 1529830409348)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830413575) (:text |.-children)
|j $ {} (:type :leaf) (:by |root) (:at 1529830414836) (:text |element)
|T $ {} (:type :expr) (:by |root) (:at 1529830258663)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830340182) (:text |loop)
|j $ {} (:type :expr) (:by |root) (:at 1529830340478)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1529830340719)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830355775) (:text |acc)
|j $ {} (:type :leaf) (:by |root) (:at 1529830357157) (:text |0)
|j $ {} (:type :expr) (:by |root) (:at 1529830361612)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830370138) (:text |other-children)
|j $ {} (:type :expr) (:by |root) (:at 1529830373576)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830375147) (:text |:children)
|j $ {} (:type :leaf) (:by |root) (:at 1529830376283) (:text |vdom)
|r $ {} (:type :expr) (:by |root) (:at 1529830380564)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830571074) (:text |when)
|j $ {} (:type :expr) (:by |root) (:at 1529830383160)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830386884) (:text |not)
|j $ {} (:type :expr) (:by |root) (:at 1529830387436)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830388661) (:text |empty?)
|j $ {} (:type :leaf) (:by |root) (:at 1529831706758) (:text |other-children)
|r $ {} (:type :expr) (:by |root) (:at 1529830571757)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830582504) (:text |compare-to-dom!)
|j $ {} (:type :expr) (:by |root) (:at 1529830904553)
:data $ {}
|D $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1572885804989) (:text |val-of-first)
|T $ {} (:type :leaf) (:by |root) (:at 1529830588817) (:text |other-children)
|r $ {} (:type :expr) (:by |root) (:at 1529830593234)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830594136) (:text |aget)
|j $ {} (:type :leaf) (:by |root) (:at 1529830598225) (:text |real-children)
|r $ {} (:type :leaf) (:by |root) (:at 1529830599884) (:text |acc)
|v $ {} (:type :expr) (:by |root) (:at 1529830600883)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830601679) (:text |recur)
|b $ {} (:type :expr) (:by |root) (:at 1529830617982)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830618835) (:text |inc)
|j $ {} (:type :leaf) (:by |root) (:at 1529830619546) (:text |acc)
|j $ {} (:type :expr) (:by |root) (:at 1529830602517)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1529830605416) (:text |rest)
|j $ {} (:type :leaf) (:by |root) (:at 1529830607660) (:text |other-children)
|shared-canvas-context $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712941660)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |rJoDgvdeG) (:at 1511712949104)
|j $ {} (:type :leaf) (:text |shared-canvas-context) (:by |rJoDgvdeG) (:at 1511712941660)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712941660)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |rJoDgvdeG) (:at 1511712950763)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712957662)
:data $ {}
|T $ {} (:type :leaf) (:text |and) (:by |rJoDgvdeG) (:at 1511712958710)
|b $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712974502)
:data $ {}
|D $ {} (:type :leaf) (:text |exists?) (:by |rJoDgvdeG) (:at 1511713250762)
|T $ {} (:type :leaf) (:text |js/window) (:by |rJoDgvdeG) (:at 1511712978443)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712961574)
:data $ {}
|T $ {} (:type :leaf) (:text |exists?) (:by |rJoDgvdeG) (:at 1511713253567)
|j $ {} (:type :leaf) (:text |js/document) (:by |rJoDgvdeG) (:at 1511712981591)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511713024536)
:data $ {}
|D $ {} (:type :leaf) (:text |.getContext) (:by |rJoDgvdeG) (:at 1511713027499)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712992552)
:data $ {}
|T $ {} (:type :leaf) (:text |.createElement) (:by |rJoDgvdeG) (:at 1511713006244)
|j $ {} (:type :leaf) (:text |js/document) (:by |rJoDgvdeG) (:at 1511713010664)
|r $ {} (:type :leaf) (:text ||canvas) (:by |rJoDgvdeG) (:at 1511713012654)
|j $ {} (:type :leaf) (:text ||2d) (:by |rJoDgvdeG) (:at 1511713029620)
|v $ {} (:type :leaf) (:text |nil) (:by |rJoDgvdeG) (:at 1511713031151)
|text-width $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511713039830)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |rJoDgvdeG) (:at 1511713039830)
|j $ {} (:type :leaf) (:text |text-width) (:by |rJoDgvdeG) (:at 1511713039830)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511713039830)
:data $ {}
|T $ {} (:type :leaf) (:text |content) (:by |rJoDgvdeG) (:at 1511713045646)
|j $ {} (:type :leaf) (:text |font-size) (:by |rJoDgvdeG) (:at 1511713047834)
|r $ {} (:type :leaf) (:text |font-family) (:by |rJoDgvdeG) (:at 1511713049550)
|v $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511713051657)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |rJoDgvdeG) (:at 1511713055827)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511713056318)
:data $ {}
|T $ {} (:type :leaf) (:text |some?) (:by |rJoDgvdeG) (:at 1511713058409)
|j $ {} (:type :leaf) (:text |shared-canvas-context) (:by |rJoDgvdeG) (:at 1511713059037)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511713085079)
:data $ {}
|D $ {} (:type :leaf) (:text |do) (:by |rJoDgvdeG) (:at 1511713086289)
|T $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511713060905)
:data $ {}
|T $ {} (:type :leaf) (:text |set!) (:by |rJoDgvdeG) (:at 1511713065943)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511713066837)
:data $ {}
|T $ {} (:type :leaf) (:text |.-font) (:by |rJoDgvdeG) (:at 1511713194329)
|j $ {} (:type :leaf) (:text |shared-canvas-context) (:by |rJoDgvdeG) (:at 1511713069065)
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511713072930)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:by |rJoDgvdeG) (:at 1511713073414)
|j $ {} (:type :leaf) (:text |font-size) (:by |rJoDgvdeG) (:at 1511713075227)
|r $ {} (:type :leaf) (:text "||px ") (:by |rJoDgvdeG) (:at 1511713077510)
|v $ {} (:type :leaf) (:text |font-family) (:by |rJoDgvdeG) (:at 1511713080294)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511713086784)
:data $ {}
|T $ {} (:type :leaf) (:text |.-width) (:by |rJoDgvdeG) (:at 1511713089353)
|j $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511713089893)
:data $ {}
|T $ {} (:type :leaf) (:text |.measureText) (:by |rJoDgvdeG) (:at 1511713094991)
|j $ {} (:type :leaf) (:text |shared-canvas-context) (:by |rJoDgvdeG) (:at 1511713096119)
|r $ {} (:type :leaf) (:text |content) (:by |rJoDgvdeG) (:at 1511713098126)
|v $ {} (:type :leaf) (:text |nil) (:by |rJoDgvdeG) (:at 1511713101132)
|time! $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573340422)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573340422) (:text |defn)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571573340422) (:text |time!)
|n $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573354714)
:data $ {}
|r $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1571573352573)
:data $ {}
|T $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571935650828) (:text |.now)
|j $ {} (:type :leaf) (:by |rJoDgvdeG) (:at 1571935653049) (:text |js/Date)
:proc $ {} (:type :expr) (:by |rJoDgvdeG) (:at 1511712852131)
:data $ {}
:configs $ {} (:storage-key |calcit.cirru) (:extension |.cljs) (:output |src) (:port 6001)
| Cirru | 2 | Respo/respo | calcit.cirru | [
"MIT"
] |
-- Andreas, 2019-10-21, issue #4142, reported and test case by Jason Hu
-- When the record-expression-to-copattern-translation is revisited
-- after positivity checking, the defCopatternLHS flag needs to be
-- updated as well!
-- {-# OPTIONS -v tc.cc.record:20 #-}
-- {-# OPTIONS -v tc.conv:30 #-}
open import Agda.Builtin.Equality
record WrapSet : Set1 where
constructor wrap
-- eta-equality -- WAS: needed for test
field
Wrapped : Set
eta : WrapSet
eta .Wrapped = Wrapped
pack : WrapSet
pack = record { Wrapped = Wrapped }
-- The positivity check makes WrapSet an eta-record after the fact.
-- Thus, the record-expression-to-copattern-translation is run again for pack.
open WrapSet
-- Make sure eta was inferred correctly for WrapSet
hasEta : (w : WrapSet) → w ≡ record{ Wrapped = Wrapped w }
hasEta w = refl
-- When we have a definition by copattern matching it works.
works : (w : WrapSet) → w ≡ eta w
works w = refl
-- Should also work for pack.
test : (w : WrapSet) → w ≡ pack w
test w = refl
| Agda | 5 | shlevy/agda | test/Succeed/Issue4142.agda | [
"BSD-3-Clause"
] |
(module
(type $none_=>_none (func))
(type $none_=>_i32 (func (result i32)))
(type $i32_=>_i32 (func (param i32) (result i32)))
(type $i32_i32_i32_i32_=>_none (func (param i32 i32 i32 i32)))
(import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32)))
(global $~argumentsLength (mut i32) (i32.const 0))
(global $~lib/memory/__data_end i32 (i32.const 124))
(global $~lib/memory/__stack_pointer (mut i32) (i32.const 16508))
(global $~lib/memory/__heap_base i32 (i32.const 16508))
(memory $0 1)
(data (i32.const 12) "\1c\00\00\00\00\00\00\00\00\00\00\00\03\00\00\00\08\00\00\00\01\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 44) "L\00\00\00\00\00\00\00\00\00\00\00\01\00\00\000\00\00\00c\00l\00a\00s\00s\00-\00s\00t\00a\00t\00i\00c\00-\00f\00u\00n\00c\00t\00i\00o\00n\00.\00t\00s\00\00\00\00\00\00\00\00\00\00\00\00\00")
(table $0 2 funcref)
(elem $0 (i32.const 1) $class-static-function/Example.staticFunc)
(export "memory" (memory $0))
(start $~start)
(func $class-static-function/Example.staticFunc (result i32)
i32.const 42
)
(func $class-static-function/call (param $0 i32) (result i32)
i32.const 0
global.set $~argumentsLength
local.get $0
i32.load
call_indirect $0 (type $none_=>_i32)
)
(func $~start
call $start:class-static-function
)
(func $~stack_check
global.get $~lib/memory/__stack_pointer
global.get $~lib/memory/__data_end
i32.lt_s
if
i32.const 16528
i32.const 16576
i32.const 1
i32.const 1
call $~lib/builtins/abort
unreachable
end
)
(func $start:class-static-function
(local $0 i32)
global.get $~lib/memory/__stack_pointer
i32.const 4
i32.sub
global.set $~lib/memory/__stack_pointer
call $~stack_check
global.get $~lib/memory/__stack_pointer
i32.const 0
i32.store
i32.const 32
local.set $0
global.get $~lib/memory/__stack_pointer
local.get $0
i32.store
local.get $0
call $class-static-function/call
i32.const 42
i32.eq
i32.eqz
if
i32.const 0
i32.const 64
i32.const 11
i32.const 1
call $~lib/builtins/abort
unreachable
end
global.get $~lib/memory/__stack_pointer
i32.const 4
i32.add
global.set $~lib/memory/__stack_pointer
)
)
| WebAssembly | 3 | romdotdog/assemblyscript | tests/compiler/class-static-function.untouched.wat | [
"Apache-2.0"
] |
import { denormalizePagePath } from '../shared/lib/page-path/denormalize-page-path'
import { normalizePagePath } from '../shared/lib/page-path/normalize-page-path'
export type BuildManifest = {
devFiles: readonly string[]
ampDevFiles: readonly string[]
polyfillFiles: readonly string[]
lowPriorityFiles: readonly string[]
rootMainFiles: readonly string[]
pages: {
'/_app': readonly string[]
[page: string]: readonly string[]
}
ampFirstPages: readonly string[]
}
export function getPageFiles(
buildManifest: BuildManifest,
page: string
): readonly string[] {
const normalizedPage = denormalizePagePath(normalizePagePath(page))
let files = buildManifest.pages[normalizedPage]
if (!files) {
console.warn(
`Could not find files for ${normalizedPage} in .next/build-manifest.json`
)
return []
}
return files
}
| TypeScript | 4 | hanneslund/next.js | packages/next/server/get-page-files.ts | [
"MIT"
] |
<img src="http://example.com/img.png" style="margin-top: 5px;" />
<img src="http://example.com/img.png" style="width: 120px;" />
<span style="font-size: 25px;">REPL</span>
| HTML | 1 | acidburn0zzz/parcel | packages/core/integration-tests/test/integration/html-inline-styles-element/index.html | [
"MIT"
] |
<header>
<h1>
<%= @exception.class.to_s %>
<% if params_valid? && @request.parameters['controller'] %>
in <%= @request.parameters['controller'].camelize %>Controller<% if @request.parameters['action'] %>#<%= @request.parameters['action'] %><% end %>
<% end %>
</h1>
</header>
<main role="main" id="container">
<%= render "rescues/message_and_suggestions", exception: @exception %>
<%= render "rescues/actions", exception: @exception, request: @request %>
<%= render "rescues/source", source_extracts: @source_extracts, show_source_idx: @show_source_idx, error_index: 0 %>
<%= render "rescues/trace", traces: @traces, trace_to_show: @trace_to_show, error_index: 0 %>
<% if @exception.cause %>
<h2>Exception Causes</h2>
<% end %>
<% @exception_wrapper.wrapped_causes.each.with_index(1) do |wrapper, index| %>
<div class="details">
<a class="summary" href="#" onclick="return toggle(<%= wrapper.exception.object_id %>)">
<%= wrapper.exception.class.name %>: <%= h wrapper.exception.message %>
</a>
</div>
<div id="<%= wrapper.exception.object_id %>" class="hidden">
<%= render "rescues/source", source_extracts: wrapper.source_extracts, show_source_idx: wrapper.source_to_show_id, error_index: index %>
<%= render "rescues/trace", traces: wrapper.traces, trace_to_show: wrapper.trace_to_show, error_index: index %>
</div>
<% end %>
<%= render template: "rescues/_request_and_response" %>
</main>
| HTML+ERB | 3 | jstncarvalho/rails | actionpack/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb | [
"MIT"
] |
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY dc "http://purl.org/dc/elements/1.1/" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY owl2xml "http://www.w3.org/2006/12/owl2-xml#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY OntoDM "http://kt.ijs.si/panovp/OntoDM/OntoDM#" >
<!ENTITY Expose "http://expdb.cs.kuleuven.be/Expose.owl#" >
<!ENTITY RO "http://expdb.cs.kuleuven.be/Expose.owl#RO:" >
<!ENTITY IAO "http://expdb.cs.kuleuven.be/Expose.owl#IAO:" >
<!ENTITY BFO "http://expdb.cs.kuleuven.be/Expose.owl#BFO:" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY OBI "http://expdb.cs.kuleuven.be/Expose.owl#OBI:" >
<!ENTITY OntoDM3 "http://kt.ijs.si/panovp/OntoDM/OntoDM#OntoDM:" >
<!ENTITY OntoDM2 "http://expdb.cs.kuleuven.be/Expose.owl#OntoDM:" >
<!ENTITY experiment "http://expdb.cs.kuleuven.be/Expose.owl#experiment/" >
]>
<rdf:RDF xmlns="http://expdb.cs.kuleuven.be/Expose.owl#"
xml:base="http://expdb.cs.kuleuven.be/Expose.owl"
xmlns:experiment="&Expose;experiment/"
xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#"
xmlns:OBI="&Expose;OBI:"
xmlns:OntoDM2="&Expose;OntoDM:"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:BFO="&Expose;BFO:"
xmlns:OntoDM="http://kt.ijs.si/panovp/OntoDM/OntoDM#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:Expose="http://expdb.cs.kuleuven.be/Expose.owl#"
xmlns:RO="&Expose;RO:"
xmlns:IAO="&Expose;IAO:"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:OntoDM3="&OntoDM;OntoDM:">
<owl:Ontology rdf:about="">
<dc:title
>Ontology of Data Mining Experiments</dc:title>
<dc:contributor
>Larisa Soldatova</dc:contributor>
<dc:creator
>Joaquin Vanschoren</dc:creator>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<owl:AnnotationProperty rdf:about="#DM-speak"/>
<owl:AnnotationProperty rdf:about="&dc;creator"/>
<owl:AnnotationProperty rdf:about="&dc;contributor"/>
<owl:AnnotationProperty rdf:about="&dc;title"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://expdb.cs.kuleuven.be/Expose.owl#BFO:has_part -->
<owl:ObjectProperty rdf:about="#BFO:has_part"/>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#BFO:part_of -->
<owl:ObjectProperty rdf:about="#BFO:part_of">
<owl:inverseOf rdf:resource="#BFO:has_part"/>
</owl:ObjectProperty>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#IAO:is_represented_as -->
<owl:ObjectProperty rdf:about="#IAO:is_represented_as">
<rdfs:comment
>for describing data type of parameters</rdfs:comment>
</owl:ObjectProperty>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OBI:achieves_planned_objective -->
<owl:ObjectProperty rdf:about="#OBI:achieves_planned_objective"/>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OBI:has_role -->
<owl:ObjectProperty rdf:about="#OBI:has_role"/>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OBI:is_concretization_of -->
<owl:ObjectProperty rdf:about="#OBI:is_concretization_of"/>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OBI:is_concretized_as -->
<owl:ObjectProperty rdf:about="#OBI:is_concretized_as">
<owl:inverseOf rdf:resource="#OBI:is_concretization_of"/>
</owl:ObjectProperty>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OBI:is_realized_by -->
<owl:ObjectProperty rdf:about="#OBI:is_realized_by">
<owl:inverseOf rdf:resource="#OBI:realizes"/>
</owl:ObjectProperty>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OBI:realizes -->
<owl:ObjectProperty rdf:about="#OBI:realizes"/>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#RO:contained_in -->
<owl:ObjectProperty rdf:about="#RO:contained_in"/>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#RO:contains -->
<owl:ObjectProperty rdf:about="#RO:contains">
<rdfs:comment
>useful for describing with algorithms contain which preprocessing/postprocessing steps</rdfs:comment>
<owl:inverseOf rdf:resource="#RO:contained_in"/>
</owl:ObjectProperty>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#RO:preceded_by -->
<owl:ObjectProperty rdf:about="#RO:preceded_by"/>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#RO:precedes -->
<owl:ObjectProperty rdf:about="#RO:precedes">
<rdfs:comment
>useful for describing which preprocessing application preceded another one</rdfs:comment>
<owl:inverseOf rdf:resource="#RO:preceded_by"/>
</owl:ObjectProperty>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#RO:transformation_of -->
<owl:ObjectProperty rdf:about="#RO:transformation_of">
<owl:inverseOf rdf:resource="#RO:transformed_into"/>
</owl:ObjectProperty>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#RO:transformed_into -->
<owl:ObjectProperty rdf:about="#RO:transformed_into"/>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#has_component -->
<owl:ObjectProperty rdf:about="#has_component">
<rdfs:comment
>Relationship indicating that the second entity is a component of the first entity</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="#BFO:has_part"/>
</owl:ObjectProperty>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#has_description -->
<owl:ObjectProperty rdf:about="#has_description">
<rdfs:comment
>IAO: is about: has description</rdfs:comment>
</owl:ObjectProperty>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#has_parameter -->
<owl:ObjectProperty rdf:about="#has_parameter">
<rdf:type rdf:resource="&owl;SymmetricProperty"/>
<rdfs:comment
>Relationship indicating that the second entity is a parameter of the first entity</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="#BFO:has_part"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://expdb.cs.kuleuven.be/Expose.owl#BFO:realizable_entity -->
<owl:Class rdf:about="#BFO:realizable_entity">
<rdfs:subClassOf rdf:resource="&owl;Thing"/>
<DM-speak>implementation</DM-speak>
<rdfs:comment
>A realizable entity is something that can be physically implemented. As such, it is a superclass for all implementation-related aspects of DM experiments. It belongs to the BFO ontology.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#Bagging_algorithm_application -->
<owl:Class rdf:about="#Bagging_algorithm_application">
<rdfs:subClassOf rdf:resource="#inductive_algorithm_application"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#Bagging_algorithm_implementation -->
<owl:Class rdf:about="#Bagging_algorithm_implementation">
<rdfs:subClassOf rdf:resource="#LibraryImplementation"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#Bagging_algorithm_specification -->
<owl:Class rdf:about="#Bagging_algorithm_specification">
<rdfs:subClassOf rdf:resource="#ensemble_learner"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#C45_pruning -->
<owl:Class rdf:about="#C45_pruning">
<rdfs:subClassOf rdf:resource="#decision_tree_pruning"/>
<rdfs:comment
>Pruning technique of the C4.5 algorithm </rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#DM_algorithm_parameter -->
<owl:Class rdf:about="#DM_algorithm_parameter">
<rdfs:subClassOf rdf:resource="#IAO:information_content_entity"/>
<rdfs:comment
>A parameter often used in certain data mining algorithms. These are parameters that affect the inner working of the algorithm and have primitive values. For structured components used inside data mining algorithm, see DM_component. These are NOT parameters that have to do with implementation-specific aspects of an algorithm (e.g. debug).</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#DM_library -->
<owl:Class rdf:about="#DM_library">
<rdfs:subClassOf rdf:resource="#BFO:realizable_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#DM_task -->
<owl:Class rdf:about="#DM_task">
<rdfs:subClassOf rdf:resource="#IAO:information_content_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#IAO:information_content_entity -->
<owl:Class rdf:about="#IAO:information_content_entity">
<rdfs:subClassOf rdf:resource="&owl;Thing"/>
<rdfs:comment
>OBI:0000283
http://purl.obofoundry.org/obo/iao.owl</rdfs:comment>
<DM-speak
>abstract specification</DM-speak>
<rdfs:comment
>An information content entity provides a specification of a certain object. As such, it is a superclass for all bits of information used to describe parts of a DM experiment. It belongs to the IAO ontology.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#J48_algorithm_application -->
<owl:Class rdf:about="#J48_algorithm_application">
<rdfs:subClassOf rdf:resource="#inductive_algorithm_application"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#J48_algorithm_implementation -->
<owl:Class rdf:about="#J48_algorithm_implementation">
<rdfs:subClassOf rdf:resource="#LibraryImplementation"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#J48_algorithm_specification -->
<owl:Class rdf:about="#J48_algorithm_specification">
<rdfs:subClassOf rdf:resource="#decision_tree_learner"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#LibraryImplementation -->
<owl:Class rdf:about="#LibraryImplementation">
<rdfs:subClassOf rdf:resource="#OntoDM:algorithm_implementation"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OBI:objective -->
<owl:Class rdf:about="#OBI:objective">
<rdfs:subClassOf rdf:resource="#IAO:information_content_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OBI:plan -->
<owl:Class rdf:about="#OBI:plan">
<rdfs:subClassOf rdf:resource="#BFO:realizable_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OBI:plan_specification -->
<owl:Class rdf:about="#OBI:plan_specification">
<rdfs:subClassOf rdf:resource="#IAO:information_content_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OBI:planned_process -->
<owl:Class rdf:about="#OBI:planned_process">
<rdfs:subClassOf rdf:resource="&owl;Thing"/>
<rdfs:comment
>A planned process is the realization of a plan, executed by an agent to achieve a certain goal. It is a superclass for all application-specific aspects of a DM experiment.</rdfs:comment>
<rdfs:comment
>OBI:0000011
http://purl.obolibrary.org/obo/obi.owl</rdfs:comment>
<DM-speak>application</DM-speak>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OBI:role -->
<owl:Class rdf:about="#OBI:role">
<rdfs:subClassOf rdf:resource="#BFO:realizable_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OntoDM:DM_scenario_application -->
<owl:Class rdf:about="#OntoDM:DM_scenario_application">
<rdfs:subClassOf rdf:resource="#OBI:planned_process"/>
<rdfs:comment
>An often used sequence of DM operators</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OntoDM:DM_scenario_specification -->
<owl:Class rdf:about="#OntoDM:DM_scenario_specification">
<rdfs:subClassOf rdf:resource="#OBI:plan_specification"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OntoDM:algorithm_application -->
<owl:Class rdf:about="#OntoDM:algorithm_application">
<rdfs:subClassOf rdf:resource="#OBI:planned_process"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OntoDM:algorithm_implementation -->
<owl:Class rdf:about="#OntoDM:algorithm_implementation">
<rdfs:subClassOf rdf:resource="#OBI:plan"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OntoDM:algorithm_specification -->
<owl:Class rdf:about="#OntoDM:algorithm_specification">
<rdfs:subClassOf rdf:resource="#OBI:plan_specification"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OntoDM:identifier -->
<owl:Class rdf:about="#OntoDM:identifier">
<rdfs:subClassOf rdf:resource="#IAO:information_content_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#OntoDM:mathematical_function -->
<owl:Class rdf:about="#OntoDM:mathematical_function">
<rdfs:subClassOf rdf:resource="#BFO:realizable_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#R_library -->
<owl:Class rdf:about="#R_library">
<rdfs:subClassOf rdf:resource="#DM_library"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#algorithm_component -->
<owl:Class rdf:about="#algorithm_component">
<rdfs:subClassOf rdf:resource="#OBI:role"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#algorithm_function -->
<owl:Class rdf:about="#algorithm_function">
<rdfs:subClassOf rdf:resource="#IAO:information_content_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#algorithm_implementation_version -->
<owl:Class rdf:about="#algorithm_implementation_version">
<rdfs:subClassOf rdf:resource="#OntoDM:identifier"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#base_learner -->
<owl:Class rdf:about="#base_learner">
<rdfs:subClassOf rdf:resource="#algorithm_component"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#bias_variance_analysis -->
<owl:Class rdf:about="#bias_variance_analysis">
<rdfs:subClassOf rdf:resource="#learner_evaluation_scenario"/>
<rdfs:comment
>list DM tasks
first level: do you want to do query/experiment/...</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#binary_splits_for_nominal_features_flag -->
<owl:Class rdf:about="#binary_splits_for_nominal_features_flag">
<rdfs:subClassOf rdf:resource="#decision_tree_parameters"/>
<rdfs:comment
>Parameter indicating whether or not the algorithm should use binary splits when choosing to split on a nominal feature</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#bound -->
<owl:Class rdf:about="#bound">
<rdfs:subClassOf rdf:resource="#mathematical_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#build_bayesian_rule_classifier -->
<owl:Class rdf:about="#build_bayesian_rule_classifier">
<rdfs:subClassOf rdf:resource="#algorithm_function"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#compare_learners -->
<owl:Class rdf:about="#compare_learners">
<rdfs:subClassOf rdf:resource="#experiment/query_task"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#data_application -->
<owl:Class rdf:about="#data_application">
<rdfs:subClassOf rdf:resource="#OBI:planned_process"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#decision_tree_learner -->
<owl:Class rdf:about="#decision_tree_learner">
<rdfs:subClassOf rdf:resource="#hypothesis_refinement_learner"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#has_parameter"/>
<owl:someValuesFrom rdf:resource="#min_number_instances_per_leaf"/>
</owl:Restriction>
</rdfs:subClassOf>
<owl:incompatibleWith
>A decision tree learner is an inductive algoritm that assumes that the data can be correctly modelled using a decision tree. Each node usually contains a test on one of the features of the given data, and branches out for different outcomes of that test. They incrementally expand the tree as more data points are given, refining the initial hypothesis.</owl:incompatibleWith>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#decision_tree_parameters -->
<owl:Class rdf:about="#decision_tree_parameters">
<rdfs:subClassOf rdf:resource="#DM_algorithm_parameter"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#decision_tree_pruning -->
<owl:Class rdf:about="#decision_tree_pruning">
<rdfs:subClassOf rdf:resource="#post-processing_algorithm"/>
<rdfs:comment
>Pruning is a post-processing technique used for decision tree learners. They work by deleting (pruning) branches from a decision tree that are not helpful, because they cause overfitting: modelling noise instead of the target concept.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#distance_function -->
<owl:Class rdf:about="#distance_function">
<rdfs:subClassOf rdf:resource="#algorithm_component"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#distance_function_application -->
<owl:Class rdf:about="#distance_function_application">
<rdfs:subClassOf rdf:resource="#function_application"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#distance_function_implementation -->
<owl:Class rdf:about="#distance_function_implementation">
<rdfs:subClassOf rdf:resource="#function_implementation"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#distance_function_specification -->
<owl:Class rdf:about="#distance_function_specification">
<rdfs:subClassOf rdf:resource="#function_specification"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#downsampling_percentage -->
<owl:Class rdf:about="#downsampling_percentage">
<rdfs:label rdf:resource="#genid1249996370152018000"/>
<rdfs:subClassOf rdf:resource="#DM_algorithm_parameter"/>
<rdfs:comment
>The percentage of the original size of the dataset to which must be downsampled. E.g. 90 means the resulting dataset will have a size 90% that of the original dataset.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#employ_decision_table_approach -->
<owl:Class rdf:about="#employ_decision_table_approach">
<rdfs:subClassOf rdf:resource="#algorithm_function"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#employ_nearest_neighbor_approach -->
<owl:Class rdf:about="#employ_nearest_neighbor_approach">
<rdfs:subClassOf rdf:resource="#algorithm_function"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#ensemble_learner -->
<owl:Class rdf:about="#ensemble_learner">
<rdfs:subClassOf rdf:resource="#inductive_algorithm"/>
<rdfs:comment
>Ensemble algorithms are inductive algorithms that utilise other inductive algorithms (base learners) to provide models (and predictions) for often overlapping parts of the given data and combine their predictions, e.g. by voting, to give the final predictions. Examples are bagging, boosting and stacking.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#ensemble_parameters -->
<owl:Class rdf:about="#ensemble_parameters">
<rdfs:subClassOf rdf:resource="#DM_algorithm_parameter"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#entropy_based_splitting_criterion -->
<owl:Class rdf:about="#entropy_based_splitting_criterion">
<rdfs:subClassOf rdf:resource="#splitting_criterion_specification"/>
<rdfs:comment
>An entropy-based splitting criterion is a splitting criterion for decision trees based on the entropy of a class distribution. Entropy is a measure for the (im)purity (or randomness) of an arbitrary distribution. Features whose value distributions have low entropy are often good candidates for the next split.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#entropy_splitting_criterion -->
<owl:Class rdf:about="#entropy_splitting_criterion">
<rdfs:subClassOf rdf:resource="#entropy_based_splitting_criterion"/>
<rdfs:comment
>Entropy is a splitting criterium for decision trees. It chooses the feature with the lowest entropy.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#evaluation_application -->
<owl:Class rdf:about="#evaluation_application">
<rdfs:subClassOf rdf:resource="#OBI:planned_process"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#evaluation_method_application -->
<owl:Class rdf:about="#evaluation_method_application">
<rdfs:subClassOf rdf:resource="#OBI:planned_process"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#experiment/query_task -->
<owl:Class rdf:about="#experiment/query_task">
<rdfs:subClassOf rdf:resource="#IAO:information_content_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#experiment_id -->
<owl:Class rdf:about="#experiment_id">
<rdfs:subClassOf rdf:resource="#OntoDM:identifier"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#feature_generation_algorithm -->
<owl:Class rdf:about="#feature_generation_algorithm">
<rdfs:subClassOf rdf:resource="#pre-processing_algorithm"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#feature_selection_algorithm -->
<owl:Class rdf:about="#feature_selection_algorithm">
<rdfs:subClassOf rdf:resource="#pre-processing_algorithm"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#function_application -->
<owl:Class rdf:about="#function_application">
<rdfs:subClassOf rdf:resource="#OBI:planned_process"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#function_implementation -->
<owl:Class rdf:about="#function_implementation">
<rdfs:subClassOf rdf:resource="#OBI:plan"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#function_specification -->
<owl:Class rdf:about="#function_specification">
<rdfs:subClassOf rdf:resource="#OBI:plan_specification"/>
<rdfs:comment
>TODO Equal to a heuristic?
</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#handles_nominal_classes -->
<owl:Class rdf:about="#handles_nominal_classes">
<rdfs:subClassOf rdf:resource="#algorithm_function"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#handles_numeric_classes -->
<owl:Class rdf:about="#handles_numeric_classes">
<rdfs:subClassOf rdf:resource="#algorithm_function"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#hard_lower_bound -->
<owl:Class rdf:about="#hard_lower_bound">
<rdfs:subClassOf rdf:resource="#lower_bound"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#hard_upper_bound -->
<owl:Class rdf:about="#hard_upper_bound">
<rdfs:subClassOf rdf:resource="#upper_bound"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#hypothesis_optimization_learner -->
<owl:Class rdf:about="#hypothesis_optimization_learner">
<rdfs:subClassOf rdf:resource="#inductive_algorithm"/>
<rdfs:comment
>An hypothesis optimization learner is an inductive algorithm that assumes the data can be correctly modelled by a given mathematical function, and that adjusts that function (e.g. by adjusting weights) to fit the given data optimally. Examples are linear regression, backpropagation in artificial neural networks, Bayes rule in Bayesian methods and the kernel trick in kernel methods.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#hypothesis_refinement_learner -->
<owl:Class rdf:about="#hypothesis_refinement_learner">
<rdfs:subClassOf rdf:resource="#inductive_algorithm"/>
<rdfs:comment
>An hypothesis refinement learner is an inductive algorithm that assumes the data can be correctly modelled by a given model, and that incrementally adjusts that model as it sees new data points (observations). Examples are decision tree learners, covering learners (rule learners), kMeans and logical induction.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#improve_perceptron_behavior -->
<owl:Class rdf:about="#improve_perceptron_behavior">
<rdfs:subClassOf rdf:resource="#algorithm_function"/>
<rdfs:comment
>E.g. winnow in case of irrelevant dimensions</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#induce_model -->
<owl:Class rdf:about="#induce_model">
<rdfs:subClassOf rdf:resource="#OBI:objective"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#inductive_algorithm -->
<owl:Class rdf:about="#inductive_algorithm">
<rdfs:subClassOf rdf:resource="#OntoDM:algorithm_specification"/>
<rdfs:comment
>An inductive algorithm is an algorithm that, given a number of observations, can predict the outcome of future observations and/or can plan future actions based on those observations.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#inductive_algorithm_application -->
<owl:Class rdf:about="#inductive_algorithm_application">
<rdfs:subClassOf rdf:resource="#OntoDM:algorithm_application"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#RO:preceded_by"/>
<owl:allValuesFrom rdf:resource="#preprocessing_application"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#RO:precedes"/>
<owl:allValuesFrom rdf:resource="#postprocessing_application"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#OBI:achieves_planned_objective"/>
<owl:someValuesFrom rdf:resource="#OBI:objective"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#information_gain_ratio_splitting_criterion -->
<owl:Class rdf:about="#information_gain_ratio_splitting_criterion">
<rdfs:subClassOf rdf:resource="#entropy_based_splitting_criterion"/>
<rdfs:comment
>Information gain ratio is a splitting criterion which normalizes the information gain with the 'gain ratio', a value based on the number of examples left in each class after the test on the attribute. It biases the decision tree against considering attributes with a large number of distinct values.
It solves a drawback of information gain: attributes with large numbers of distinct values (e.g. credit card numbers) usually have high information gain, but tend to overfit the data. An alternative solution is using binary splits for nominal attributes.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#information_gain_splitting_criterion -->
<owl:Class rdf:about="#information_gain_splitting_criterion">
<rdfs:subClassOf rdf:resource="#entropy_based_splitting_criterion"/>
<rdfs:comment
>Information gain is a splitting criterium for decision trees. It calculates the expected reduction in entropy caused by knowing the value of a certain feature. Splitting the data based on the feature with the highest information gain will thus gain the highest drop in entropy.</rdfs:comment>
<rdfs:comment
>Information gain is a synonym for the Kullback-Leibler divergence.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#kernel_function -->
<owl:Class rdf:about="#kernel_function">
<rdfs:subClassOf rdf:resource="#algorithm_component"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#kernel_function_application -->
<owl:Class rdf:about="#kernel_function_application">
<rdfs:subClassOf rdf:resource="#function_application"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#kernel_function_implementation -->
<owl:Class rdf:about="#kernel_function_implementation">
<rdfs:subClassOf rdf:resource="#function_implementation"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#kernel_function_specification -->
<owl:Class rdf:about="#kernel_function_specification">
<rdfs:subClassOf rdf:resource="#function_specification"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#kernel_learner -->
<owl:Class rdf:about="#kernel_learner">
<rdfs:subClassOf rdf:resource="#hypothesis_optimization_learner"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#lazy_learner -->
<owl:Class rdf:about="#lazy_learner">
<rdfs:subClassOf rdf:resource="#inductive_algorithm"/>
<rdfs:comment
>A lazy learner is an inductive algorithm that does not try to model the given data. Instead, it keeps all observations in memory and bases its predictions on 'similar' prior observations.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#learner_evaluation_application -->
<owl:Class rdf:about="#learner_evaluation_application">
<rdfs:subClassOf rdf:resource="#OntoDM:DM_scenario_application"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#BFO:has_part"/>
<owl:someValuesFrom rdf:resource="#evaluation_application"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#BFO:has_part"/>
<owl:someValuesFrom rdf:resource="#inductive_algorithm_application"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#BFO:has_part"/>
<owl:someValuesFrom rdf:resource="#data_application"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#BFO:has_part"/>
<owl:someValuesFrom rdf:resource="#evaluation_method_application"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#learner_evaluation_scenario -->
<owl:Class rdf:about="#learner_evaluation_scenario">
<rdfs:subClassOf rdf:resource="#OntoDM:DM_scenario_specification"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#lower_bound -->
<owl:Class rdf:about="#lower_bound">
<rdfs:subClassOf rdf:resource="#bound"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#make_prediction -->
<owl:Class rdf:about="#make_prediction">
<rdfs:subClassOf rdf:resource="#OBI:objective"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#mathematical_entity -->
<owl:Class rdf:about="#mathematical_entity">
<rdfs:subClassOf rdf:resource="#IAO:information_content_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#min_number_instances_per_leaf -->
<owl:Class rdf:about="#min_number_instances_per_leaf">
<rdfs:subClassOf rdf:resource="#decision_tree_parameters"/>
<rdfs:comment
>A parameter of a decision tree learner. It defines the minimum number of instances that can be allocated in each leaf before the algorithm decides to split the leaf in several branches.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#n_fold_cross_validation -->
<owl:Class rdf:about="#n_fold_cross_validation">
<rdfs:subClassOf rdf:resource="#learner_evaluation_scenario"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#nr_folds_for_pruning -->
<owl:Class rdf:about="#nr_folds_for_pruning">
<rdfs:subClassOf rdf:resource="#pruning_parameters"/>
<rdfs:comment
>The number of folds in which the training data will be split for reduced error pruning. One fold will be used for pruning, the others for training. The inverse of this number is the percentage of data set aside for pruning.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#number_of_iterations -->
<owl:Class rdf:about="#number_of_iterations">
<rdfs:subClassOf rdf:resource="#ensemble_parameters"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#operation_specification -->
<owl:Class rdf:about="#operation_specification">
<rdfs:subClassOf rdf:resource="#IAO:information_content_entity"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#optimize_F-measure_for_probabilistic_learner -->
<owl:Class rdf:about="#optimize_F-measure_for_probabilistic_learner">
<rdfs:subClassOf rdf:resource="#algorithm_function"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#perform_classification -->
<owl:Class rdf:about="#perform_classification">
<rdfs:subClassOf rdf:resource="#algorithm_function"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#perform_regression -->
<owl:Class rdf:about="#perform_regression">
<rdfs:subClassOf rdf:resource="#algorithm_function"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#post-processing_algorithm -->
<owl:Class rdf:about="#post-processing_algorithm">
<rdfs:subClassOf rdf:resource="#OntoDM:algorithm_specification"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#postprocess_induced_model -->
<owl:Class rdf:about="#postprocess_induced_model">
<rdfs:subClassOf rdf:resource="#OBI:objective"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#postprocessing_application -->
<owl:Class rdf:about="#postprocessing_application">
<rdfs:subClassOf rdf:resource="#OntoDM:algorithm_application"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#RO:preceded_by"/>
<owl:allValuesFrom rdf:resource="#inductive_algorithm_application"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#RO:preceded_by"/>
<owl:allValuesFrom rdf:resource="#postprocessing_application"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#RO:precedes"/>
<owl:allValuesFrom rdf:resource="#postprocessing_application"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#OBI:achieves_planned_objective"/>
<owl:someValuesFrom rdf:resource="#postprocess_induced_model"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#pre-processing_algorithm -->
<owl:Class rdf:about="#pre-processing_algorithm">
<rdfs:subClassOf rdf:resource="#OntoDM:algorithm_specification"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#preprocess_data -->
<owl:Class rdf:about="#preprocess_data">
<rdfs:subClassOf rdf:resource="#OBI:objective"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#preprocessing_application -->
<owl:Class rdf:about="#preprocessing_application">
<rdfs:subClassOf rdf:resource="#OntoDM:algorithm_application"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#RO:preceded_by"/>
<owl:allValuesFrom rdf:resource="#preprocessing_application"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#RO:precedes"/>
<owl:allValuesFrom rdf:resource="#preprocessing_application"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="#OBI:achieves_planned_objective"/>
<owl:someValuesFrom rdf:resource="#preprocess_data"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#pruning_confidence_threshold -->
<owl:Class rdf:about="#pruning_confidence_threshold">
<rdfs:subClassOf rdf:resource="#pruning_parameters"/>
<rdfs:comment
>TODO The confidence threshold for deciding whether a node in a decision tree should be pruned. It is part of a chi squared test? </rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#pruning_parameters -->
<owl:Class rdf:about="#pruning_parameters">
<rdfs:subClassOf rdf:resource="#DM_algorithm_parameter"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#random_sampling_with_replacement -->
<owl:Class rdf:about="#random_sampling_with_replacement">
<rdfs:subClassOf rdf:resource="#pre-processing_algorithm"/>
<rdfs:comment
>Randomly selects instances from the original dataset. It is possible that the same instance is selected twice.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#random_seed -->
<owl:Class rdf:about="#random_seed">
<rdfs:subClassOf rdf:resource="#DM_algorithm_parameter"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#reduced_error_pruning -->
<owl:Class rdf:about="#reduced_error_pruning">
<rdfs:subClassOf rdf:resource="#decision_tree_pruning"/>
<rdfs:comment
>Used to counter overfitting: yields the smallest version of the most accurate subtree. However, since it claims part of the training data, the tree's performance will suffer if not enough data is available.</rdfs:comment>
<rdfs:comment
>Reduced error pruning is a decision tree pruning technique in which a part of the training data is set aside (the validation set). The decision tree is grown on the remaining data, and afterwards, the performance of the tree is tested against another version of the tree in which branches are pruned. Greedily removes the branch that most improves the validation set accuracy.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#search_function -->
<owl:Class rdf:about="#search_function">
<rdfs:subClassOf rdf:resource="#algorithm_component"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#search_function_application -->
<owl:Class rdf:about="#search_function_application">
<rdfs:subClassOf rdf:resource="#function_application"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#search_function_implementation -->
<owl:Class rdf:about="#search_function_implementation">
<rdfs:subClassOf rdf:resource="#function_implementation"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#search_function_specification -->
<owl:Class rdf:about="#search_function_specification">
<rdfs:subClassOf rdf:resource="#function_specification"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#soft_lower_bound -->
<owl:Class rdf:about="#soft_lower_bound">
<rdfs:subClassOf rdf:resource="#lower_bound"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#soft_upper_bound -->
<owl:Class rdf:about="#soft_upper_bound">
<rdfs:subClassOf rdf:resource="#upper_bound"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#splitting_criterion -->
<owl:Class rdf:about="#splitting_criterion">
<rdfs:subClassOf rdf:resource="#algorithm_component"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#splitting_criterion_specification -->
<owl:Class rdf:about="#splitting_criterion_specification">
<rdfs:subClassOf rdf:resource="#function_specification"/>
<rdfs:comment
>A splitting criterion is a heuristic that defines which node in a decision tree should be split up next.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#stopping_criterion -->
<owl:Class rdf:about="#stopping_criterion">
<rdfs:subClassOf rdf:resource="#algorithm_component"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#stopping_criterion_specification -->
<owl:Class rdf:about="#stopping_criterion_specification">
<rdfs:subClassOf rdf:resource="#function_specification"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#stratified_sampling_with_replacement -->
<owl:Class rdf:about="#stratified_sampling_with_replacement">
<rdfs:subClassOf rdf:resource="#pre-processing_algorithm"/>
<rdfs:comment
>Randomly selects instances from the original dataset, but ensures that the class distribution is roughly the same as in the original dataset. It is possible that the same instance is selected twice.</rdfs:comment>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#upper_bound -->
<owl:Class rdf:about="#upper_bound">
<rdfs:subClassOf rdf:resource="#bound"/>
</owl:Class>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#weka_library -->
<owl:Class rdf:about="#weka_library">
<rdfs:subClassOf rdf:resource="#DM_library"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#OntoDM:datatype -->
<owl:Class rdf:about="&OntoDM;OntoDM:datatype">
<rdfs:subClassOf rdf:resource="#IAO:information_content_entity"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#boolean_datatype -->
<owl:Class rdf:about="&OntoDM;boolean_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;ordinal_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#graph_datatype -->
<owl:Class rdf:about="&OntoDM;graph_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;structured_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#integer_datatype -->
<owl:Class rdf:about="&OntoDM;integer_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;real_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#nominal_datatype -->
<owl:Class rdf:about="&OntoDM;nominal_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;non_ordered_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#non_negative_real_datatype -->
<owl:Class rdf:about="&OntoDM;non_negative_real_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;real_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#non_ordered_datatype -->
<owl:Class rdf:about="&OntoDM;non_ordered_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;primitive_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#numeric_datatype -->
<owl:Class rdf:about="&OntoDM;numeric_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;ordinal_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#ordered_datatype -->
<owl:Class rdf:about="&OntoDM;ordered_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;primitive_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#ordinal_datatype -->
<owl:Class rdf:about="&OntoDM;ordinal_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;ordered_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#primitive_datatype -->
<owl:Class rdf:about="&OntoDM;primitive_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;OntoDM:datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#real_datatype -->
<owl:Class rdf:about="&OntoDM;real_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;numeric_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#real_from_0_to_1_datatype -->
<owl:Class rdf:about="&OntoDM;real_from_0_to_1_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;real_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#sequence_datatype -->
<owl:Class rdf:about="&OntoDM;sequence_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;tree_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#set_datatype -->
<owl:Class rdf:about="&OntoDM;set_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;structured_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#structured_datatype -->
<owl:Class rdf:about="&OntoDM;structured_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;OntoDM:datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#tree_datatype -->
<owl:Class rdf:about="&OntoDM;tree_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;graph_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#tuple_datatype -->
<owl:Class rdf:about="&OntoDM;tuple_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;structured_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#vector_datatype -->
<owl:Class rdf:about="&OntoDM;vector_datatype">
<rdfs:subClassOf rdf:resource="&OntoDM;tuple_datatype"/>
</owl:Class>
<!-- http://kt.ijs.si/panovp/OntoDM/OntoDM#vector_of_primitive_datatypes -->
<owl:Class rdf:about="&OntoDM;vector_of_primitive_datatypes">
<rdfs:subClassOf rdf:resource="&OntoDM;vector_datatype"/>
</owl:Class>
<!-- http://www.w3.org/2002/07/owl#Thing -->
<owl:Class rdf:about="&owl;Thing"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Individuals
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://expdb.cs.kuleuven.be/Expose.owl#genid1249996370152018000 -->
<owl:Thing rdf:about="#genid1249996370152018000">
<rdf:type rdf:resource="&OntoDM;integer_datatype"/>
</owl:Thing>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#j48 -->
<owl:Thing rdf:about="#j48">
<rdf:type rdf:resource="#J48_algorithm_implementation"/>
</owl:Thing>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#test -->
<owl:Thing rdf:about="#test"/>
<!-- http://expdb.cs.kuleuven.be/Expose.owl#weka.j48 -->
<owl:Thing rdf:about="#weka.j48"/>
</rdf:RDF>
<!-- Generated by the OWL API (version 2.2.1.1138) http://owlapi.sourceforge.net -->
| Web Ontology Language | 4 | meissnereric/OpenML | downloads/expose.owl | [
"BSD-3-Clause"
] |
<span long_long_attribute="long_long_long_long_long_long_long_long_long_long_long_value">
text
</span>
<span long_long_attribute="long_long_long_long_long_long_long_long_long_long_long_value"></span>
<span class="a">text</span>
<span long_long_attribute="long_long_long_long_long_long_long_long_long_long_long_value">
text
</span>
<span class="a">text</span><span long_long_attribute="long_long_long_long_long_long_long_long_long_long_long_value">
text
</span>
<span class="a">text</span><span class="a">text</span><span class="a">text</span><span class="a">text</span><span class="a">text</span>
| HTML | 1 | szynkowskij/prettier | tests/format/html/bracket-same-line/inline.html | [
"MIT"
] |
REBOL [
System: "REBOL [R3] Language Interpreter and Run-time Environment"
Title: "Make REBOL host initialization code"
Rights: {
Copyright 2012 REBOL Technologies
Copyright 2012-2021 Rebol Open Source Contributors
REBOL is a trademark of REBOL Technologies
}
License: {
Licensed under the Apache License, Version 2.0
See: http://www.apache.org/licenses/LICENSE-2.0
}
Package: "REBOL 3 Host Kit"
Version: 2.0.0
Needs: 3.5.0
Author: "Carl Sassenrath"
Purpose: {
Build a single init-file from a collection of scripts.
This is used during the REBOL host startup sequence.
}
]
context [ ; wrapped to prevent colisions with other build scripts
;** Utility Functions **************************************************
out: make string! 100000
emit: func [data] [repend out data]
emit-head: func [title file] [
clear out
emit form-header/gen title file %make-host-init.reb
]
emit-end: func [/easy] [
if not easy [remove find/last out #","]
append out {^};^/}
]
;** Main Functions *****************************************************
write-c-file: func [
c-file
code
/local data comp-data comp-size
][
;print "writing C code..."
emit-head "Host custom init code" c-file
data: mold/flat/only/all code
append data newline ; BUG? why does MOLD not provide it?
insert data reduce ["; Copyright REBOL Technologies " now newline]
insert tail data make char! 0 ; zero termination required
write-generated gen-dir/gen-host-init.reb data
comp-data: compress/level data 'zlib 9
comp-size: length? comp-data
emit ["#define REB_INIT_SIZE " comp-size newline newline]
emit "const unsigned char Reb_Init_Code[REB_INIT_SIZE] = {^/^-"
;-- Convert to C-encoded string:
;print "converting..."
emit binary-to-c comp-data
emit-end/easy
write-generated c-file to-binary out
; write h-file to-binary reform [
; form-header "Host custom init header" second split-path h-file newline
; "#define REB_INIT_SIZE" comp-size newline
; "extern REBYTE Reb_Init_Code[REB_INIT_SIZE];" newline
; ]
;-- Output stats:
print-info [
"Compressed" length? data "to" comp-size "bytes:"
to-integer (comp-size / (length? data) * 100)
"percent of original"
]
return comp-size
]
load-files: func [
file-list
/local data
][
data: make block! 100
;append data [print "REBOL Host-Init"] ; for startup debug only
foreach file file-list [
file: load-file/header file
header: file/1
remove file
if header/type = 'module [
file: compose/deep [
import module
[
title: (header/title)
version: (header/version)
name: (header/name)
][
(file)
]
]
;probe file/2
]
append data file
]
data
]
code: load-files boot-host-files
;probe code
save-generated gen-dir/gen-host-init.reb code
write-c-file root-dir/src/include/host-init.h code
] ; end of context
| Rebol | 5 | semarie/rebol3-oldes | make/tools/make-host-init.reb | [
"Apache-2.0"
] |
QT.3dextras_private.VERSION = 5.9.4
QT.3dextras_private.name = Qt3DExtras
QT.3dextras_private.module =
QT.3dextras_private.libs = $$QT_MODULE_LIB_BASE
QT.3dextras_private.includes = $$QT_MODULE_INCLUDE_BASE/Qt3DExtras/5.9.4 $$QT_MODULE_INCLUDE_BASE/Qt3DExtras/5.9.4/Qt3DExtras
QT.3dextras_private.frameworks =
QT.3dextras_private.depends = core_private 3dcore_private 3drender_private 3dextras
QT.3dextras_private.uses =
QT.3dextras_private.module_config = v2 internal_module
QT.3dextras_private.enabled_features =
QT.3dextras_private.disabled_features =
| QMake | 2 | PLohrmannAMD/renderdoc | qrenderdoc/3rdparty/qt/x64/mkspecs/modules/qt_lib_3dextras_private.pri | [
"MIT"
] |
typedef int TYPE;
@class KLASS;
| C | 1 | lwhsu/swift | test/ClangImporter/MixedSource/Inputs/defer-supermodule-import/Some.framework/Headers/Some.h | [
"Apache-2.0"
] |
SUMMARY = "Start Jupyter at system boot"
SRC_URI = "file://start-jupyter.sh \
file://jupyter-setup.sh \
file://jupyter_notebook_config.py \
"
LICENSE = "Proprietary"
LIC_FILES_CHKSUM = "file://start-jupyter.sh;beginline=2;endline=2;md5=597e9d1b49e840aa57b0269b87bac09e"
RDEPENDS_${PN} += " \
python3-jupyter \
"
inherit update-rc.d
INITSCRIPT_PACKAGES = "${PN}"
INITSCRIPT_NAME = "jupyter-setup.sh"
INITSCRIPT_PARAMS = "start 99 S ."
FILES_${PN} += "/usr/sbin/start-jupyter.sh /home/root/.jupyter/jupyter_notebook_config.py"
S = "${WORKDIR}"
do_install() {
install -d ${D}${INIT_D_DIR}
install -d ${D}/usr
install -d ${D}/usr/sbin
install -d ${D}/home
install -d ${D}/home/root
install -d ${D}/home/root/.jupyter
install -m 0755 ${WORKDIR}/jupyter-setup.sh ${D}${INIT_D_DIR}/jupyter-setup.sh
install -m 0755 ${WORKDIR}/start-jupyter.sh ${D}/usr/sbin/start-jupyter.sh
install -m 0600 ${WORKDIR}/jupyter_notebook_config.py ${D}/home/root/.jupyter
}
| BitBake | 3 | michalkouril/PYNQ | sdbuild/boot/meta-pynq/recipes-filesystem/startup/jupyter-startup_1.0.bb | [
"BSD-3-Clause"
] |
fun s2i s =
case read _ s of
None => 0
| Some n => n
fun s2f s =
case read _ s of
None => 0.0
| Some n => n
fun s2s s =
case read _ s of
None => "Error"
| Some s => s
fun s2b s =
case read _ s of
None => False
| Some b => b
fun main () : transaction page = return <html><body>
Error = {cdata (show _ (s2i "Error"))}<br/>
3 = {cdata (show _ (s2i "+3"))}<br/>
<br/>
Error = {cdata (show _ (s2f "Error"))}<br/>
98.76 = {cdata (show _ (s2f "98.76"))}<br/>
<br/>
Error = {cdata (show _ (s2b "Error"))}<br/>
False = {cdata (show _ (s2b "false"))}<br/>
True = {cdata (show _ (s2b "trUE"))}<br/>
<br/>
Hi = {cdata (s2s "Hi")}<br/>
</body></html>
| UrWeb | 4 | apple314159/urweb | tests/fromString.ur | [
"BSD-3-Clause"
] |
:- object(json_graph).
:- info([
version is 0:0:0,
author is 'Paulo Moura',
date is 2019-02-18,
comment is 'Predicates for exporting graphs in the JSON graph format.'
]).
/*
graph(Directed, Type, Label, Metadata).
node(Id, Type, Label, Metadata).
edge(Source, Relation, Target, Directed, Label, Metadata).
graph(GraphId, Directed, Type, Label, Metadata).
node(GraphId, Id, Type, Label, Metadata).
edge(GraphId, Source, Relation, Target, Directed, Label, Metadata).
*/
:- public(graph_to_string/2).
:- mode(graph_to_string(+object_identifier, -list(character_code)), one).
:- info(graph_to_string/2, [
comment is 'Returns a JSON graph representation, as a string, of the graph hold by the data object',
arguments is [
'DataObject' - 'Object defining the graph predicates graph/4, node/4, and edge/6.',
'String' - 'String representatino of the JSON graph.'
]
]).
:- public(write_graph_to_stream/2).
:- mode(write_graph_to_stream(+object_identifier, +stream_or_alias), one).
:- info(write_graph_to_stream/2, [
comment is 'Writes to the given stream the JSON graph representation of the graph hold by the data object',
arguments is [
'DataObject' - 'Object defining the graph predicates graph/4, node/4, and edge/6.',
'Stream' - 'Output stream.'
]
]).
:- public(graphs_to_string/2).
:- mode(graphs_to_string(+object_identifier, -list(character_code)), one).
:- info(graphs_to_string/2, [
comment is 'Returns a JSON graph representation, as a string, of the graphs hold by the data object',
arguments is [
'DataObject' - 'Object defining the graphs predicates graph/5, node/5, and edge/7.',
'String' - 'String representatino of the JSON graph.'
]
]).
:- public(write_graphs_to_stream/2).
:- mode(write_graphs_to_stream(+object_identifier, +stream_or_alias), one).
:- info(write_graphs_to_stream/2, [
comment is 'Description',
arguments is [
'DataObject' - 'Object defining the graphs predicates graph/5, node/5, and edge/7.',
'Stream' - 'Output stream.'
]
]).
graph_to_string(DataObject, String) :-
output_graph(DataObject, Graph),
json::encode(Graph, String).
write_graph_to_stream(DataObject, Stream) :-
graph_to_string(DataObject, String),
write_codes(String, Stream).
output_graph(DataObject, {graph:{Graph}}) :-
DataObject::graph(Directed, Type, Label, Metadata),
Graph = (
directed:Directed,
type:Type,
label:Label,
metadata:{Metadata},
nodes:Nodes,
edges:Edges
),
output_graph_nodes(DataObject, Nodes),
output_graph_edges(DataObject, Edges).
output_graph_nodes(DataObject, Nodes) :-
findall(
{id:Id, type:Type, label:Label, metadata:{Metadata}},
DataObject::node(Id, Type, Label, Metadata),
Nodes
).
output_graph_edges(DataObject, Edges) :-
findall(
{source:Source, relation:Relation, target:Target, directed:Directed, label:Label, metadata:{Metadata}},
DataObject::edge(Source, Relation, Target, Directed, Label, Metadata),
Edges
).
graphs_to_string(DataObject, String) :-
output_graphs(DataObject, Graphs),
json::encode(Graphs, String).
write_graphs_to_stream(DataObject, Stream) :-
graphs_to_string(DataObject, String),
write_codes(String, Stream).
output_graphs(DataObject, {graphs:Graphs}) :-
findall(
Graph,
output_graphs_graph(DataObject, Graph),
Graphs
).
output_graphs_graph(DataObject, {Graph}) :-
DataObject::graph(GraphId, Directed, Type, Label, Metadata),
Graph = (
directed:Directed,
type:Type,
label:Label,
metadata:{Metadata},
nodes:Nodes,
edges:Edges
),
output_graph_nodes(DataObject, GraphId, Nodes),
output_graph_edges(DataObject, GraphId, Edges).
output_graph_nodes(DataObject, GraphId, Nodes) :-
findall(
{id:Id, type:Type, label:Label, metadata:{Metadata}},
DataObject::node(GraphId, Id, Type, Label, Metadata),
Nodes
).
output_graph_edges(DataObject, GraphId, Edges) :-
findall(
{source:Source, relation:Relation, target:Target, directed:Directed, label:Label, metadata:{Metadata}},
DataObject::edge(GraphId, Source, Relation, Target, Directed, Label, Metadata),
Edges
).
write_codes([], _).
write_codes([Code| Codes], Stream) :-
put_code(Stream, Code),
write_codes(Codes, Stream).
:- end_object.
| Logtalk | 4 | PaulBrownMagic/logtalk3 | library/json_graph_2.lgt | [
"Apache-2.0"
] |
body
min-width: 100px
min-height: 100%
font-family: $typography-font-family
-ms-text-size-adjust: 100%
-webkit-text-size-adjust: 100%
-webkit-font-smoothing: antialiased
-moz-osx-font-smoothing: grayscale
font-smoothing: antialiased
line-height: $body-line-height
font-size: $body-font-size
@each $heading, $value in $h-tags
#{$heading}
font-size: map-get($value, "size")
font-weight: map-get($value, "weight")
line-height: map-get($value, "line-height")
letter-spacing: map-get($value, "letter-spacing")
p
margin: 0 0 map-get(map-get($spaces, "md"), "y")
.text-
@each $heading, $value in $headings
&#{$heading}
font-size: map-get($value, "size")
font-weight: map-get($value, "weight")
line-height: map-get($value, "line-height")
letter-spacing: map-get($value, "letter-spacing")
&uppercase
text-transform: uppercase
&lowercase
text-transform: lowercase
&capitalize
text-transform: capitalize
¢er
text-align: center
&left
text-align: left
&right
text-align: right
&justify
text-align: justify
hyphens: auto
&italic
font-style: italic
&bold
font-weight: bold
&no-wrap
white-space: nowrap
&strike
text-decoration: line-through
@each $weight, $value in $text-weights
&weight-#{$weight}
font-weight: $value
small
font-size: 80%
big
font-size: 170%
sub
bottom: -.25em
sup
top: -.5em
| Sass | 4 | ygyg70/quasar | ui/src/css/core/typography.sass | [
"MIT"
] |
package com.baeldung.bitset;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Level;
import org.openjdk.jmh.annotations.Mode;
import org.openjdk.jmh.annotations.Param;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.Setup;
import org.openjdk.jmh.annotations.State;
import java.util.BitSet;
import java.util.concurrent.ThreadLocalRandom;
@State(Scope.Benchmark)
@BenchmarkMode(Mode.Throughput)
public class VectorOfBitsBenchmark {
private boolean[] array;
private BitSet bitSet;
@Param({"100", "1000", "5000", "50000", "100000", "1000000", "2000000", "3000000", "5000000",
"7000000", "10000000", "20000000", "30000000", "50000000", "70000000", "1000000000"})
public int size;
@Setup(Level.Trial)
public void setUp() {
array = new boolean[size];
for (int i = 0; i < array.length; i++) {
array[i] = ThreadLocalRandom.current().nextBoolean();
}
bitSet = new BitSet(size);
for (int i = 0; i < size; i++) {
bitSet.set(i, ThreadLocalRandom.current().nextBoolean());
}
}
@Benchmark
public boolean getBoolArray() {
return array[ThreadLocalRandom.current().nextInt(size)];
}
@Benchmark
public boolean getBitSet() {
return bitSet.get(ThreadLocalRandom.current().nextInt(size));
}
@Benchmark
public void setBoolArray() {
int index = ThreadLocalRandom.current().nextInt(size);
array[index] = true;
}
@Benchmark
public void setBitSet() {
int index = ThreadLocalRandom.current().nextInt(size);
bitSet.set(index);
}
@Benchmark
public int cardinalityBoolArray() {
int sum = 0;
for (boolean b : array) {
if (b) {
sum++;
}
}
return sum;
}
@Benchmark
public int cardinalityBitSet() {
return bitSet.cardinality();
}
}
| Java | 4 | DBatOWL/tutorials | jmh/src/main/java/com/baeldung/bitset/VectorOfBitsBenchmark.java | [
"MIT"
] |
/**
* ARPHandler
*
* Handle all ARP subsystem and passes only IP packets on output 1.
* Similarly, IP packets should be passed in input 1 and ARPHandler will
* take care of the Ethernet encapsulation
*
* input[0] should receive packets from the device, and output[0] connected
* directly to the same device.
*
* Eg. :
* FromDPDKDevice(0) -> ARPHandler(10.0.0.2, 5B:EC:DE:27:A8:B2);
* arp[0] -> ToDPDKDevice(0);
* arp[1] -> Print("IP PACKET") -> SetIPAddress(10.0.0.1) -> arp[1];
*/
elementclass ARPHandler { $ip, $mac |
input[0] -> c :: Classifier(12/0806 20/0001, // ARP request
12/0806 20/0002, // ARP response
12/0800); // IP packets
c[1] -> [1]arpQ :: ARPQuerier($ip, $mac) -> output[1];
c[0] -> [0]arpR :: ARPResponder($ip $mac);
arpQ->output[0];
c[2]->output[1];
input[1] -> [0]arpQ;
}
| Click | 4 | BorisPis/asplos22-nicmem-fastclick | conf/lib/classifier.click | [
"BSD-3-Clause-Clear"
] |
// https://w3c.github.io/DOM-Parsing/#the-innerhtml-mixin
interface mixin InnerHTML {
[CEReactions] attribute [LegacyNullToEmptyString] DOMString innerHTML;
};
Element includes InnerHTML;
ShadowRoot includes InnerHTML;
| WebIDL | 4 | Unique184/jsdom | lib/jsdom/living/domparsing/InnerHTML.webidl | [
"MIT"
] |
type Greeter
greeting–phrase = "Greetings,"
-- greeting–phrase Str = "Greetings," -- a more explicit way
init() ->
-- do nothing - just keep defaults
init(@greeting–phrase) ->
-- do nothing here. Sugar for assigning a member did all we need!
-- above could have been written more verbose; in many different levels.
-- def init(greeting–phrase Str) ->
-- @greeting–phrase = greeting–phrase
-- end–def
-- define a method that greets someone
greet(who–or–what) ->! -- returns nothing
say make–greeting who–or–what
-- say(make–greeting(who–or–what)) -- parentheses or "juxtapos-calls"
-- a method that constructs the message
make–greeting(who–or–what) ->
"{@greeting–phrase} {who–or–what}" -- returns last expression
end -- you can explicitly end code block at will
-- All on one line works too of course:
-- make–greeting(who–or–what) -> "{{@greeting–phrase}} {{who–or–what}}"
end–type -- you can be even more explicit about end–tokens at will
type HelloWorldishGreeter < Greeter
greeting–phrase = "Hello"
end
greeter = HelloWorldishGreeter("Goodbye cruel")
greeter.greet "World" -- => "Goodbye cruel World"
-- greeter.greet_someone "World" -- separator (-|–|_) completely interchangable
| Ox | 4 | ozra/onyx-lang | spec/onyx-alpha-throwups/greet-example.ox | [
"Apache-2.0"
] |
export * from "./validate"
export * from "./test-plugin-options-schema"
export * from "./joi"
export * from "./node-api-is-supported"
| TypeScript | 1 | waltercruz/gatsby | packages/gatsby-plugin-utils/src/index.ts | [
"MIT"
] |
const DEFAULT_DELIM = ','
const DEFAULT_QUOTE = '"'
interface CharReader {
readChar()
}
class lexer {
let source
let curChar
let peekChar
let delimiter = DEFAULT_DELIM
let quote = DEFAULT_QUOTE
const init = fn(file) {
if ! file implements CharReader {
throw "f must be a CharReader"
}
this.source = file
this.readChar()
this.readChar()
}
const setDelimiter = fn(c) {
this.delimiter = c
}
const setQuote = fn(c) {
this.quote = c
}
const readChar = fn() {
this.curChar = this.peekChar
this.peekChar = this.source.readChar()
}
const readQuotedString = fn() {
let str = ""
this.readChar() // Move pass open quote
loop {
if this.curChar == this.quote {
if this.peekChar == this.quote {
this.readChar()
} else {
break
}
}
str += this.curChar
this.readChar()
}
this.readChar() // Move pass close quote
return str
}
const readToDelim = fn() {
let str = ""
while this.curChar != this.delimiter and this.curChar != "\n" {
str += this.curChar
this.readChar()
}
return str
}
const readField = fn() {
if this.curChar == this.quote: return this.readQuotedString()
return this.readToDelim()
}
const readRecord = fn() {
if isNull(this.curChar): return nil
let fields = []
loop {
const field = this.readField()
fields = push(fields, field)
if isNull(this.curChar): break
if this.curChar == this.delimiter: this.readChar()
if this.curChar == "\n" {
this.readChar()
break
}
}
return fields
}
}
class fileReader {
let l
const init = fn(f) {
this.l = new lexer(f)
}
const readRecord = fn() {
return this.l.readRecord()
}
const readAllRecords = fn() {
let records = [];
let record = this.l.readRecord()
while !isNull(record) {
records = push(records, record)
record = this.l.readRecord()
}
return records
}
const delimiter = fn(c) {
this.l.setDelimiter(c)
}
const quote = fn(c) {
this.l.setQuote(c)
}
}
return {
"fileReader": fileReader,
"CharReader": CharReader,
}
| Inform 7 | 4 | lfkeitel/nitrogen | nitrogen/std/encoding/csv/decode.ni | [
"BSD-3-Clause"
] |
.style {
border: var(#fff);
border: var(calc(10px + 10px));
border: var(90rem);
}
| CSS | 0 | kitsonk/swc | css/parser/tests/errors/rome/invalid/.var/input.css | [
"Apache-2.0",
"MIT"
] |
Red [
Title: "GPIO port scheme"
Author: "Nenad Rakocevic"
File: %GPIO.red
Tabs: 4
Rights: "Copyright (C) 2011-2019 Red Foundation. All rights reserved."
License: {
Distributed under the Boost Software License, Version 1.0.
See https://github.com/red/red/blob/master/BSL-License.txt
}
Notes: {
For Raspberry Pi boards only for now.
Low-level GPIO code largely inspired by http://wiringpi.com/
}
]
gpio-scheme: context [
#system [
gpio: context [
#import [
LIBC-file cdecl [
mmap: "mmap" [
address [byte-ptr!]
size [integer!]
protection [integer!]
flags [integer!]
fd [integer!]
offset [integer!]
return: [byte-ptr!]
]
munmap: "munmap" [
address [byte-ptr!]
size [integer!]
return: [integer!]
]
]
]
#define RPI_GPIO_PERIPH_RPI23 3F000000h ;-- RPi 2 & 3 peripherals
#define RPI_GPIO_PERIPH_RPI01 20000000h ;-- RPi zero & 1 peripherals
#define RPI_GPIO_OFFSET 00200000h
#define RPI_GPIO_PWM 0020C000h
#define RPI_GPIO_CLOCK_BASE 00101000h
#define RPI_BCM_PASSWORD 5A000000h
#define RPI_PWMCLK_CNTL 40
#define RPI_PWMCLK_DIV 41
#enum gpio-pins! [
GPFSEL0: 00h
GPFSEL1: 01h
GPFSEL2: 02h
GPFSEL3: 03h
GPFSEL4: 04h
GPFSEL5: 05h
GPSET0: 07h
GPSET1: 08h
GPCLR0: 0Ah
GPCLR1: 0Bh
GPLEV0: 0Dh
GPLEV1: 0Eh
GPEDS0: 10h
GPEDS1: 11h
GPREN0: 13h
GPREN1: 14h
GPFEN0: 16h
GPFEN1: 17h
GPHEN0: 19h
GPHEN1: 1Ah
GPLEN0: 1Ch
GPLEN1: 1Dh
GPAREN0: 1Fh
GPAREN1: 20h
GPAFEN0: 22h
GPAFEN1: 23h
GPPUD: 25h
GPPUDCLK0: 26h
GPPUDCLK1: 27h
]
#enum pin-modes! [
MODE_INPUT: 0
MODE_OUTPUT
MODE_PWM_OUTPUT
MODE_GPIO_CLOCK
MODE_4 ;-- not defined yet
MODE_5
MODE_6
]
#enum pull-updown! [
PUD_OFF: 0
PUD_DOWN
PUD_UP
]
#enum pin-values! [
LOW: 0
HIGH
]
#enum pwm-control! [
PWM_CONTROL: 0
PWM_STATUS: 1
PWM0_RANGE: 4
PWM0_DATA: 5
PWM1_RANGE: 8
PWM1_DATA: 9
]
#enum pwm-modes! [
PWM0_MS_MODE: 0080h ;-- Run in MS mode
PWM0_USEFIFO: 0020h ;-- Data from FIFO
PWM0_REVPOLAR: 0010h ;-- Reverse polarity
PWM0_OFFSTATE: 0008h ;-- Ouput Off state
PWM0_REPEATFF: 0004h ;-- Repeat last value if FIFO empty
PWM0_SERIAL: 0002h ;-- Run in serial mode
PWM0_ENABLE: 0001h ;-- Channel Enable
PWM1_MS_MODE: 8000h ;-- Run in MS mode
PWM1_USEFIFO: 2000h ;-- Data from FIFO
PWM1_REVPOLAR: 1000h ;-- Reverse polarity
PWM1_OFFSTATE: 0800h ;-- Ouput Off state
PWM1_REPEATFF: 0400h ;-- Repeat last value if FIFO empty
PWM1_SERIAL: 0200h ;-- Run in serial mode
PWM1_ENABLE: 0100h ;-- Channel Enable
]
regions: [RPI_GPIO_OFFSET RPI_GPIO_PWM RPI_GPIO_CLOCK_BASE]
gpio-to-FSEL: #{
00 00 00 00 00 00 00 00 00 00
01 01 01 01 01 01 01 01 01 01
02 02 02 02 02 02 02 02 02 02
03 03 03 03 03 03 03 03 03 03
04 04 04 04 04 04 04 04 04 04
05 05 05 05 05 05 05 05 05 05
}
gpio-to-shift: #{
00 03 06 09 0C 0F 12 15 18 1B
00 03 06 09 0C 0F 12 15 18 1B
00 03 06 09 0C 0F 12 15 18 1B
00 03 06 09 0C 0F 12 15 18 1B
00 03 06 09 0C 0F 12 15 18 1B
00 03 06 09 0C 0F 12 15 18 1B
}
debug?: no
set-mode: func [
base [int-ptr!]
pwm [int-ptr!]
clk [int-ptr!]
pin [integer!]
mode [integer!]
/local
GPFSEL [int-ptr!]
index [integer!]
shift [integer!]
mask [integer!]
bits [integer!]
idx [integer!]
][
if debug? [probe ["---- PIN: " pin ", MODE: " mode ", BASE: " base ", PWM: " pwm ", CLK: " clk]]
idx: pin + 1
index: as-integer gpio-to-FSEL/idx
shift: as-integer gpio-to-shift/idx
GPFSEL: base + index
mask: GPFSEL/value and not (7 << shift)
bits: either mode <> MODE_PWM_OUTPUT [mode][
switch pin [
18 19 [2] ;-- FSEL_ALT5
12 13 40 41 45 [4] ;-- FSEL_ALT0
default [probe "invalid PWM pin" 0] ;@@ needs to return or throw an error!
]
]
GPFSEL/value: bits << shift or mask
if mode = MODE_PWM_OUTPUT [
platform/usleep 110
pwm-set-mode pwm 1 ;-- PWM_MODE_BAL
pwm-set-range pwm 1024
pwm-set-clock pwm clk 32 ;-- 600KHz, starts the PWM
]
]
set: func [
base [int-ptr!]
pin [integer!]
high? [logic!]
/local
p [int-ptr!]
index [integer!]
bit [integer!]
mode [integer!]
][
index: pin >> 5
bit: 1 << (pin and 31)
mode: either high? [GPSET0][GPCLR0]
p: base + mode + index
p/value: bit
]
get: func [
base [int-ptr!]
pin [integer!]
return: [integer!]
/local
p [int-ptr!]
bit [integer!]
][
bit: 1 << (pin and 31)
p: base + GPLEV0
either p/value and bit <> 0 [1][0]
]
set-pull: func [
base [int-ptr!]
pin [integer!]
pud [integer!]
/local
p [int-ptr!]
][
p: base + GPPUD
p/value: pud and 3
platform/usleep 5
p: base + GPPUDCLK0
p/value: 1 << (pin and 31)
platform/usleep 5
p: base + GPPUD
p/value: 0
platform/usleep 5
p: base + GPPUDCLK0
p/value: 0
platform/usleep 5
]
set-pwm: func [
pwm [int-ptr!]
pin [integer!]
value [integer!]
/local
p [int-ptr!]
port [integer!]
][
port: either pin and 1 = 0 [PWM0_DATA][PWM1_DATA]
p: pwm + port
p/value: value
]
;-- Select the native "balanced" mode, or standard mark:space mode
pwm-set-mode: func [
pwm [int-ptr!]
mode [integer!] ;-- 0: PWM_MODE_MS, 1: PWM_MODE_BAL
/local
p [int-ptr!]
bits [integer!]
][
bits: PWM0_ENABLE or PWM1_ENABLE
if zero? mode [bits: bits or PWM0_MS_MODE or PWM1_MS_MODE]
p: pwm + PWM_CONTROL
p/value: bits
]
pwm-set-range: func [
pwm [int-ptr!]
range [integer!]
/local
p [int-ptr!]
][
p: pwm + PWM0_RANGE
p/value: range
platform/usleep 10
p: pwm + PWM1_RANGE
p/value: range
platform/usleep 10
]
pwm-set-clock: func [
pwm [int-ptr!]
clk [int-ptr!]
divisor [integer!]
/local
p [int-ptr!]
c [int-ptr!]
cd [int-ptr!]
saved [integer!]
][
divisor: divisor and 4095
p: pwm + PWM_CONTROL
saved: p/value
p/value: 0 ;-- stop PWM
c: clk + RPI_PWMCLK_CNTL
c/value: RPI_BCM_PASSWORD or 1 ;-- stop PWM clock
platform/usleep 110
while [c/value and 80h <> 0][platform/usleep 1]
cd: clk + RPI_PWMCLK_DIV
cd/value: RPI_BCM_PASSWORD or (divisor << 12)
c/value: RPI_BCM_PASSWORD or 11h ;-- start PWM clock
p/value: saved
]
]
]
models: [
;-- Name ---------- Mapping --
"Model A" old
"Model B" old
"Model A+" old
"Model B+" old
"Pi 2" new
"Alpha" old
"CM" old
"Unknown07" new
"Pi 3" new
"Pi Zero" old
"CM3" new
"Unknown11" new
"Pi Zero-W" old
"Pi 3B+" new
"Pi 3A+" new
"Unknown15" new
"CM3+" new
"Unknown17" new
"Unknown18" new
"Unknown19" new
]
gpio.open: routine [
state [block!]
old? [logic!]
/local
handle [red-handle!]
fd [integer!]
model [integer!]
base [byte-ptr!]
i [integer!]
][
fd: platform/io-open "/dev/mem" 00101002h ;-- O_RDWR or O_SYNC
either fd < 0 [
fd: platform/io-open "/dev/gpiomem" 00101002h ;-- O_RDWR or O_SYNC
either fd < 0 [exit][model: 0] ;-- relative addressing
][
model: either old? [RPI_GPIO_PERIPH_RPI01][RPI_GPIO_PERIPH_RPI23] ;-- absolute addressing
]
handle: as red-handle! block/rs-head state
handle/header: TYPE_HANDLE
handle/value: fd
i: 1
until [
base: gpio/mmap null 4096 MMAP_PROT_RW MMAP_MAP_SHARED fd model or gpio/regions/i
handle: handle + 1
if -1 <> as-integer base [
handle/header: TYPE_HANDLE
handle/value: as-integer base
]
i: i + 1
i > size? gpio/regions
]
]
gpio.set-mode: routine [base [handle!] pwm [handle!] clk [handle!] pin [integer!] mode [integer!]][
gpio/set-mode as int-ptr! base/value as int-ptr! pwm/value as int-ptr! clk/value pin mode - 1
]
gpio.set: routine [base [handle!] pin [integer!] value [integer!]][
gpio/set as int-ptr! base/value pin as-logic value
]
gpio.set-pull: routine [base [handle!] pin [integer!] value [integer!]][
gpio/set-pull as int-ptr! base/value pin value - 1
]
gpio.set-pwm: routine [pwm [handle!] pin [integer!] value [integer!]][
gpio/set-pwm as int-ptr! pwm/value pin value
]
gpio.get: routine [base [handle!] pin [integer!] return: [integer!]][
gpio/get as int-ptr! base/value pin
]
gpio.close: routine [
state [block!]
/local
handle [red-handle!]
][
handle: as red-handle! (block/rs-head state) + 3
loop 3 [
if zero? gpio/munmap as byte-ptr! handle/value 4096 [handle/header: TYPE_NONE]
handle: handle - 1
]
if zero? platform/io-close handle/value [handle/header: TYPE_NONE]
]
gpio.pause: routine [us [integer!]][platform/usleep us * 1000]
fade: function [p [port!] pin [integer!] from [integer!] _to [integer!] delay [integer! time!]][
delay: delay / absolute delta: _to - i: from
looping?: pick [[i <= _to][_to <= i]] positive? step: sign? delta
do [
while looping? [
insert p [set-pwm pin i]
wait delay
i: i + step
]
]
]
;--- Port actions ---
open: func [port /local state info revision model err i][
unless attempt [info: read %/proc/cpuinfo][
cause-error 'access 'cannot-open ["cannot access /proc/cpuinfo"]
]
parse/case info [thru "Revision" thru #":" any #" " copy revision to lf]
revision: to-integer debase/base revision 16
model: FFh << 4 and revision >> 4
;-- fd (handle!), base (handle!), pwm (handle!), clk (handle!)
state: port/state: copy [none none none none]
gpio.open state 'old = pick models model + 1 * 2 ;-- model is 0-based
err: [
"failed to open /dev/mem and /dev/gpiomem, retry with `sudo`"
"base mmap() failed"
"pwm mmap() failed"
"clk mmap() failed"
]
repeat i 4 [unless state/:i [cause-error 'access 'cannot-open [err/:i]]]
]
insert: func [port data [block!] /local state base modes value pulls pos m list v p f t expr int-expr][
unless all [block? state: port/state parse state [4 handle!]][
cause-error 'access 'not-open ["port/state is invalid"]
]
expr: [m: [word! | path!] (v: get m/1) | paren! (v: do m/1)]
int-expr: [m: integer! (v: m/1) | expr [if (not integer? v) fail | none]]
modes: [['in | 'input] (m: 1) | ['out | 'output] (m: 2) | 'pwm (m: 3)]
value: [m: logic! | ['on | 'high] (m: yes) | ['off | 'low] (m: no) | m: integer!]
pulls: ['pull-off (m: 1) | 'pull-down (m: 2) | 'pull-up (m: 3)]
duty: [
[m: percent! (v: m/1) | int-expr]
[if (not integer? m: either percent? v [to integer! 1024 * v][v]) fail | none]
]
base: state/2
list: none
unless parse data [
some [pos:
'set-mode int-expr modes (gpio.set-mode base state/3 state/4 v m)
| 'set int-expr value (gpio.set base v make integer! m)
| pulls (p: m) int-expr (gpio.set-pull base v p)
| 'set-pwm int-expr (p: v) duty (gpio.set-pwm state/3 p m)
| 'get int-expr (d: gpio.get base v
switch/default type?/word list [
block! [append list d]
none! [list: d]
][append list: reduce [list] d]
)
| 'fade int-expr (p: v)
'from int-expr (f: v)
'to int-expr (t: v)
[m: time! (v: m/1) | expr [if (not time? v) fail | none]]
(fade port p f t v)
| 'pause [integer! | float!] (
gpio.pause either float? v: pos/2 [to-integer v * 1000][v]
)
]
][cause-error 'access 'invalid-cmd [data]]
port/data: list
]
close: func [port /local state err i][
gpio.close state: port/state
err: [
"failed to close /dev/gpiomem"
"base mmunap() failed"
"pwm mmunap() failed"
"clk mmunap() failed"
]
repeat i 4 [if handle? state/:i [cause-error 'access 'cannot-close [err/:i]]]
]
]
register-scheme make system/standard/scheme [
name: 'GPIO
title: "GPIO access for Raspberry Pi boards"
actor: gpio-scheme
]
#example [
p: open gpio://
LED-green: 18
LED-red: 4
insert p [set-mode (LED-green) pwm]
delay: 0:0:3
insert p [fade LED-green from 0 to 500 delay]
insert p [fade LED-green from 500 to 0 delay]
insert p [
set-pwm LED-green 50%
pause 1.0
set-pwm LED-green 30%
pause 1.0
set-pwm LED-green 15%
pause 1.0
set-pwm LED-green 0%
pause 1.0
set-mode LED-green in
]
insert p [set-mode LED-green out]
loop 20 [
insert p [set LED-green on]
wait 0.1
insert p [set LED-green off]
wait 0.1
]
insert p [set-mode 4 out]
loop 20 [
insert p [set 4 on]
wait 0.1
insert p [set 4 off]
wait 0.1
]
insert p [
set-mode 17 in
pull-down 17
]
loop 10 [
insert p [get 17]
probe p/data
wait 0.5
]
close p
]
| Red | 5 | GalenIvanov/red | environment/schemes/GPIO.red | [
"BSL-1.0",
"BSD-3-Clause"
] |
\documentclass{article}
\usepackage{agda}
\begin{document}
\begin{code}
{-# OPTIONS --allow-unsolved-metas #-}
postulate
F : {_ : Set} → Set
A : Set
A = F
\end{code}
\end{document}
| Literate Agda | 3 | shlevy/agda | test/LaTeXAndHTML/succeed/Issue2474.lagda | [
"BSD-3-Clause"
] |
import io/File
import Module
import ../frontend/[Token, AstBuilder]
/**
* An ooc module importing another.
*
* There are two types of imports: tight and loose. Tight
* imports are those who directly access data structures that
* are defind in other modules.
*
* By default, an import is loose, until proven tight. As soon
* as a module is proven guilty of accessing another module's field directly
* (instead of passing via a getter), or subclassing another module's type,
* it becomes a tight import.
*
* Note that all this is C detailery, and it shouldn't even appear in
* a pure ooc ast, but such is the burden of maintaining rock.
*/
Import: class {
path: String
module : Module = null
isTight: Bool { get set } // tight imports include '.h', loose imports include '-fwd.h'
token: Token
// can be set to limit where an import can be found
sourcePathElement: String
init: func ~imp (=path, =token) {
this path = this path replaceAll('/', File separator)
this isTight = false
if (path contains?("..")) {
// relative path, can only be contained in same sourcepath
// as 'importing' module
sourcePathElement = token module pathElement
}
}
setModule: func(=module) {
if(module != null) {
module timesImported += 1
}
}
getModule: func -> Module {
if(module == null && token module != null) {
(path, impPath, impElement) := AstBuilder getRealImportPath(this, token module, token module params)
if(impPath != null) {
setModule(AstBuilder cache get(impPath path))
}
}
module
}
getPath: func -> String { path }
}
| ooc | 5 | fredrikbryntesson/launchtest | source/rock/middle/Import.ooc | [
"MIT"
] |
# This file is a part of Julia. License is MIT: https://julialang.org/license
using Test, Libdl, OpenBLAS_jll
if Base.USE_BLAS64
macro blasfunc(x)
return Expr(:quote, Symbol(x, "64_"))
end
else
macro blasfunc(x)
return Expr(:quote, x)
end
end
@testset "OpenBLAS_jll" begin
@test dlsym(OpenBLAS_jll.libopenblas_handle, @blasfunc(openblas_set_num_threads); throw_error=false) != nothing
end
| Julia | 3 | jonas-schulze/julia | stdlib/OpenBLAS_jll/test/runtests.jl | [
"MIT"
] |
struct Slice(T)
protected def self.intro_sort!(a, n)
return if n < 2
quick_sort_for_intro_sort!(a, n, Math.log2(n).to_i * 2)
insertion_sort!(a, n)
end
protected def self.quick_sort_for_intro_sort!(a, n, d)
while n > 16
if d == 0
heap_sort!(a, n)
return
end
d -= 1
center_median!(a, n)
c = partition_for_quick_sort!(a, n)
quick_sort_for_intro_sort!(c, n - (c - a), d)
n = c - a
end
end
protected def self.heap_sort!(a, n)
(n // 2).downto 0 do |p|
heapify!(a, p, n)
end
while n > 1
n -= 1
a.value, a[n] = a[n], a.value
heapify!(a, 0, n)
end
end
protected def self.heapify!(a, p, n)
v, c = a[p], p
while c < (n - 1) // 2
c = 2 * (c + 1)
c -= 1 if cmp(a[c], a[c - 1]) < 0
break unless cmp(v, a[c]) <= 0
a[p] = a[c]
p = c
end
if n & 1 == 0 && c == n // 2 - 1
c = 2 * c + 1
if cmp(v, a[c]) < 0
a[p] = a[c]
p = c
end
end
a[p] = v
end
protected def self.center_median!(a, n)
b, c = a + n // 2, a + n - 1
if cmp(a.value, b.value) <= 0
if cmp(b.value, c.value) <= 0
return
elsif cmp(a.value, c.value) <= 0
b.value, c.value = c.value, b.value
else
a.value, b.value, c.value = c.value, a.value, b.value
end
elsif cmp(a.value, c.value) <= 0
a.value, b.value = b.value, a.value
elsif cmp(b.value, c.value) <= 0
a.value, b.value, c.value = b.value, c.value, a.value
else
a.value, c.value = c.value, a.value
end
end
protected def self.partition_for_quick_sort!(a, n)
v, l, r = a[n // 2], a + 1, a + n - 1
loop do
while cmp(l.value, v) < 0
l += 1
end
r -= 1
while cmp(v, r.value) < 0
r -= 1
end
return l unless l < r
l.value, r.value = r.value, l.value
l += 1
end
end
protected def self.insertion_sort!(a, n)
(1...n).each do |i|
l = a + i
v = l.value
p = l - 1
while l > a && cmp(v, p.value) < 0
l.value = p.value
l, p = p, p - 1
end
l.value = v
end
end
protected def self.intro_sort!(a, n, comp)
return if n < 2
quick_sort_for_intro_sort!(a, n, Math.log2(n).to_i * 2, comp)
insertion_sort!(a, n, comp)
end
protected def self.quick_sort_for_intro_sort!(a, n, d, comp)
while n > 16
if d == 0
heap_sort!(a, n, comp)
return
end
d -= 1
center_median!(a, n, comp)
c = partition_for_quick_sort!(a, n, comp)
quick_sort_for_intro_sort!(c, n - (c - a), d, comp)
n = c - a
end
end
protected def self.heap_sort!(a, n, comp)
(n // 2).downto 0 do |p|
heapify!(a, p, n, comp)
end
while n > 1
n -= 1
a.value, a[n] = a[n], a.value
heapify!(a, 0, n, comp)
end
end
protected def self.heapify!(a, p, n, comp)
v, c = a[p], p
while c < (n - 1) // 2
c = 2 * (c + 1)
c -= 1 if cmp(a[c], a[c - 1], comp) < 0
break unless cmp(v, a[c], comp) <= 0
a[p] = a[c]
p = c
end
if n & 1 == 0 && c == n // 2 - 1
c = 2 * c + 1
if cmp(v, a[c], comp) < 0
a[p] = a[c]
p = c
end
end
a[p] = v
end
protected def self.center_median!(a, n, comp)
b, c = a + n // 2, a + n - 1
if cmp(a.value, b.value, comp) <= 0
if cmp(b.value, c.value, comp) <= 0
return
elsif cmp(a.value, c.value, comp) <= 0
b.value, c.value = c.value, b.value
else
a.value, b.value, c.value = c.value, a.value, b.value
end
elsif cmp(a.value, c.value, comp) <= 0
a.value, b.value = b.value, a.value
elsif cmp(b.value, c.value, comp) <= 0
a.value, b.value, c.value = b.value, c.value, a.value
else
a.value, c.value = c.value, a.value
end
end
protected def self.partition_for_quick_sort!(a, n, comp)
v, l, r = a[n // 2], a + 1, a + n - 1
loop do
while l < a + n && cmp(l.value, v, comp) < 0
l += 1
end
r -= 1
while r >= a && cmp(v, r.value, comp) < 0
r -= 1
end
return l unless l < r
l.value, r.value = r.value, l.value
l += 1
end
end
protected def self.insertion_sort!(a, n, comp)
(1...n).each do |i|
l = a + i
v = l.value
p = l - 1
while l > a && cmp(v, p.value, comp) < 0
l.value = p.value
l, p = p, p - 1
end
l.value = v
end
end
protected def self.cmp(v1, v2)
v = v1 <=> v2
raise ArgumentError.new("Comparison of #{v1} and #{v2} failed") if v.nil?
v
end
protected def self.cmp(v1, v2, block)
v = block.call(v1, v2)
raise ArgumentError.new("Comparison of #{v1} and #{v2} failed") if v.nil?
v
end
# The stable sort implementation is ported from Rust.
# https://github.com/rust-lang/rust/blob/507bff92fadf1f25a830da5065a5a87113345163/library/alloc/src/slice.rs
#
# Rust License (MIT):
#
# Permission is hereby granted, free of charge, to any
# person obtaining a copy of this software and associated
# documentation files (the "Software"), to deal in the
# Software without restriction, including without
# limitation the rights to use, copy, modify, merge,
# publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software
# is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice
# shall be included in all copies or substantial portions
# of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
# ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
# TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
# PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
# SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
# IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
# Slices of up to this length get sorted using insertion sort.
private MAX_INSERTION = 10
# Very short runs are extended using insertion sort to span at least this many elements.
private MIN_RUN = 10
# This merge sort borrows some (but not all) ideas from TimSort, which is described in detail
# [here](http://svn.python.org/projects/python/trunk/Objects/listsort.txt).
#
# The algorithm identifies strictly descending and non-descending subsequences, which are called
# natural runs. There is a stack of pending runs yet to be merged. Each newly found run is pushed
# onto the stack, and then some pairs of adjacent runs are merged until these two invariants are
# satisfied:
#
# 1. for every `i` in `1..runs.len()`: `runs[i - 1].len > runs[i].len`
# 2. for every `i` in `2..runs.len()`: `runs[i - 2].len > runs[i - 1].len + runs[i].len`
#
# The invariants ensure that the total running time is `O(n * log(n))` worst-case.
protected def self.merge_sort!(v : Slice(T)) forall T
size = v.size
# Short arrays get sorted in-place via insertion sort to avoid allocations.
if size <= MAX_INSERTION
if size >= 2
(size - 1).downto(0) { |i| insert_head!(v[i..]) }
end
return
end
# Allocate a buffer to use as scratch memory. We keep the length 0 so we can keep in it
# shallow copies of the contents of `v` without risking the dtors running on copies if
# `is_less` panics. When merging two sorted runs, this buffer holds a copy of the shorter run,
# which will always have length at most `len / 2`.
buf = Pointer(T).malloc(size // 2)
# In order to identify natural runs in `v`, we traverse it backwards. That might seem like a
# strange decision, but consider the fact that merges more often go in the opposite direction
# (forwards). According to benchmarks, merging forwards is slightly faster than merging
# backwards. To conclude, identifying runs by traversing backwards improves performance.
runs = [] of Range(Int32, Int32)
last = size
while last > 0
# Find the next natural run, and reverse it if it's strictly descending.
start = last - 1
if start > 0
start -= 1
if cmp(v[start + 1], v[start]) < 0
while start > 0 && cmp(v[start], v[start - 1]) < 0
start -= 1
end
v[start...last].reverse!
else
while start > 0 && cmp(v[start], v[start - 1]) > 0
start -= 1
end
end
end
# Insert some more elements into the run if it's too short. Insertion sort is faster than
# merge sort on short sequences, so this significantly improves performance.
while start > 0 && last - start < MIN_RUN
start -= 1
insert_head!(v[start...last])
end
# Push this run onto the stack.
runs.push(start...last)
last = start
# Merge some pairs of adjacent runs to satisfy the invariants.
while r = collapse(runs)
left = runs[r + 1]
right = runs[r]
merge!(v[left.begin...right.end], left.size, buf)
runs[r] = left.begin...right.end
runs.delete_at(r + 1)
end
end
end
# Inserts `v[0]` into pre-sorted sequence `v[1..]` so that whole `v[..]` becomes sorted.
#
# This is the integral subroutine of insertion sort.
protected def self.insert_head!(v)
if v.size >= 2 && cmp(v[1], v[0]) < 0
x, v[0] = v[0], v[1]
(2...v.size).each do |i|
if cmp(v[i], x) < 0
v[i - 1] = v[i]
else
v[i - 1] = x
return
end
end
v[v.size - 1] = x
end
end
# Merges non-decreasing runs `v[..mid]` and `v[mid..]` using `buf` as temporary storage, and
# stores the result into `v[..]`.
protected def self.merge!(v, mid, buf)
size = v.size
if mid <= size - mid
# The left run is shorter.
buf.copy_from(v.to_unsafe, mid)
left = 0
right = mid
out = v.to_unsafe
while left < mid && right < size
# Consume the lesser side.
# If equal, prefer the left run to maintain stability.
if cmp(v[right], buf[left]) < 0
out.value = v[right]
out += 1
right += 1
else
out.value = buf[left]
out += 1
left += 1
end
end
out.copy_from(buf + left, mid - left)
else
# The right run is shorter.
buf.copy_from((v + mid).to_unsafe, size - mid)
left = mid
right = size - mid
out = v.to_unsafe + size
while left > 0 && right > 0
# Consume the greater side.
# If equal, prefer the right run to maintain stability.
if cmp(buf[right - 1], v[left - 1]) < 0
left -= 1
out -= 1
out.value = v[left]
else
right -= 1
out -= 1
out.value = buf[right]
end
end
(v + left).copy_from(buf, right)
end
end
# This merge sort borrows some (but not all) ideas from TimSort, which is described in detail
# [here](http://svn.python.org/projects/python/trunk/Objects/listsort.txt).
#
# The algorithm identifies strictly descending and non-descending subsequences, which are called
# natural runs. There is a stack of pending runs yet to be merged. Each newly found run is pushed
# onto the stack, and then some pairs of adjacent runs are merged until these two invariants are
# satisfied:
#
# 1. for every `i` in `1..runs.len()`: `runs[i - 1].len > runs[i].len`
# 2. for every `i` in `2..runs.len()`: `runs[i - 2].len > runs[i - 1].len + runs[i].len`
#
# The invariants ensure that the total running time is `O(n * log(n))` worst-case.
protected def self.merge_sort!(v : Slice(T), comp) forall T
size = v.size
# Short arrays get sorted in-place via insertion sort to avoid allocations.
if size <= MAX_INSERTION
if size >= 2
(size - 1).downto(0) { |i| insert_head!(v[i..], comp) }
end
return
end
# Allocate a buffer to use as scratch memory. We keep the length 0 so we can keep in it
# shallow copies of the contents of `v` without risking the dtors running on copies if
# `is_less` panics. When merging two sorted runs, this buffer holds a copy of the shorter run,
# which will always have length at most `len / 2`.
buf = Pointer(T).malloc(size // 2)
# In order to identify natural runs in `v`, we traverse it backwards. That might seem like a
# strange decision, but consider the fact that merges more often go in the opposite direction
# (forwards). According to benchmarks, merging forwards is slightly faster than merging
# backwards. To conclude, identifying runs by traversing backwards improves performance.
runs = [] of Range(Int32, Int32)
last = size
while last > 0
# Find the next natural run, and reverse it if it's strictly descending.
start = last - 1
if start > 0
start -= 1
if cmp(v[start + 1], v[start], comp) < 0
while start > 0 && cmp(v[start], v[start - 1], comp) < 0
start -= 1
end
v[start...last].reverse!
else
while start > 0 && cmp(v[start], v[start - 1], comp) > 0
start -= 1
end
end
end
# Insert some more elements into the run if it's too short. Insertion sort is faster than
# merge sort on short sequences, so this significantly improves performance.
while start > 0 && last - start < MIN_RUN
start -= 1
insert_head!(v[start...last], comp)
end
# Push this run onto the stack.
runs.push(start...last)
last = start
# Merge some pairs of adjacent runs to satisfy the invariants.
while r = collapse(runs)
left = runs[r + 1]
right = runs[r]
merge!(v[left.begin...right.end], left.size, buf, comp)
runs[r] = left.begin...right.end
runs.delete_at(r + 1)
end
end
end
# Inserts `v[0]` into pre-sorted sequence `v[1..]` so that whole `v[..]` becomes sorted.
#
# This is the integral subroutine of insertion sort.
protected def self.insert_head!(v, comp)
if v.size >= 2 && cmp(v[1], v[0], comp) < 0
x, v[0] = v[0], v[1]
(2...v.size).each do |i|
if cmp(v[i], x, comp) < 0
v[i - 1] = v[i]
else
v[i - 1] = x
return
end
end
v[v.size - 1] = x
end
end
# Merges non-decreasing runs `v[..mid]` and `v[mid..]` using `buf` as temporary storage, and
# stores the result into `v[..]`.
protected def self.merge!(v, mid, buf, comp)
size = v.size
if mid <= size - mid
# The left run is shorter.
buf.copy_from(v.to_unsafe, mid)
left = 0
right = mid
out = v.to_unsafe
while left < mid && right < size
# Consume the lesser side.
# If equal, prefer the left run to maintain stability.
if cmp(v[right], buf[left], comp) < 0
out.value = v[right]
out += 1
right += 1
else
out.value = buf[left]
out += 1
left += 1
end
end
out.copy_from(buf + left, mid - left)
else
# The right run is shorter.
buf.copy_from((v + mid).to_unsafe, size - mid)
left = mid
right = size - mid
out = v.to_unsafe + size
while left > 0 && right > 0
# Consume the greater side.
# If equal, prefer the right run to maintain stability.
if cmp(buf[right - 1], v[left - 1], comp) < 0
left -= 1
out -= 1
out.value = v[left]
else
right -= 1
out -= 1
out.value = buf[right]
end
end
(v + left).copy_from(buf, right)
end
end
# Examines the stack of runs and identifies the next pair of runs to merge. More specifically,
# if `r` is returned, that means `runs[r]` and `runs[r + 1]` must be merged next. If the
# algorithm should continue building a new run instead, `nil` is returned.
#
# TimSort is infamous for its buggy implementations, as described here:
# http://envisage-project.eu/timsort-specification-and-verification/
#
# The gist of the story is: we must enforce the invariants on the top four runs on the stack.
# Enforcing them on just top three is not sufficient to ensure that the invariants will still
# hold for *all* runs in the stack.
#
# This function correctly checks invariants for the top four runs. Additionally, if the top
# run starts at index 0, it will always demand a merge operation until the stack is fully
# collapsed, in order to complete the sort.
@[AlwaysInline]
protected def self.collapse(runs)
n = runs.size
if n >= 2 &&
(runs[n - 1].begin == 0 ||
runs[n - 2].size <= runs[n - 1].size ||
(n >= 3 && runs[n - 3].size <= runs[n - 2].size + runs[n - 1].size) ||
(n >= 4 && runs[n - 4].size <= runs[n - 3].size + runs[n - 2].size))
n >= 3 && runs[n - 3].size < runs[n - 1].size ? n - 3 : n - 2
end
end
end
| Crystal | 5 | mgomes/crystal | src/slice/sort.cr | [
"Apache-2.0"
] |
.class public final Linner/TestCls$1;
.super Ljava/lang/Object;
# direct methods
.method public constructor <init>()V
.registers 1
invoke-direct {p0}, Ljava/lang/Object;-><init>()V
return-void
.end method
# virtual methods
.method public invoke()V
.registers 2
new-instance v0, Linner/TestCls$1;
invoke-direct {v0}, Linner/TestCls$1;-><init>()V
return-void
.end method
| Smali | 3 | DSYliangweihao/jadx | jadx-core/src/test/smali/inner/TestIncorrectAnonymousClass/TestCls$1.smali | [
"Apache-2.0"
] |
<template>
<div
class="project-preset-item list-item"
:class="{
selected
}"
:data-testid="preset.id"
>
<div class="content">
<div
class="radio-icon"
>
<VueIcon
:icon="selected ? 'radio_button_checked' : 'radio_button_unchecked'"
class="medium"
/>
</div>
<ListItemInfo
:name="$t(preset.name)"
:description="description || $t(preset.description)"
:link="preset.link"
:selected="selected"
/>
</div>
</div>
</template>
<script>
export default {
props: {
preset: {
type: Object,
required: true
},
selected: {
type: Boolean,
required: true
},
description: {
type: String,
default: null
}
}
}
</script>
<style lang="stylus" scoped>
.project-preset-item
padding $padding-item
padding-left 0
.content
display grid
grid-template-columns 64px auto
grid-template-rows auto
grid-template-areas "icon info"
.radio-icon
h-box()
box-center()
grid-area icon
.list-item-info
grid-area info
&.selected
.radio-icon
>>> svg
fill $vue-ui-color-primary
</style>
| Vue | 4 | brizer/vue-cli | packages/@vue/cli-ui/src/components/project-create/ProjectPresetItem.vue | [
"MIT"
] |
=pod
=head1 NAME
BN_num_bits, BN_num_bytes, BN_num_bits_word - get BIGNUM size
=head1 SYNOPSIS
#include <openssl/bn.h>
int BN_num_bytes(const BIGNUM *a);
int BN_num_bits(const BIGNUM *a);
int BN_num_bits_word(BN_ULONG w);
=head1 DESCRIPTION
BN_num_bytes() returns the size of a B<BIGNUM> in bytes.
BN_num_bits_word() returns the number of significant bits in a word.
If we take 0x00000432 as an example, it returns 11, not 16, not 32.
Basically, except for a zero, it returns I<floor(log2(w))+1>.
BN_num_bits() returns the number of significant bits in a B<BIGNUM>,
following the same principle as BN_num_bits_word().
BN_num_bytes() is a macro.
=head1 RETURN VALUES
The size.
=head1 NOTES
Some have tried using BN_num_bits() on individual numbers in RSA keys,
DH keys and DSA keys, and found that they don't always come up with
the number of bits they expected (something like 512, 1024, 2048,
...). This is because generating a number with some specific number
of bits doesn't always set the highest bits, thereby making the number
of I<significant> bits a little lower. If you want to know the "key
size" of such a key, either use functions like RSA_size(), DH_size()
and DSA_size(), or use BN_num_bytes() and multiply with 8 (although
there's no real guarantee that will match the "key size", just a lot
more probability).
=head1 SEE ALSO
L<DH_size(3)>, L<DSA_size(3)>,
L<RSA_size(3)>
=head1 COPYRIGHT
Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.
=cut
| Pod | 5 | pmesnier/openssl | doc/man3/BN_num_bytes.pod | [
"Apache-2.0"
] |
/*
* Copyright 2010-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the LICENSE file.
*/
#if KONAN_OBJC_INTEROP
#include "TestSupportCompilerGenerated.hpp"
#include <Foundation/NSObject.h>
#include <objc/runtime.h>
#include "Types.h"
extern "C" {
Class Kotlin_Interop_getObjCClass(const char* name) {
Class result = objc_lookUpClass(name);
if (result == nil) {
// GTest can display error messages of C++ exceptions so we use them instead of ObjC ones.
throw std::invalid_argument("Incorrect class name");
}
return result;
}
RUNTIME_NORETURN OBJ_GETTER0(Kotlin_NSEnumeratorAsKIterator_create) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_NSEnumeratorAsKIterator_done(KRef thiz) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_NSEnumeratorAsKIterator_setNext(KRef thiz, KRef value) {
throw std::runtime_error("Not implemented for tests");
}
RUNTIME_NORETURN OBJ_GETTER(Kotlin_ObjCExport_NSErrorAsExceptionImpl, KRef message, KRef error) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_ObjCExport_ThrowCollectionConcurrentModification() {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_ObjCExport_ThrowCollectionTooLarge() {
throw std::runtime_error("Not implemented for tests");
}
typedef OBJ_GETTER((*convertReferenceFromObjC), id obj);
extern convertReferenceFromObjC Kotlin_ObjCExport_blockToFunctionConverters[] = {};
extern int Kotlin_ObjCExport_blockToFunctionConverters_size = 0;
RUNTIME_NORETURN OBJ_GETTER(Kotlin_ObjCExport_createContinuationArgumentImpl, KRef completionHolder, const TypeInfo** exceptionTypes) {
throw std::runtime_error("Not implemented for tests");
}
RUNTIME_NORETURN OBJ_GETTER(Kotlin_ObjCExport_getWrappedError, KRef throwable) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_ObjCExport_resumeContinuationFailure(KRef continuation, KRef exception) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_ObjCExport_resumeContinuationSuccess(KRef continuation, KRef result) {
throw std::runtime_error("Not implemented for tests");
}
// Declarations from the "objc" module (see ObjCExportCollections.mm).
OBJ_GETTER0(Kotlin_NSArrayAsKList_create) {
throw std::runtime_error("Not implemented for tests");
}
OBJ_GETTER0(Kotlin_NSMutableArrayAsKMutableList_create) {
throw std::runtime_error("Not implemented for tests");
}
OBJ_GETTER0(Kotlin_NSSetAsKSet_create) {
throw std::runtime_error("Not implemented for tests");
}
OBJ_GETTER0(Kotlin_NSDictionaryAsKMap_create) {
throw std::runtime_error("Not implemented for tests");
}
KBoolean Kotlin_Iterator_hasNext(KRef iterator) {
throw std::runtime_error("Not implemented for tests");
}
OBJ_GETTER(Kotlin_Iterator_next, KRef iterator) {
throw std::runtime_error("Not implemented for tests");
}
KInt Kotlin_Collection_getSize(KRef collection) {
throw std::runtime_error("Not implemented for tests");
}
KBoolean Kotlin_Set_contains(KRef set, KRef element) {
throw std::runtime_error("Not implemented for tests");
}
OBJ_GETTER(Kotlin_Set_getElement, KRef set, KRef element) {
throw std::runtime_error("Not implemented for tests");
}
OBJ_GETTER(Kotlin_Set_iterator, KRef set) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_MutableCollection_removeObject(KRef collection, KRef element) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_MutableCollection_addObject(KRef list, KRef obj) {
throw std::runtime_error("Not implemented for tests");
}
OBJ_GETTER(Kotlin_MutableSet_createWithCapacity, KInt capacity) {
throw std::runtime_error("Not implemented for tests");
}
KInt Kotlin_Map_getSize(KRef map) {
throw std::runtime_error("Not implemented for tests");
}
KBoolean Kotlin_Map_containsKey(KRef map, KRef key) {
throw std::runtime_error("Not implemented for tests");
}
OBJ_GETTER(Kotlin_Map_get, KRef map, KRef key) {
throw std::runtime_error("Not implemented for tests");
}
OBJ_GETTER(Kotlin_Map_keyIterator, KRef map) {
throw std::runtime_error("Not implemented for tests");
}
OBJ_GETTER(Kotlin_List_get, KRef list, KInt index) {
throw std::runtime_error("Not implemented for tests");
}
OBJ_GETTER(Kotlin_MutableMap_createWithCapacity, KInt capacity) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_MutableMap_set(KRef map, KRef key, KRef value) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_MutableMap_remove(KRef map, KRef key) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_MutableList_addObjectAtIndex(KRef list, KInt index, KRef obj) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_MutableList_removeObjectAtIndex(KRef list, KInt index) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_MutableList_removeLastObject(KRef list) {
throw std::runtime_error("Not implemented for tests");
}
void Kotlin_MutableList_setObject(KRef list, KInt index, KRef obj) {
throw std::runtime_error("Not implemented for tests");
}
} // extern "C"
#endif // KONAN_OBJC_INTEROP
| Objective-C++ | 3 | Mu-L/kotlin | kotlin-native/runtime/src/test_support/cpp/CompilerGeneratedObjC.mm | [
"ECL-2.0",
"Apache-2.0"
] |
******************************************************************************;
* Copyright (c) 2016 by SAS Institute Inc., Cary, NC 27513 USA *;
* *;
* Licensed under the Apache License, Version 2.0 (the "License"); *;
* you may not use this file except in compliance with the License. *;
* You may obtain a copy of the License at *;
* *;
* http://www.apache.org/licenses/LICENSE-2.0 *;
* *;
* Unless required by applicable law or agreed to in writing, software *;
* distributed under the License is distributed on an "AS IS" BASIS, *;
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *;
* See the License for the specific language governing permissions and *;
* limitations under the License. *;
******************************************************************************;
******************************************************************************;
* - tidy data utility two: multiple dimension variables stored in one column *;
* - based on Hadley Wickham's "Tidy data" *;
* https://www.jstatsoft.org/article/view/v059i10/v59i10.pdf *;
* *;
* INSTRUCTIONS: *;
* - set global constants directly below *;
* - run entire file *;
******************************************************************************;
*** simulate example data ****************************************************;
data samp;
length year 8 dim $2 measure 8;
input year dim $ measure;
datalines4;
2005 x1 5
2005 x2 10
2005 y1 3
2005 y2 18
2006 x1 3
2006 x2 20
2006 y1 1
2006 y2 0
;;;;
run;
*** TODO: user set global constants ******************************************;
* INDATA2 - name of the input dataset - must include the Libref if the;
* dataset is not in WORK - required;
* OUTDATA2 - name of the generated output dataset - include a libref as;
* needed - optional, if blank, WORK._TIDY2_ will be generated;
* DIMCOL - name of the column containing values for the dimension variables;
* specify the column name within the single quotes - required;
* DIMNAMES - space or comma delimited list of the names of the dimension;
* variables - required;
* DIMLENGTHS - space or comma delimited list of the character lengths of the;
* dimension variables - specify integer values - required;
* number of values specified must match the number of values;
* specified for DIMNAMES above;
* lengths are used to parse the column for the dimension variable;
* values when DIMSTOREMETHOD=2 (below);
* DIMSTOREMETHOD - method for how the dimension variable values are stored in;;
* the column - required;
* 1 = delimited by one or more specified characters;
* 2 = fixed start character position, counting from the left;
* the start position for a dimension variable needs to be;
* the same on every column value;
* PARSEDELIM - delimiter character list for parsing the column values;
* specify the characters within single quotes;
* used if DIMSTOREMETHOD = 1;
* the first delimited value is assigned to the
* first dimension variable in DIMNAMES, the second delimited
* value is assigned to second dimension var in DIMNAMES, etc;
* if no characters are specified, the default SAS macro;
* delimiters will be used;
* PARSEPOSITIONS - space or comma delimited list of the start character;
* position for each variable, counting from the left;
* specify integer values - required if DIMSTOREMETHOD = 2;
* the number of values specified must match the number;
* of values specified for DIMNAMES above;
* this list along with the DIMLENGTHS list above is used;
* to parse the column values;
%let INDATA2 = samp; /* example setting */
%let OUTDATA2 = outtidy2; /* example setting */
%let DIMCOL = 'dim'; /* example setting */ /* quoted string */
%let DIMNAMES = DIM1 DIM2; /* example setting */
%let DIMLENGTHS = 1 1; /* example setting */
%let DIMSTOREMETHOD = 2; /* example setting */ /* valid value: 1 or 2 */
%let PARSEDELIM = ''; /* quoted string */
%let PARSEPOSITIONS = 1 2; /* example setting */
*** tidy2 ********************************************************************;
* macro that corrects multiple dimension variables stored in one column;
options validvarname=ANY;
%macro tidy2 / minoperator;
* macro variable validations;
* INDATA2;
%if %superq(INDATA2) = %then %do;
%put ERROR: Variable 'INDATA2' cannot be blank. The source dataset must be specified.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
%if not(%sysfunc(exist(%superq(INDATA2)))) or (%superq(INDATA2)=%str(*)) %then %do;
%put ERROR: Source dataset %qupcase(%superq(INDATA2)) does not exist.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
* OUTDATA2;
%if %superq(OUTDATA2)= %then %let OUTDATA2=_TIDY2_;
* DIMCOL;
%if %qsysfunc(kcompress(%superq(DIMCOL),%str(%' )))= %then %do;
%put ERROR: Variable 'DIMCOL' cannot be blank. Specify a Column name within the single quotes.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
%if (%qsysfunc(ksubstr(%superq(DIMCOL),1,1)) ne %str(%'))
or (%qsysfunc(ksubstr(%qsysfunc(kreverse(%superq(DIMCOL))),1,1))
ne %str(%')) %then %do;
%put ERROR: The Column name specified for Variable 'DIMCOL' must be within single quotes.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
* DIMNAMES;
%if %superq(DIMNAMES) = %then %do;
%put ERROR: Variable 'DIMNAMES' cannot be blank. Specify a space delimited list of two or more Dimension names.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
%local dimcount;
%let dimcount = %sysfunc(countw(%superq(DIMNAMES),%str( ,)));
%if (&dimcount. lt 2) %then %do;
%put ERROR: Variable 'DIMNAMES' must contain a space delimited list of two or more Dimension names.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
* DIMLENGTHS;
%if %superq(DIMLENGTHS) = %then %do;
%put ERROR: Variable 'DIMLENGTHS' cannot be blank. Specify a space delimited list of the lengths of the Dimension Variables.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
%if (%sysfunc(countw(%superq(DIMLENGTHS),%str( ,))) ne &dimcount.) %then %do;
%put ERROR: Variable 'DIMLENGTHS' must contain the same number of lengths as the number of specified Dimension names.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
data _null_;
length val $10 message $200;
l_error = 0;
do x=1 to &dimcount.;
val = scan(symget('DIMLENGTHS'),x,' ,');
len = input(val,10.);
if len lt 1 then do;
message = "ERROR: Invalid value '"||strip(val)||"' specified within Variable 'DIMLENGTHS'. Specify an integer value greater than 0.";
put message;
message = '';
l_error = 1;
end;
else call symputx('len'||strip(put(x,10.)),int(len),'L');
end;
call symputx('l_error',l_error,'L');
run;
%if (&l_error.) %then %do;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
* DIMSTOREMETHOD;
%if %superq(DIMSTOREMETHOD) = %then %do;
%put ERROR: Variable 'DIMSTOREMETHOD' cannot be blank. Valid values: 1 or 2.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
%if not(%superq(DIMSTOREMETHOD) in (1 2)) %then %do;
%put ERROR: Invalid value specified for Variable 'DIMSTOREMETHOD'. Valid values: 1 or 2.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
* PARSEDELIM;
%if (&DIMSTOREMETHOD. = 1) %then %do;
%if (%superq(PARSEDELIM) ne %str() and %superq(PARSEDELIM) ne '') %then %do;
%if (%qsysfunc(ksubstr(%superq(PARSEDELIM),1,1)) ne %str(%')) or
(%qsysfunc(ksubstr(%qsysfunc(kreverse(%superq(PARSEDELIM))),1,1)) ne
%str(%')) %then %do;
%put ERROR: The delimiter characters populated for Variable 'PARSEDELIM' must be within single quotes.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
%end;
%else %let PARSEDELIM=;
%end;
* PARSEPOSITIONS;
%if (&DIMSTOREMETHOD. = 2) %then %do;
%if %superq(PARSEPOSITIONS)= %then %do;
%put ERROR: Variable 'PARSEPOSITIONS' cannot be blank. Specify a space delimited list of the parsing start positions for the Dimension Variables.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
%if (%sysfunc(countw(%superq(PARSEPOSITIONS),%str( ,))) ne &dimcount.)
%then %do;
%put ERROR: Variable 'PARSEPOSITIONS' must contain the same number of start positions as the number of specified Dimension names.;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
data _null_;
length val $10 message $200;
l_error = 0;
do x=1 to &dimcount.;
val = scan(symget('PARSEPOSITIONS'),x,' ,');
pos = input(val,10.);
if pos lt 1 then do;
message = "ERROR: Invalid value '"||strip(val)||"' specified within Variable 'PARSEPOSITIONS'. Specify an integer value greater than 0.";
put message;
message = '';
l_error = 1;
end;
else call symputx('pos'||strip(put(x,10.)),int(pos),'L');
end;
call symputx('l_error',l_error,'L');
run;
%if (&l_error.) %then %do;
%if (&syscc. in (0 4)) %then %let syscc = 5;
%return;
%end;
%end;
* extract the dimension names, writing to macro var arrray;
* dim1, dim2, etc.;
%local x;
%do x=1 %to &dimcount.;
%local dim&x.;
%let dim&x. = %scan(%superq(DIMNAMES),&x.,%str( ,));
%end;
* data step to generate the dimension variables;
data &OUTDATA2.;
set &INDATA2.;
length
%do x=1 %to &dimcount.;
&&dim&x. $&&len&x.
%end;;
%if (&DIMSTOREMETHOD. = 1) %then %do;
%do x=1 %to &dimcount.;
&&dim&x. = kscan(&DIMCOL.n,&x.%if %superq(PARSEDELIM) ne %then,&PARSEDELIM.;);
%end;
%end;
%else %do; /* DIMSTOREMETHOD. = 2 */
%do x=1 %to &dimcount.;
&&dim&x. = ksubstr(&DIMCOL.n,&&pos&x.,&&len&x.);
%end;
%end;
drop &DIMCOL.n;
run;
%mend;
%tidy2
| SAS | 4 | ajnavarro/language-dataset | data/github.com/sassoftware/enlighten-apply/7ad42e11b3d59b7ccbcee5fdd6ef2571f69a5821/SAS_UE_TidyData/tidy2.sas | [
"MIT"
] |
create table t2 (x real primary key); | SQL | 3 | WizardXiao/tidb | br/tests/lightning_routes/data/routes_a1.t2-schema.sql | [
"Apache-2.0"
] |
* Analysis
Analysis is a library that provides facilities to help analyze and
understand data. Listed below are the classes:
** Document
The document class represents a document. After creating a document,
you can perform several operations on it, some examples:
+ term count: how many times does a term appear in a document?
+ term frequency: how many times does a term appear divided by the
total number of words in the document?
** Document Collection
The document collection class represents a collection of documents. As
with a document, there are several operations available, some examples:
+ dictionary: which words appear in the document collection?
+ keywords: what are the important keywords in this document
collection?
** Document Vertex
The document vertex class represents a document that is part of a
graph. The edges slot of the document vertex class is used to store
edges of that particular vertex. The keys in the edges slot hash table
are the actual vertexes, and the values are the edge weights.
** Document Cluster
The document cluster class represents a document that is part of a
graph which will be clustered. It extends the documenet-vertex class
and adds support for a cluster tag and a list of neighbors. These
slots are useful for clustering algorithms.
| Org | 4 | nathan-jungels/next | libraries/analysis/README.org | [
"BSD-3-Clause"
] |
/*
* Copyright 2012-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Groovy util classes that are "shared" between the CLI and user applications. Classes is
* this package can be loaded from compiled user code. Not under the cli package in case
* we want to extract into a separate jar at a future date.
*/
package org.springframework.boot.groovy;
| Java | 2 | yiou362/spring-boot-2.2.9.RELEASE | spring-boot-project/spring-boot-cli/src/main/java/org/springframework/boot/groovy/package-info.java | [
"Apache-2.0"
] |
DefaultBehavior use = method("takes one or more evaluated string argument. will import the files corresponding to each of the strings named based on the Ioke loading behavior that can be found in the documentation for the loadBehavior cell on System.", module nil,
unless(module,
return(DefaultBehavior cell(:use)),
System lowLevelLoad!(module, false)))
| Ioke | 2 | olabini/ioke | src/builtin/A01_use.ik | [
"ICU",
"MIT"
] |
use "lib:codegen-trace-additional"
use @gc_local[Pointer[None]](target: Main)
use @gc_local_snapshot[Pointer[None]](target: Main)
use @gc_local_snapshot_destroy[None](obj_map: Pointer[None])
use @objectmap_has_object_rc[Bool](obj_map: Pointer[None], obj: Any tag, rc: USize)
use @pony_exitcode[None](code: I32)
class A
actor Main
var map_before: Pointer[None] = Pointer[None]
new create(env: Env) =>
trace((recover A end, recover A end))
map_before = @gc_local_snapshot(this)
be trace(t: (A iso, A iso)) =>
let map_after = @gc_local(this)
let ok = @objectmap_has_object_rc(map_before, t._1, USize(1)) and
@objectmap_has_object_rc(map_before, t._2, USize(1)) and
@objectmap_has_object_rc(map_after, t._1, USize(0)) and
@objectmap_has_object_rc(map_after, t._2, USize(0))
@gc_local_snapshot_destroy(map_before)
@pony_exitcode(I32(if ok then 1 else 0 end))
| Pony | 4 | rtpax/ponyc | test/libponyc-run/codegen-trace-tuple/main.pony | [
"BSD-2-Clause"
] |
//edition:2018
#![feature(type_alias_impl_trait)]
pub trait Foo {
type X: std::future::Future<Output = ()>;
fn x(&self) -> Self::X;
}
pub struct F;
impl Foo for F {
type X = impl std::future::Future<Output = ()>;
fn x(&self) -> Self::X {
async {}
}
}
| Rust | 4 | Eric-Arellano/rust | src/test/rustdoc/auxiliary/issue-73061.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
''Robotics with the Boe-Bot - AsciiName.spin
''Use ASCII code in a DEBUG command to display the words BASIC Stamp 2.
CON
_clkmode = xtal1 + pll8x
_xinfreq = 10_000_000
OBJ
Debug: "FullDuplexSerialPlus"
PUB AsciiName
Debug.start(31, 30, 0, 9600)
Debug.str(string(66,65,83,73,67,32,83,116,97,109,112,32,50))
'********************************************************************************************
' Robotics with the Boe-Bot - AsciiName.bs2
' Use ASCII code in a DEBUG command to display the words BASIC Stamp 2.
' {$STAMP BS2}
' {$PBASIC 2.5}
'DEBUG 66,65,83,73,67,32,83,116,97,109,112,32,50
'END | Propeller Spin | 4 | deets/propeller | libraries/community/p1/All/Spin Stamp Code for the Boe-Bot/AsciiName.spin | [
"MIT"
] |
wttr:
service.running:
- enable: True
- watch:
- file: /srv/ephemeral/start.sh
- git: wttr-repo
- require:
- pkg: wttr-dependencies
- git: wttr-repo
- cmd: wego
- archive: geolite-db
# package names are from Ubuntu 18.04, you may need to adjust if on a different distribution
wttr-dependencies:
pkg.installed:
- pkgs:
- golang
- gawk
- python-setuptools
- python-dev
- python-dnspython
- python-geoip2
- python-geopy
- python-gevent
- python-flask
- python-pil
- authbind
wttr-repo:
git.latest:
- name: https://github.com/chubin/wttr.in
- rev: master
- target: /srv/ephemeral/wttr.in
- require:
- /srv/ephemeral
wttr-start:
file.managed:
- name: /srv/ephemeral/start.sh
- source: salt://wttr/start.sh
- mode: '0770'
- user: srv
- group: srv
wegorc:
file.managed:
- name: /srv/ephemeral/.wegorc
- user: srv
- group: srv
- source: salt://wttr/wegorc
- template: jinja
- context:
apikey: {{ pillar['wttr']['apikey'] }}
geolite-db:
archive.extracted:
- name: /srv/ephemeral
- source: http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz
- source_hash: http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz.md5
- keep_source: True
- options: --strip-components=1 # flatten directory structure
- enforce_toplevel: False
# Could benefit from improvement, won't get updated automatically at all
wego:
cmd.run:
- onlyif: 'test ! -e /srv/ephemeral/bin/wego'
- env:
- GOPATH: /srv/ephemeral
- name: go get -u github.com/schachmat/wego && go install github.com/schachmat/wego
- cwd: /srv/ephemeral/
- require:
- pkg: wttr-dependencies
- file: wegorc
/srv/ephemeral:
file.directory:
- makedirs: True
{% for dir in '/srv/ephemeral/wttr.in/log','/srv/ephemeral/wttr.in/cache' %}
{{ dir }}:
file.directory:
- user: srv
- group: srv
- makedirs: True
- recurse:
- user
- group
- require_in:
- service: wttr
{% endfor %}
/etc/systemd/system/wttr.service:
file:
- managed
- source: salt://wttr/wttr.service
- require:
- file: wttr-start
- file: authbind-80
- require_in:
- service: wttr
authbind-80:
file:
- managed
- name: /etc/authbind/byport/80
- user: srv
- group: srv
- mode: 770
- replace: False
- require:
- pkg: wttr-dependencies
| SaltStack | 5 | harunpehlivan/wttr.in | share/salt/init.sls | [
"Apache-2.0"
] |
!define StrTrimNewLines "!insertmacro StrTrimNewLines"
!macro StrTrimNewLines ResultVar String
Push "${String}"
Call StrTrimNewLines
Pop "${ResultVar}"
!macroend
Function StrTrimNewLines
/*After this point:
------------------------------------------
$R0 = String (input)
$R1 = TrimCounter (temp)
$R2 = Temp (temp)*/
;Get input from user
Exch $R0
Push $R1
Push $R2
;Initialize trim counter
StrCpy $R1 0
loop:
;Subtract to get "String"'s last characters
IntOp $R1 $R1 - 1
;Verify if they are either $\r or $\n
StrCpy $R2 $R0 1 $R1
${If} $R2 == `$\r`
${OrIf} $R2 == `$\n`
Goto loop
${EndIf}
;Trim characters (if needed)
IntOp $R1 $R1 + 1
${If} $R1 < 0
StrCpy $R0 $R0 $R1
${EndIf}
/*After this point:
------------------------------------------
$R0 = ResultVar (output)*/
;Return output to user
Pop $R2
Pop $R1
Exch $R0
FunctionEnd
Function SplitFirstStrPart
Exch $R0
Exch
Exch $R1
Push $R2
Push $R3
StrCpy $R3 $R1
StrLen $R1 $R0
IntOp $R1 $R1 + 1
loop:
IntOp $R1 $R1 - 1
StrCpy $R2 $R0 1 -$R1
StrCmp $R1 0 exit0
StrCmp $R2 $R3 exit1 loop
exit0:
StrCpy $R1 ""
Goto exit2
exit1:
IntOp $R1 $R1 - 1
StrCmp $R1 0 0 +3
StrCpy $R2 ""
Goto +2
StrCpy $R2 $R0 "" -$R1
IntOp $R1 $R1 + 1
StrCpy $R0 $R0 -$R1
StrCpy $R1 $R2
exit2:
Pop $R3
Pop $R2
Exch $R1 ;rest
Exch
Exch $R0 ;first
FunctionEnd
Function ReadINIFileKeys
Exch $R0 ;INI file to write
Exch
Exch $R1 ;INI file to read
Push $R2
Push $R3
Push $R4 ;uni var
Push $R5 ;uni var
Push $R6 ;last INI section
ClearErrors
FileOpen $R2 $R1 r
Loop:
FileRead $R2 $R3 ;get next line into R3
IfErrors Exit
Push $R3
Call StrTrimNewLines
Pop $R3
StrCmp $R3 "" Loop ;if blank line, skip
StrCpy $R4 $R3 1 ;get first char into R4
StrCmp $R4 ";" Loop ;check it for semicolon and skip line if so(ini comment)
StrCpy $R4 $R3 "" -1 ;get last char of line into R4
StrCmp $R4 "]" 0 +6 ;if last char is ], parse section name, else jump to parse key/value
StrCpy $R6 $R3 -1 ;get all except last char
StrLen $R4 $R6 ;get str length
IntOp $R4 $R4 - 1 ;subtract one from length
StrCpy $R6 $R6 "" -$R4 ;copy all but first char to trim leading [, placing the section name in R6
Goto Loop
Push "=" ;push delimiting char
Push $R3
Call SplitFirstStrPart
Pop $R4
Pop $R5
WriteINIStr $R0 $R6 $R4 $R5
IfErrors 0 Loop
MessageBox MB_OK "Ini file write errored while writing $R0 $R6 $R4 $R5"
Goto Loop
Exit:
FileClose $R2
Pop $R6
Pop $R5
Pop $R4
Pop $R3
Pop $R2
Pop $R1
Pop $R0
FunctionEnd
| NSIS | 5 | rajeev02101987/arangodb | Installation/Windows/Plugins/ReadINIFileKeys.nsh | [
"Apache-2.0"
] |
[
{
"from": {
"name": "main",
"kind": 12,
"detail": "",
"uri": "file:///a/file.ts",
"range": {
"start": {
"line": 10,
"character": 0
},
"end": {
"line": 13,
"character": 1
}
},
"selectionRange": {
"start": {
"line": 10,
"character": 9
},
"end": {
"line": 10,
"character": 13
}
}
},
"fromRanges": [
{
"start": {
"line": 12,
"character": 6
},
"end": {
"line": 12,
"character": 9
}
}
]
}
]
| JSON | 0 | petamoriken/deno | cli/tests/testdata/lsp/incoming_calls_response.json | [
"MIT"
] |
/* The Computer Language Shootout
* http://shootout.alioth.debian.org/
* Contributed by David Hedbor
*/
enum Color { blue, red, yellow, faded };
enum bool { false, true };
class MeetingPlace(int n)
{
private Color first, second;
private bool firstCall = true;
private bool mustWait = false;
private Thread.Condition monitor = Thread.Condition();
private Thread.Mutex mlock = Thread.Mutex();
Color OtherCreaturesColor(Color me)
{
Thread.MutexKey key = mlock->lock();
Color other;
while (mustWait) {
monitor->wait(key);
}
// write("Me = %d, n = %d\n", me, n);
if (firstCall)
{
if (n-- > 0)
{
first = me;
firstCall = false;
while (!firstCall) {
monitor->wait(key);
}
mustWait = false;
other = second;
} else {
other = faded;
}
} else {
second = me;
other = first;
firstCall = true;
mustWait = true;
}
monitor->broadcast();
return other;
}
};
class Creature(MeetingPlace m, Color me)
{
int creaturesMet;
void Be() {
while(me != faded) { MeetOtherCreature(); }
}
void MeetOtherCreature()
{
Color other = m->OtherCreaturesColor(me);
if (other == faded) {
me = other;
} else {
creaturesMet++;
me = Complement(other);
}
}
Color Complement(Color other)
{
if (me == other) return me;
switch(me)
{
case blue:
return other == red ? yellow : red;
case red:
return other == blue ? yellow : blue;
case yellow:
return other == blue ? red : blue;
default: return me;
}
}
};
array(Color) colors = ({ blue, red, yellow, blue });
array(Creature) creatures = allocate(4);
array(Thread.Thread) threads = allocate(4);
int main(int argc, array(string) argv)
{
if(argc < 2) return 0;
int n = (int)argv[1];
MeetingPlace m = MeetingPlace(n);
for (int i=0; i < sizeof(colors); i++) {
creatures[i] = Creature(m, colors[i]);
threads[i] = Thread.Thread(creatures[i]->Be, 0);
}
threads->wait();
int meetings = 0;
for(int i=0; i < sizeof(creatures); i++) {
meetings += creatures[i]->creaturesMet;
}
write("%d\n", meetings);
return 0;
}
| Pike | 3 | kragen/shootout | bench/chameneos/chameneos.pike | [
"BSD-3-Clause"
] |
// Copyright 2010-2012 Matus Chochlik. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#version 3.6;
#declare CubeMapFace = 1;
#include "clouds01-cm.pov.inc"
| POV-Ray SDL | 1 | vif/3D-STG | ThirdParty/oglplus-develop/source/textures/clouds01-cm_1.pov | [
"MIT"
] |
#BRL_GAMETARGET_IMPLEMENTED=True
Import brl.gametarget
Import "native/xnagame.cs"
Import "native/monkeytarget.cs"
Extern
Class XnaDisplayMode="BBXnaDisplayMode"
Field Width:Int
Field Height:Int
Field Format:Int
End
Class XnaGame Extends BBGame="BBXnaGame"
Function GetXnaGame:XnaGame()="XnaGame"
Method GetXnaDesktopMode:XnaDisplayMode()
Method GetXnaDisplayModes:XnaDisplayMode[]()
Method SetXnaDisplayMode:Void( width:Int,height:Int,format:Int,fullscreen:Bool )
End
Public
| Monkey | 3 | blitz-research/monkey | targets/__deprecated__/xna/modules/monkeytarget.monkey | [
"Zlib"
] |
Note 0
Copyright (C) 2017 Jonathan Hough. All rights reserved.
)
cocurrent 'jLearnOpt'
lineSearch=: 3 : 0
'fg fpg xk pk gfk c1 c2 amax maxIter'=. y
func=: fg`:6
fprime=: fpg`:6
am1=. a0=. 1e_5
ai=. amax
it=. 0
alpha=. ai
dot=: +/ . *
while. it < maxIter do.
it=. it+1
fk=. func xk + ai *pk
if.(fk > (func xk) + c1*ai*(+/pk * fprime xk)) +. ((it > 1) *. fk >: func xk + am1 *pk) do.
alpha=. zoom fg;fpg;xk;pk;am1;ai;c1;c2;10
break.
end.
gai=. +/ pk * (fprime xk + ai * pk)
if. (| gai) <: -c2 * (+/ pk * fprime xk) do.
alpha=. ai
break.
end.
if. gai >: 0 do.
alpha=. zoom fg;fpg;xk;pk;ai;am1;c1;c2;10
break.
end.
am1=. ai
if. amax <: +: ai do.
ai=. amax
else. ai=. +: ai
end.
end.
alpha
)
qinterpolate=: 3 : 0
'a0 a1 fa0 fa1 fga0 fga1'=: y
try.
d=.a1-a0
''$,a0-((fa1 - fa0 + fga0 * d )%~ -: fga0 * *: d)
catch.
return. _
end.
)
zoom=: 3 : 0
'fg fpg xk pk al ah c1 c2 maxIter'=. y
func=. fg `:6
fprime=. fpg `:6
alpha=. ah
its=. 0
while. 1 do.
dif=. ah - al
if. dif < 0 do.
t=. al
al=. ah
ah=. t
dif=. ah - al
end.
its=. >:its
fal=. func xk + al *pk
fah=. func xk + ah *pk
fgal=. +/ pk * fprime xk + al *pk
fgah=. +/ pk *fprime xk + ah * pk
aj=: qinterpolate (al);(ah); fal; fah;fgal; fgah
if. (aj > ah - 0.1 * dif) +. aj < al + 0.1 * dif do.
aj =: -: ah + al
end.
alpha=. aj
NB.if. (ah - al) < 1e_3 do. break. end.
fj=. (func xk + aj *pk)
if. fj > (func xk) + c1*aj* (+/ pk * fprime xk) do.
ah=. aj
elseif. fj >: (func xk + al *pk) do.
ah=. aj
elseif. 1 do.
fpj=: +/ pk * fprime xk + aj * pk
if. (| fpj) <: -c2 * (+/ pk * fprime xk) do.
alpha=. aj
break.
end.
if. (fpj * (ah - al)) >: 0 do.
ah=. al
end.
al=. aj
end.
if. its >: maxIter do.
NB. smoutput 'zoom function: max iterations over-ran.'
break.
end.
end.
alpha
) | J | 3 | jonghough/jlearn | optimize/linesearch.ijs | [
"MIT"
] |
USING: ;
IN: windows.directx.d2derr
CONSTANT: D2DERR_UNSUPPORTED_PIXEL_FORMAT 0x88982f80
CONSTANT: D2DERR_INSUFFICIENT_BUFFER 0x80007007a
CONSTANT: D2DERR_WRONG_STATE 0x88990001
CONSTANT: D2DERR_NOT_INITIALIZED 0x88990002
CONSTANT: D2DERR_UNSUPPORTED_OPERATION 0x88990003
CONSTANT: D2DERR_SCANNER_FAILED 0x88990004
CONSTANT: D2DERR_SCREEN_ACCESS_DENIED 0x88990005
CONSTANT: D2DERR_DISPLAY_STATE_INVALID 0x88990006
CONSTANT: D2DERR_ZERO_VECTOR 0x88990007
CONSTANT: D2DERR_INTERNAL_ERROR 0x88990008
CONSTANT: D2DERR_DISPLAY_FORMAT_NOT_SUPPORTED 0x88990009
CONSTANT: D2DERR_INVALID_CALL 0x8899000A
CONSTANT: D2DERR_NO_HARDWARE_DEVICE 0x8899000B
CONSTANT: D2DERR_RECREATE_TARGET 0x8899000C
CONSTANT: D2DERR_TOO_MANY_SHADER_ELEMENTS 0x8899000D
CONSTANT: D2DERR_SHADER_COMPILE_FAILED 0x8899000E
CONSTANT: D2DERR_MAX_TEXTURE_SIZE_EXCEEDED 0x8899000F
CONSTANT: D2DERR_UNSUPPORTED_VERSION 0x88990010
CONSTANT: D2DERR_BAD_NUMBER 0x88990011
CONSTANT: D2DERR_WRONG_FACTORY 0x88990012
CONSTANT: D2DERR_LAYER_ALREADY_IN_USE 0x88990013
CONSTANT: D2DERR_POP_CALL_DID_NOT_MATCH_PUSH 0x88990014
CONSTANT: D2DERR_WRONG_RESOURCE_DOMAIN 0x88990015
CONSTANT: D2DERR_PUSH_POP_UNBALANCED 0x88990016
CONSTANT: D2DERR_RENDER_TARGET_HAS_LAYER_OR_CLIPRECT 0x88990017
CONSTANT: D2DERR_INCOMPATIBLE_BRUSH_TYPES 0x88990018
CONSTANT: D2DERR_WIN32_ERROR 0x88990019
CONSTANT: D2DERR_TARGET_NOT_GDI_COMPATIBLE 0x8899001A
CONSTANT: D2DERR_TEXT_EFFECT_IS_WRONG_TYPE 0x8899001B
CONSTANT: D2DERR_TEXT_RENDERER_NOT_RELEASED 0x8899001C
CONSTANT: D2DERR_EXCEEDS_MAX_BITMAP_SIZE 0x8899001D
| Factor | 3 | alex-ilin/factor | basis/windows/directx/d2derr/d2derr.factor | [
"BSD-2-Clause"
] |
// Created by Kent Karlsson on 3/11/16.
// Copyright (c) 2016 Bit Bar. All rights reserved.
// Copyright (c) 2017 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "base/mac/scoped_nsobject.h"
#include "shell/browser/ui/cocoa/NSColor+Hex.h"
#include "shell/browser/ui/cocoa/NSString+ANSI.h"
@implementation NSMutableDictionary (ANSI)
- (NSMutableDictionary*)modifyAttributesForANSICodes:(NSString*)codes {
BOOL bold = NO;
NSFont* font = self[NSFontAttributeName];
NSArray* codeArray = [codes componentsSeparatedByString:@";"];
for (NSString* codeString in codeArray) {
int code = codeString.intValue;
switch (code) {
case 0:
[self removeAllObjects];
// remove italic and bold from font here
if (font)
self[NSFontAttributeName] = font;
break;
case 1:
case 22:
bold = (code == 1);
break;
// case 3: italic
// case 23: italic off
// case 4: underlined
// case 24: underlined off
case 30:
self[NSForegroundColorAttributeName] =
[NSColor colorWithHexColorString:bold ? @"7f7f7f" : @"000000"];
break;
case 31:
self[NSForegroundColorAttributeName] =
[NSColor colorWithHexColorString:bold ? @"cd0000" : @"ff0000"];
break;
case 32:
self[NSForegroundColorAttributeName] =
[NSColor colorWithHexColorString:bold ? @"00cd00" : @"00ff00"];
break;
case 33:
self[NSForegroundColorAttributeName] =
[NSColor colorWithHexColorString:bold ? @"cdcd00" : @"ffff00"];
break;
case 34:
self[NSForegroundColorAttributeName] =
[NSColor colorWithHexColorString:bold ? @"0000ee" : @"5c5cff"];
break;
case 35:
self[NSForegroundColorAttributeName] =
[NSColor colorWithHexColorString:bold ? @"cd00cd" : @"ff00ff"];
break;
case 36:
self[NSForegroundColorAttributeName] =
[NSColor colorWithHexColorString:bold ? @"00cdcd" : @"00ffff"];
break;
case 37:
self[NSForegroundColorAttributeName] =
[NSColor colorWithHexColorString:bold ? @"e5e5e5" : @"ffffff"];
break;
case 39:
[self removeObjectForKey:NSForegroundColorAttributeName];
break;
case 40:
self[NSBackgroundColorAttributeName] =
[NSColor colorWithHexColorString:@"7f7f7f"];
break;
case 41:
self[NSBackgroundColorAttributeName] =
[NSColor colorWithHexColorString:@"cd0000"];
break;
case 42:
self[NSBackgroundColorAttributeName] =
[NSColor colorWithHexColorString:@"00cd00"];
break;
case 43:
self[NSBackgroundColorAttributeName] =
[NSColor colorWithHexColorString:@"cdcd00"];
break;
case 44:
self[NSBackgroundColorAttributeName] =
[NSColor colorWithHexColorString:@"0000ee"];
break;
case 45:
self[NSBackgroundColorAttributeName] =
[NSColor colorWithHexColorString:@"cd00cd"];
break;
case 46:
self[NSBackgroundColorAttributeName] =
[NSColor colorWithHexColorString:@"00cdcd"];
break;
case 47:
self[NSBackgroundColorAttributeName] =
[NSColor colorWithHexColorString:@"e5e5e5"];
break;
case 49:
[self removeObjectForKey:NSBackgroundColorAttributeName];
break;
default:
break;
}
}
return self;
}
@end
@implementation NSString (ANSI)
- (BOOL)containsANSICodes {
return [self rangeOfString:@"\033["].location != NSNotFound;
}
- (NSMutableAttributedString*)attributedStringParsingANSICodes {
NSMutableAttributedString* result = [[NSMutableAttributedString alloc] init];
base::scoped_nsobject<NSMutableDictionary> attributes(
[[NSMutableDictionary alloc] init]);
NSArray* parts = [self componentsSeparatedByString:@"\033["];
[result appendAttributedString:[[[NSAttributedString alloc]
initWithString:parts.firstObject
attributes:nil] autorelease]];
for (NSString* part in
[parts subarrayWithRange:NSMakeRange(1, parts.count - 1)]) {
if (part.length == 0)
continue;
NSArray* sequence = [part componentsSeparatedByString:@"m"];
NSString* text = sequence.lastObject;
if (sequence.count < 2) {
[result
appendAttributedString:[[[NSAttributedString alloc]
initWithString:text
attributes:attributes] autorelease]];
} else if (sequence.count >= 2) {
text = [[sequence subarrayWithRange:NSMakeRange(1, sequence.count - 1)]
componentsJoinedByString:@"m"];
[attributes modifyAttributesForANSICodes:sequence[0]];
[result
appendAttributedString:[[[NSAttributedString alloc]
initWithString:text
attributes:attributes] autorelease]];
}
}
return result;
}
@end
| Objective-C++ | 4 | lingxiao-Zhu/electron | shell/browser/ui/cocoa/NSString+ANSI.mm | [
"MIT"
] |
<%--
Copyright 2013 Netflix, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--%>
<table class="sortable">
<thead>
<tr>
<th>Name</th>
<th>ASGs</th>
</tr>
</thead>
<tbody>
<g:each var="stack" in="${stackNames}" status="i">
<tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
<td><g:linkObject type="stack" name="${stack}"/></td>
<td>${stackToAsgNames[stack]?.size()}</td>
</tr>
</g:each>
</tbody>
</table>
| Groovy Server Pages | 4 | claymccoy/asgard | grails-app/views/stack/_stackList.gsp | [
"Apache-2.0"
] |
import _ from 'underscore'
import React from 'react'
import {DOMUtils, RegExpUtils, Utils} from 'nylas-exports'
import {RetinaImg} from 'nylas-component-kit'
import ParticipantProfileStore from './participant-profile-store'
export default class SidebarParticipantProfile extends React.Component {
static displayName = "SidebarParticipantProfile";
static propTypes = {
contact: React.PropTypes.object,
contactThreads: React.PropTypes.array,
}
static containerStyles = {
order: 0,
}
constructor(props) {
super(props);
/* We expect ParticipantProfileStore.dataForContact to return the
* following schema:
* {
* profilePhotoUrl: string
* bio: string
* location: string
* currentTitle: string
* currentEmployer: string
* socialProfiles: hash keyed by type: ('twitter', 'facebook' etc)
* url: string
* handle: string
* }
*/
this.state = ParticipantProfileStore.dataForContact(props.contact)
}
componentDidMount() {
this.usub = ParticipantProfileStore.listen(() => {
this.setState(ParticipantProfileStore.dataForContact(this.props.contact))
})
}
componentWillUnmount() {
this.usub()
}
_renderProfilePhoto() {
if (this.state.profilePhotoUrl) {
return (
<div className="profile-photo-wrap">
<div className="profile-photo">
<img alt="Profile" src={this.state.profilePhotoUrl} />
</div>
</div>
)
}
return this._renderDefaultProfileImage()
}
_renderDefaultProfileImage() {
const hue = Utils.hueForString(this.props.contact.email);
const bgColor = `hsl(${hue}, 50%, 45%)`
const abv = this.props.contact.nameAbbreviation()
return (
<div className="profile-photo-wrap">
<div className="profile-photo">
<div
className="default-profile-image"
style={{backgroundColor: bgColor}}
>
{abv}
</div>
</div>
</div>
)
}
_renderCorePersonalInfo() {
const fullName = this.props.contact.fullName();
let renderName = false;
if (fullName !== this.props.contact.email) {
renderName = <div className="selectable full-name" onClick={this._select}>{this.props.contact.fullName()}</div>
}
return (
<div className="core-personal-info">
{renderName}
<div className="selectable email" onClick={this._select}>{this.props.contact.email}</div>
{this._renderSocialProfiles()}
</div>
)
}
_renderSocialProfiles() {
if (!this.state.socialProfiles) { return false }
const profiles = _.map(this.state.socialProfiles, (profile, type) => {
return (
<a
className="social-profile-item"
key={type}
title={profile.url}
href={profile.url}
>
<RetinaImg
url={`nylas://participant-profile/assets/${type}-sidebar-icon@2x.png`}
mode={RetinaImg.Mode.ContentPreserve}
/>
</a>
)
});
return <div className="social-profiles-wrap">{profiles}</div>
}
_renderAdditionalInfo() {
return (
<div className="additional-info">
{this._renderCurrentJob()}
{this._renderBio()}
{this._renderLocation()}
</div>
)
}
_renderCurrentJob() {
if (!this.state.employer) { return false; }
let title = false;
if (this.state.title) {
title = <span>{this.state.title}, </span>
}
return (
<p className="selectable current-job">{title}{this.state.employer}</p>
)
}
_renderBio() {
if (!this.state.bio) { return false; }
const bioNodes = [];
const hashtagOrMentionRegex = RegExpUtils.hashtagOrMentionRegex();
let bioRemainder = this.state.bio;
let match = null;
let count = 0;
/* I thought we were friends. */
/* eslint no-cond-assign: 0 */
while (match = hashtagOrMentionRegex.exec(bioRemainder)) {
// the first char of the match is whitespace, match[1] is # or @, match[2] is the tag itself.
bioNodes.push(bioRemainder.substr(0, match.index + 1));
if (match[1] === '#') {
bioNodes.push(<a key={count} href={`https://twitter.com/hashtag/${match[2]}`}>{`#${match[2]}`}</a>);
}
if (match[1] === '@') {
bioNodes.push(<a key={count} href={`https://twitter.com/${match[2]}`}>{`@${match[2]}`}</a>);
}
bioRemainder = bioRemainder.substr(match.index + match[0].length);
count += 1;
}
bioNodes.push(bioRemainder);
return (
<p className="selectable bio">{bioNodes}</p>
)
}
_renderLocation() {
if (!this.state.location) { return false; }
return (
<p className="location">
<RetinaImg
url={`nylas://participant-profile/assets/location-icon@2x.png`}
mode={RetinaImg.Mode.ContentPreserve}
style={{"float": "left"}}
/>
<span className="selectable" style={{display: "block", marginLeft: 20}}>{this.state.location}</span>
</p>
)
}
_select(event) {
const el = event.target;
const sel = document.getSelection()
if (el.contains(sel.anchorNode) && !sel.isCollapsed) {
return
}
const anchor = DOMUtils.findFirstTextNode(el)
const focus = DOMUtils.findLastTextNode(el)
if (anchor && focus && focus.data) {
sel.setBaseAndExtent(anchor, 0, focus, focus.data.length)
}
}
render() {
return (
<div className="participant-profile">
{this._renderProfilePhoto()}
{this._renderCorePersonalInfo()}
{this._renderAdditionalInfo()}
</div>
)
}
}
| JSX | 5 | cnheider/nylas-mail | packages/client-app/internal_packages/participant-profile/lib/sidebar-participant-profile.jsx | [
"MIT"
] |
.InspectedElementTree {
padding: 0.25rem;
border-top: 1px solid var(--color-border);
}
.InspectedElementTree:first-of-type {
border-top: none;
}
.HeaderRow {
display: flex;
align-items: center;
}
.Header {
display: flex;
align-items: center;
flex: 1 1;
font-family: var(--font-family-sans);
}
.Item {
display: flex;
}
.Name {
color: var(--color-attribute-name);
flex: 0 0 auto;
}
.Name:after {
content: ': ';
color: var(--color-text);
margin-right: 0.5rem;
}
.Value {
color: var(--color-attribute-value);
overflow: hidden;
text-overflow: ellipsis;
}
.None {
color: var(--color-dimmer);
font-style: italic;
}
.Empty {
color: var(--color-dimmer);
font-style: italic;
padding-left: 0.75rem;
}
.ToggleSuspenseRow {
padding-left: 1rem;
white-space: nowrap;
display: flex;
align-items: center;
}
.EditableValue {
min-width: 1rem;
}
| CSS | 3 | GBKstc/react-analysis | packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSharedStyles.css | [
"MIT"
] |
# CALLBACK IS BEING REDESIGNED. WILL RETURN...
# _in 1 zeros
#
# # set dmetro to the trigger callback, set the clock to zero
# ( 0.5 dmetro 0 1 _in _out "04_callback.scm" ps )
#
# 0 3 _out ftsum
0
| SourcePawn | 1 | aleatoricforest/Sporth | ugens/polysporth/examples/04_callback.sp | [
"MIT"
] |
%namespace LSLib.LS.Story.HeaderParser
%visibility public
%scannertype HeaderScanner
%scanbasetype HeaderScanBase
%tokentype HeaderTokens
letter [a-zA-Z]
digit [0-9]
%x C_COMMENT
%%
/* Reserved words */
"option" return (int)HeaderTokens.OPTION;
"type" return (int)HeaderTokens.TYPE;
"alias_type" return (int)HeaderTokens.ALIAS_TYPE;
"syscall" return (int)HeaderTokens.SYSCALL;
"sysquery" return (int)HeaderTokens.SYSQUERY;
"query" return (int)HeaderTokens.QUERY;
"call" return (int)HeaderTokens.CALL;
"event" return (int)HeaderTokens.EVENT;
"in" return (int)HeaderTokens.IN;
"out" return (int)HeaderTokens.OUT;
/* Special characters */
"{" return (int)'{';
"}" return (int)'}';
"(" return (int)'(';
")" return (int)')';
"[" return (int)'[';
"]" return (int)']';
"," return (int)',';
[ \t\v\r\n\f] ;
({letter}|_)({letter}|{digit}|_)+ { yylval = MakeLiteral(yytext); return (int)HeaderTokens.IDENTIFIER; }
{digit}({digit})* { yylval = MakeLiteral(yytext); return (int)HeaderTokens.INTEGER; }
/* Comments */
[/][/][^\n]*\n ;
"/*" { BEGIN(C_COMMENT); }
<C_COMMENT>"*/" { BEGIN(INITIAL); }
<C_COMMENT>\n { }
<C_COMMENT>. { }
. return ((int)HeaderTokens.BAD);
| Lex | 4 | EmperorPark/lslib | LSLib/LS/Story/HeaderParser/StoryHeader.lex | [
"MIT"
] |
.sidebar {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
flex: 0 0 var(--sidebar-width);
width: var(--sidebar-width);
max-width: var(--sidebar-width);
height: 100%;
user-select: none;
transition: transform 0.3s;
background-color: var(--sidebar-background);
&-wrap {
position: absolute;
z-index: 1;
top: 0;
left: 0;
height: 100%;
user-select: none;
transition: opacity 0.3s;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
touch-action: pan-y;
-webkit-user-drag: none;
}
& .wrapper-unread {
position: relative;
z-index: 2;
& .unread-rooms {
position: absolute;
left: 50%;
overflow: hidden;
min-width: 120px;
max-width: 100%;
padding: 8px var(--sidebar-small-default-padding);
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
animation: fade 0.3s;
text-align: center;
white-space: nowrap;
text-overflow: ellipsis;
border-radius: 25px;
&.bottom-unread-rooms {
bottom: 0;
}
&.top-unread-rooms {
top: 0;
}
}
}
}
@keyframes fade {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@media (width < 768px) {
.sidebar {
position: absolute;
user-select: none;
transform: translate3d(-100%, 0, 0);
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
touch-action: pan-y;
-webkit-user-drag: none;
will-change: transform;
}
.rtl .sidebar {
transform: translate3d(200%, 0, 0);
}
}
@media (width <= 400px) {
.sidebar {
flex: 0 0 var(--sidebar-small-width);
width: var(--sidebar-small-width);
max-width: var(--sidebar-small-width);
&__footer {
display: none;
}
&:not(&--light) {
transform: translate3d(-100%, 0, 0);
}
}
.rtl .sidebar {
transform: translate3d(200%, 0, 0);
}
}
@media (min-width: 1372px) { /* 1440px -68px (eletron menu) */
.sidebar {
flex: 0 0 20%;
width: 20%;
max-width: 20%;
}
}
| CSS | 4 | subramanir2143/Rocket.Chat | app/theme/client/imports/components/sidebar/sidebar.css | [
"MIT"
] |
<%@ page contentType="text/html; charset=utf-8" %>
<%@ taglib prefix="a" uri="/WEB-INF/app.tld"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="res" uri="http://www.unidal.org/webres"%>
<%@ taglib prefix="w" uri="http://www.unidal.org/web/core"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<jsp:useBean id="ctx" type="com.dianping.cat.report.page.server.Context" scope="request" />
<jsp:useBean id="payload" type="com.dianping.cat.report.page.server.Payload" scope="request" />
<jsp:useBean id="model" type="com.dianping.cat.report.page.server.Model" scope="request" />
<a:serverBody>
<script src="${model.webapp}/assets/js/bootstrap-tag.min.js"></script>
<h3 class="text-center text-success">编辑Screen[${model.metricScreenInfo.name}]配置</h3>
<form name="graphSubmit" id="graphForm" method="post" action="${model.pageUri}?op=graphSubmit">
<table class="table table-striped table-condensed " id="content">
<input type="hidden" name="op" value="graphSubmit" />
<input type="hidden" name="graphParam.name" value="${payload.screen}" />
<tr>
<th width="10%">名字</th>
<c:choose>
<c:when test="${not empty model.metricScreenInfo.graphName}">
<th><input type="text" id="domain" name="graphParam.graphName" value="${model.metricScreenInfo.graphName}" size="50" readonly/></th>
</c:when>
<c:otherwise>
<th><input type="text" id="domain" name="graphParam.graphName" size="50"/></th>
</c:otherwise>
</c:choose>
</tr>
<tr>
<td width="10%">endPoints</td>
<td>
<input type="text" name="graphParam.endPoints" class="tag" id="tag_endPoints" placeholder="Enter endPoints ..." />
</td>
</tr>
<tr>
<td width="10%">measurements</td>
<td>
<input type="text" name="graphParam.measurements" class="tag" id="tag_measurements" placeholder="Enter measurements ..." />
</td>
</tr>
<tr>
<td width="10%">视角</td>
<td>
<select id="viewGroup" name="graphParam.view" style="width: 200px">
<option value="endPoint">endPoint</option>
<option value="measurement">measurement</option>
<option value="">组合视角</option>
</select>
</td>
</tr>
</table>
<input class='btn btn-primary btn-sm' style="MARGIN-LEFT:45%" value="提交" type="submit" name="submit" />
</form>
</a:serverBody>
<script type="text/javascript">
$(document).ready(function() {
$('#serverChart').addClass('active open');
$('#serverScreens').addClass('active');
if('${model.metricScreenInfo.view}'!=''){
$('#viewGroup').val('${model.metricScreenInfo.view}');
}
var tag_input = $('#tag_endPoints');
try{
tag_input.tag(
{
placeholder:tag_input.attr('placeholder'),
}
)
//programmatically add a new
var $tag_obj = $('#tag_endPoints').data('tag');
<c:forEach var="item" items="${model.metricScreenInfo.endPoints}" varStatus="status">
$tag_obj.add("${item}");
</c:forEach>
}
catch(e) {
//display a textarea for old IE, because it doesn't support this plugin or another one I tried!
tag_input.after('<textarea id="'+tag_input.attr('id')+'" name="'+tag_input.attr('name')+'" rows="3">'+tag_input.val()+'</textarea>').remove();
//$('#form-field-tags').autosize({append: "\n"});
}
var tag_input = $('#tag_measurements');
try{
tag_input.tag(
{
placeholder:tag_input.attr('placeholder'),
}
)
//programmatically add a new
var $tag_obj = $('#tag_measurements').data('tag');
<c:forEach var="item" items="${model.metricScreenInfo.measures}" varStatus="status">
$tag_obj.add("${item}");
</c:forEach>
}
catch(e) {
//display a textarea for old IE, because it doesn't support this plugin or another one I tried!
tag_input.after('<textarea id="'+tag_input.attr('id')+'" name="'+tag_input.attr('name')+'" rows="3">'+tag_input.val()+'</textarea>').remove();
//$('#form-field-tags').autosize({append: "\n"});
}
});
</script>
<style>
.tags {
width:95%;
}
.tags
</style> | Java Server Pages | 3 | woozhijun/cat | cat-home/src/main/webapp/jsp/report/server/graphUpdate.jsp | [
"Apache-2.0"
] |
/******************************************************************************
* Copyright 2020 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
/**
* @file
*/
#pragma once
#include <map>
/**
* @namespace apollo::third_party_perception::conversion_base
* @brief apollo::third_party_perception
*/
namespace apollo {
namespace third_party_perception {
namespace conversion_base {
std::map<std::int32_t, apollo::hdmap::LaneBoundaryType_Type>
lane_conversion_map = {{0, apollo::hdmap::LaneBoundaryType::DOTTED_YELLOW},
{1, apollo::hdmap::LaneBoundaryType::SOLID_YELLOW},
{2, apollo::hdmap::LaneBoundaryType::UNKNOWN},
{3, apollo::hdmap::LaneBoundaryType::CURB},
{4, apollo::hdmap::LaneBoundaryType::SOLID_YELLOW},
{5, apollo::hdmap::LaneBoundaryType::DOTTED_YELLOW},
{6, apollo::hdmap::LaneBoundaryType::UNKNOWN}};
} // namespace conversion_base
} // namespace third_party_perception
} // namespace apollo
| C | 3 | jzjonah/apollo | modules/third_party_perception/tools/conversion_base.h | [
"Apache-2.0"
] |
#!/usr/bin/env bash
# Nerd Fonts Version: 2.1.0
# Script Version: 1.0.1
# bump version number for release in scripts (bash and python)
# does not do semver format checking
# this obviously is not perfect but works good enough for now (YAGNI)
# todo take some ideas from: https://github.com/fsaintjacques/semver-tool
#set -x
LINE_PREFIX="# [Nerd Fonts] "
if [ ! $# -eq 1 ]
then
echo "$LINE_PREFIX No release version given, must give semver release version in format: #.#.#, e.g. 1.1.0"
fi
release=$1
sed -i "s|[0-9]\\.[0-9]\\.[0-9]|$release|g" ../../font-patcher
sed -i "s|\\# Nerd Fonts Version: [0-9]\\.[0-9]\\.[0-9]|\\# Nerd Fonts Version: $release|g" ../../bin/scripts/**/*.sh
sed -i "s|\\# Nerd Fonts Version: [0-9]\\.[0-9]\\.[0-9]|\\# Nerd Fonts Version: $release|g" ../../bin/scripts/**/*.py
sed -i "s|\\# Nerd Fonts Version: [0-9]\\.[0-9]\\.[0-9]|\\# Nerd Fonts Version: $release|g" ../../bin/scripts/*.sh
sed -i "s|\\# Nerd Fonts Version: [0-9]\\.[0-9]\\.[0-9]|\\# Nerd Fonts Version: $release|g" ../../bin/scripts/*.py
sed -i "s|\\# version: [0-9]\\.[0-9]\\.[0-9]|\\# version: $release|g" ../../bin/scripts/*.sh
sed -i "s|version=\"[0-9]\\.[0-9]\\.[0-9]\"|version=\"$release\"|g" ../../bin/scripts/*.sh
exit
| Shell | 4 | th3cyb3rc0p/nerd-fonts | bin/scripts/version-bump.sh | [
"MIT"
] |
size: 1600px 900px;
dpi: 240;
font: "Latin Modern Roman";
limit-y: 0 1000;
limit-x: 0 1000;
scale-y: logarithmic;
axes {
}
errorbars {
data-x: csv("test/testdata/errorbars.csv" "x");
data-y-low: csv("test/testdata/errorbars.csv" "y_min");
data-y-high: csv("test/testdata/errorbars.csv" "y_max");
}
points {
data-x: csv("test/testdata/errorbars.csv" "x");
data-y: csv("test/testdata/errorbars.csv" "y");
}
legend {
item {
label: "Random Data";
}
}
| CLIPS | 3 | asmuth-archive/travistest | test/examples/charts_scientific_errorbars_log.clp | [
"Apache-2.0"
] |
/* tslint:disable max-line-length */
/**
*              
*/
declare const indigo: {
/**
* Preview: 
*/
50: '#e8eaf6';
/**
* Preview: 
*/
100: '#c5cae9';
/**
* Preview: 
*/
200: '#9fa8da';
/**
* Preview: 
*/
300: '#7986cb';
/**
* Preview: 
*/
400: '#5c6bc0';
/**
* Preview: 
*/
500: '#3f51b5';
/**
* Preview: 
*/
600: '#3949ab';
/**
* Preview: 
*/
700: '#303f9f';
/**
* Preview: 
*/
800: '#283593';
/**
* Preview: 
*/
900: '#1a237e';
/**
* Preview: 
*/
A100: '#8c9eff';
/**
* Preview: 
*/
A200: '#536dfe';
/**
* Preview: 
*/
A400: '#3d5afe';
/**
* Preview: 
*/
A700: '#304ffe';
};
export default indigo;
| TypeScript | 4 | starmarke/starmarke | node_modules/@mui/material/colors/indigo.d.ts | [
"MIT"
] |
Hello Admin,
<%= PersonView.handle(@comment.author) %> has commented for the first time saying:
<%= @comment.content %>
To handle the comment by this new commenter, go to the admin new comments dashboard: <%= admin_news_item_comment_url(@comment) %>
💚, Logbot
| HTML+EEX | 3 | gustavoarmoa/changelog.com | lib/changelog_web/templates/email/comment_approval.text.eex | [
"MIT"
] |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../interfaces/AggregatorValidatorInterface.sol";
contract MockAggregatorValidator is AggregatorValidatorInterface {
uint8 immutable id;
constructor(uint8 id_) {
id = id_;
}
event ValidateCalled(
uint8 id,
uint256 previousRoundId,
int256 previousAnswer,
uint256 currentRoundId,
int256 currentAnswer
);
function validate(
uint256 previousRoundId,
int256 previousAnswer,
uint256 currentRoundId,
int256 currentAnswer
) external override returns (bool) {
emit ValidateCalled(id, previousRoundId, previousAnswer, currentRoundId, currentAnswer);
return true;
}
}
| Solidity | 3 | solidity-external-tests/chainlink | contracts/src/v0.8/mocks/MockAggregatorValidator.sol | [
"MIT"
] |
//
// ArrayUtil.mm
//
// Created by Giles Payne on 2020/02/09.
//
#import "ArrayUtil.h"
NSMutableArray* createArrayWithSize(int size, NSObject* val) {
NSMutableArray *array = [NSMutableArray arrayWithCapacity:size];
for (int i = 0; i < size; i++){
[array addObject:val];
}
return array;
}
| Objective-C++ | 3 | artun3e/opencv | modules/core/misc/objc/common/ArrayUtil.mm | [
"BSD-3-Clause"
] |
" Vim syntax file
" Language: C#
" Maintainer: Nick Jensen <nickspoon@gmail.com>
" Former Maintainers: Anduin Withers <awithers@anduin.com>
" Johannes Zellner <johannes@zellner.org>
" Last Change: 2020-11-23
" Filenames: *.cs
" License: Vim (see :h license)
" Repository: https://github.com/nickspoons/vim-cs
"
" REFERENCES:
" [1] ECMA TC39: C# Language Specification (WD13Oct01.doc)
if exists('b:current_syntax')
finish
endif
let s:save_cpo = &cpoptions
set cpoptions&vim
syn keyword csType bool byte char decimal double float int long object sbyte short string T uint ulong ushort var void dynamic
syn keyword csStorage delegate enum interface namespace struct
syn keyword csRepeat break continue do for foreach goto return while
syn keyword csConditional else if switch
syn keyword csLabel case default
syn match csOperatorError display +::+
syn match csGlobal display +global::+
" user labels (see [1] 8.6 Statements)
syn match csLabel display +^\s*\I\i*\s*:\%([^:]\)\@=+
syn keyword csModifier abstract const extern internal override private protected public readonly sealed static virtual volatile
syn keyword csConstant false null true
syn keyword csException try catch finally throw when
syn keyword csLinq ascending by descending equals from group in into join let on orderby select where
syn keyword csAsync async await
syn keyword csUnspecifiedStatement as base checked event fixed in is lock nameof operator out params ref sizeof stackalloc this unchecked unsafe using
syn keyword csUnsupportedStatement add remove value
syn keyword csUnspecifiedKeyword explicit implicit
" Contextual Keywords
syn match csContextualStatement /\<yield[[:space:]\n]\+\%(return\|break\)/me=s+5
syn match csContextualStatement /\<partial[[:space:]\n]\+\%(class\|struct\|interface\)/me=s+7
syn match csContextualStatement /\<\%(get\|set\)\%(;\|[[:space:]\n]*{\)/me=s+3
syn match csContextualStatement /\<\%(get\|set\)\s*=>/me=s+3
syn match csContextualStatement /\<where\>[^:]\+:/me=s+5
" Operators
syn keyword csTypeOf typeof contained
syn region csTypeOfStatement start="typeof(" end=")" contains=csType, csTypeOf
" Punctuation
syn match csBraces "[{}\[\]]" display
syn match csParens "[()]" display
syn match csOpSymbols "+\{1,2}" display
syn match csOpSymbols "-\{1,2}" display
syn match csOpSymbols "=\{1,2}" display
syn match csOpSymbols ">\{1,2}" display
syn match csOpSymbols "<\{1,2}" display
syn match csOpSymbols "[!><+\-*/]=" display
syn match csOpSymbols "[!*/^]" display
syn match csOpSymbols "=>" display
syn match csEndColon ";" display
syn match csLogicSymbols "&&" display
syn match csLogicSymbols "||" display
syn match csLogicSymbols "?" display
syn match csLogicSymbols ":" display
" Generics
syn region csGeneric matchgroup=csGenericBraces start="<" end=">" oneline contains=csType,csGeneric,csUserType,csUserIdentifier,csUserInterface,csUserMethod
" Comments
"
" PROVIDES: @csCommentHook
syn keyword csTodo contained TODO FIXME XXX NOTE HACK TBD
syn region csComment start="/\*" end="\*/" contains=@csCommentHook,csTodo,@Spell
syn match csComment "//.*$" contains=@csCommentHook,csTodo,@Spell
" xml markup inside '///' comments
syn cluster xmlRegionHook add=csXmlCommentLeader
syn cluster xmlCdataHook add=csXmlCommentLeader
syn cluster xmlStartTagHook add=csXmlCommentLeader
syn keyword csXmlTag contained Libraries Packages Types Excluded ExcludedTypeName ExcludedLibraryName
syn keyword csXmlTag contained ExcludedBucketName TypeExcluded Type TypeKind TypeSignature AssemblyInfo
syn keyword csXmlTag contained AssemblyName AssemblyPublicKey AssemblyVersion AssemblyCulture Base
syn keyword csXmlTag contained BaseTypeName Interfaces Interface InterfaceName Attributes Attribute
syn keyword csXmlTag contained AttributeName Members Member MemberSignature MemberType MemberValue
syn keyword csXmlTag contained ReturnValue ReturnType Parameters Parameter MemberOfPackage
syn keyword csXmlTag contained ThreadingSafetyStatement Docs devdoc example overload remarks returns summary
syn keyword csXmlTag contained threadsafe value internalonly nodoc exception param permission platnote
syn keyword csXmlTag contained seealso b c i pre sub sup block code note paramref see subscript superscript
syn keyword csXmlTag contained list listheader item term description altcompliant altmember
syn cluster xmlTagHook add=csXmlTag
syn match csXmlCommentLeader "///" contained
syn match csXmlComment "///.*$" contains=csXmlCommentLeader,@csXml,@Spell keepend
syn include @csXml syntax/xml.vim
hi def link xmlRegion Comment
" Since syntax/xml.vim contains `syn spell toplevel`, we need to set it back to `default` here.
syn spell default
" [1] 9.5 Pre-processing directives
syn region csPreCondit start="^\s*#\s*\%(define\|undef\|if\|elif\|else\|endif\|line\|error\|warning\|pragma\)\>" skip="\\$" end="$" contains=csComment keepend
syn region csRegion matchgroup=csPreCondit start="^\s*#\s*region.*$" end="^\s*#\s*endregion" transparent fold contains=TOP
syn region csSummary start="^\s*/// <summary" end="^\%\(\s*///\)\@!" transparent fold keepend
syn region csClassType start="@\@1<!\<class\>"hs=s+6 end="[:\n{]"me=e-1 contains=csClass
" csUserType may be defined by user scripts/plugins - it should be contained in csNewType
syn region csNewType start="@\@1<!\<new\>"hs=s+4 end="[;\n{(<\[]"me=e-1 contains=csNew,csUserType
syn region csIsType start=" is "hs=s+4 end="[A-Za-z0-9]\+" oneline contains=csIsAs
syn region csIsType start=" as "hs=s+4 end="[A-Za-z0-9]\+" oneline contains=csIsAs
syn keyword csNew new contained
syn keyword csClass class contained
syn keyword csIsAs is as
" Strings and constants
syn match csSpecialError "\\." contained
syn match csSpecialCharError "[^']" contained
" [1] 9.4.4.4 Character literals
syn match csSpecialChar +\\["\\'0abfnrtvx]+ contained display
syn match csUnicodeNumber +\\x\x\{2,4}+ contained contains=csUnicodeSpecifier display
syn match csUnicodeNumber +\\u\x\{4}+ contained contains=csUnicodeSpecifier display
syn match csUnicodeNumber +\\U\x\{8}+ contained contains=csUnicodeSpecifier display
syn match csUnicodeSpecifier +\\[uU]+ contained display
syn region csString matchgroup=csQuote start=+"+ end=+"+ end=+$+ extend contains=csSpecialChar,csSpecialError,csUnicodeNumber,@Spell
syn match csCharacter "'[^']*'" contains=csSpecialChar,csSpecialCharError,csUnicodeNumber display
syn match csCharacter "'\\''" contains=csSpecialChar display
syn match csCharacter "'[^\\]'" display
syn match csNumber "\<0[0-7]*[lL]\=\>" display
syn match csNumber "\<0[xX][[:xdigit:]_]\+[lL]\=\>" display
syn match csNumber "\<0[bB][01_]\+[lL]\=\>" display
syn match csNumber "\<[[:digit:]_]\+[lL]\=\>" display
syn match csNumber "\<[[:digit:]_]\+\.[[:digit:]_]*\%\([eE][-+]\=[[:digit:]_]\+\)\=[fFdDmM]\=" display
syn match csNumber "\.[[:digit:]_]\+\%\([eE][-+]\=[[:digit:]_]\+\)\=[fFdDmM]\=" display
syn match csNumber "\<[[:digit:]_]\+[eE][-+]\=[[:digit:]_]\+[fFdDmM]\=\>" display
syn match csNumber "\<[[:digit:]_]\+\%\([eE][-+]\=[[:digit:]_]\+\)\=[fFdDmM]\>" display
syn region csInterpolatedString matchgroup=csQuote start=+\$"+ end=+"+ extend contains=csInterpolation,csEscapedInterpolation,csSpecialChar,csSpecialError,csUnicodeNumber,@Spell
syn region csInterpolation matchgroup=csInterpolationDelimiter start=+{+ end=+}+ keepend contained contains=@csAll,csBraced,csBracketed,csInterpolationAlign,csInterpolationFormat
syn match csEscapedInterpolation "{{" transparent contains=NONE display
syn match csEscapedInterpolation "}}" transparent contains=NONE display
syn region csInterpolationAlign matchgroup=csInterpolationAlignDel start=+,+ end=+}+ end=+:+me=e-1 contained contains=csNumber,csConstant,csCharacter,csParens,csOpSymbols,csString,csBracketed display
syn match csInterpolationFormat +:[^}]\+}+ contained contains=csInterpolationFormatDel display
syn match csInterpolationAlignDel +,+ contained display
syn match csInterpolationFormatDel +:+ contained display
syn region csVerbatimString matchgroup=csQuote start=+@"+ end=+"+ skip=+""+ extend contains=csVerbatimQuote,@Spell
syn match csVerbatimQuote +""+ contained
syn match csQuoteError +@$"+he=s+2,me=s+2
syn region csInterVerbString matchgroup=csQuote start=+\$@"+ end=+"+ skip=+""+ extend contains=csInterpolation,csEscapedInterpolation,csSpecialChar,csSpecialError,csUnicodeNumber,csVerbatimQuote,@Spell
syn region csBracketed matchgroup=csParens start=+(+ end=+)+ extend contained transparent contains=@csAll,csBraced,csBracketed
syn region csBraced matchgroup=csParens start=+{+ end=+}+ extend contained transparent contains=@csAll,csBraced,csBracketed
syn cluster csAll contains=csCharacter,csClassType,csComment,csContextualStatement,csEndColon,csIsType,csLabel,csLogicSymbols,csNewType,csConstant,csNumber,csOpSymbols,csOperatorError,csParens,csPreCondit,csRegion,csString,csSummary,csType,csUnicodeNumber,csUnicodeSpecifier,csInterpolatedString,csVerbatimString,csInterVerbString,csUserType,csUserIdentifier,csUserInterface,csUserMethod
" The default highlighting.
hi def link csType Type
hi def link csClassType Type
hi def link csIsType Type
hi def link csStorage Structure
hi def link csClass Structure
hi def link csRepeat Repeat
hi def link csConditional Conditional
hi def link csLabel Label
hi def link csModifier StorageClass
hi def link csConstant Constant
hi def link csException Exception
hi def link csTypeOf Keyword
hi def link csTypeOfStatement Typedef
hi def link csUnspecifiedStatement Statement
hi def link csUnsupportedStatement Statement
hi def link csUnspecifiedKeyword Keyword
hi def link csNew Statement
hi def link csLinq Statement
hi def link csIsAs Keyword
hi def link csAsync Keyword
hi def link csContextualStatement Statement
hi def link csOperatorError Error
hi def link csTodo Todo
hi def link csComment Comment
hi def link csOpSymbols Operator
hi def link csLogicSymbols Operator
hi def link csSpecialError Error
hi def link csSpecialCharError Error
hi def link csString String
hi def link csQuote String
hi def link csQuoteError Error
hi def link csInterpolatedString String
hi def link csVerbatimString String
hi def link csInterVerbString String
hi def link csVerbatimQuote SpecialChar
hi def link csPreCondit PreCondit
hi def link csCharacter Character
hi def link csSpecialChar SpecialChar
hi def link csNumber Number
hi def link csUnicodeNumber SpecialChar
hi def link csUnicodeSpecifier SpecialChar
hi def link csInterpolationDelimiter Delimiter
hi def link csInterpolationAlignDel csInterpolationDelimiter
hi def link csInterpolationFormat csInterpolationDelimiter
hi def link csInterpolationFormatDel csInterpolationDelimiter
hi def link csGenericBraces csBraces
" xml markup
hi def link csXmlCommentLeader Comment
hi def link csXmlComment Comment
hi def link csXmlTag Statement
let b:current_syntax = 'cs'
let &cpoptions = s:save_cpo
unlet s:save_cpo
" vim: vts=16,28
| VimL | 5 | uga-rosa/neovim | runtime/syntax/cs.vim | [
"Vim"
] |
import sys
def handler(event, context):
return {
"version": "python{major}.{minor}".format(
major=sys.version_info.major, minor=sys.version_info.minor
)
}
| Python | 4 | matt-mercer/localstack | tests/integration/awslambda/functions/lambda_python_version.py | [
"Apache-2.0"
] |
PREFIX : <http://example.org/>
SELECT *
WHERE
{
GRAPH ?g { }
}
| SPARQL | 2 | alpano-unibz/ontop | test/sparql-compliance/src/test/resources/testcases-dawg/data-r2/syntax-sparql2/syntax-graph-01.rq | [
"Apache-2.0"
] |
using Ryujinx.Graphics.GAL.Multithreading.Model;
using Ryujinx.Graphics.GAL.Multithreading.Resources;
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
{
struct TextureSetStorageCommand : IGALCommand
{
public CommandType CommandType => CommandType.TextureSetStorage;
private TableRef<ThreadedTexture> _texture;
private BufferRange _storage;
public void Set(TableRef<ThreadedTexture> texture, BufferRange storage)
{
_texture = texture;
_storage = storage;
}
public static void Run(ref TextureSetStorageCommand command, ThreadedRenderer threaded, IRenderer renderer)
{
command._texture.Get(threaded).Base.SetStorage(threaded.Buffers.MapBufferRange(command._storage));
}
}
}
| C# | 4 | BSoDGamingYT/Ryujinx | Ryujinx.Graphics.GAL/Multithreading/Commands/Texture/TextureSetStorageCommand.cs | [
"MIT"
] |
<interface name="device">
<!-- Setup the structure, but do not touch or enable the device -->
<method rtype="int" name="setup">
<arg atype="struct resource *" name="resources" />
</method>
<!-- Enable the device. Return ENABLE_COMPLETE or CONTINUE -->
<method rtype="int" name="enable" />
<!-- Enable the device. Return DISABLE_COMPLETE or CONTINUE -->
<method rtype="int" name="disable" />
<!-- Enable the device. Return DISABLE_COMPLETE, ENABLE_COMPLETE, maybe interface specific or CONTINUE -->
<method rtype="int" name="poll" />
<!-- Enable the device. Return DISABLE_COMPLETE, ENABLE_COMPLETE, maybe interface specific or CONTINUE -->
<method rtype="int" name="interrupt">
<arg atype="int" name="interrupt" />
</method>
<method rtype="int" name="num_interfaces" />
<method rtype="struct generic_interface *" name="get_interface">
<arg atype="int" name="interface_num" />
</method>
</interface>
| D | 3 | CyberQueenMara/baseband-research | okl4_kernel/okl4_2.1.1-patch.9/libs/driverv2/include/device_if.di | [
"MIT"
] |
{}
:configs $ {} (:reload-fn |app.main/reload!) (:port 6001) (:output |src) (:storage-key |calcit.cirru)
:modules $ [] |respo.calcit/ |lilac/ |memof/ |respo-ui.calcit/ |respo-markdown.calcit/ |reel.calcit/ |respo-cirru-editor.calcit/
:init-fn |app.main/main!
:extension |.cljs
:ir $ {} (:package |app)
:files $ {}
|app.comp.candidates $ {}
:defs $ {}
|comp-candidates $ {}
:data $ {}
|T $ {} (:text |defcomp) (:type :leaf) (:at 1511973055034) (:by |root)
|j $ {} (:text |comp-candidates) (:type :leaf) (:at 1511973025826) (:by |root)
|r $ {}
:data $ {}
:type :expr
:at 1511973025826
:by |root
|v $ {}
:data $ {}
|D $ {} (:text |list->) (:type :leaf) (:at 1511973082048) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1511973060536) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1511973061777) (:by |root)
|j $ {}
:data $ {}
|D $ {} (:text |merge) (:type :leaf) (:at 1511973279065) (:by |root)
|L $ {} (:text |ui/row) (:type :leaf) (:at 1511973283045) (:by |root)
|T $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1511973062432) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:height) (:type :leaf) (:at 1511973063574) (:by |root)
|j $ {} (:text |48) (:type :leaf) (:at 1511973076712) (:by |root)
:type :expr
:at 1511973062705
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |:color) (:type :leaf) (:at 1511973288521) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1511973609258) (:by |root)
|j $ {} (:text |230) (:type :leaf) (:at 1511973618279) (:by |root)
|r $ {} (:text |80) (:type :leaf) (:at 1511973620250) (:by |root)
|v $ {} (:text |80) (:type :leaf) (:at 1511973623178) (:by |root)
|x $ {} (:text |0.8) (:type :leaf) (:at 1511973613208) (:by |root)
:type :expr
:at 1511973607728
:by |root
:type :expr
:at 1511973287648
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |:font-family) (:type :leaf) (:at 1511973637055) (:by |root)
|j $ {} (:text "||Josefin Sans, serif-sans") (:type :leaf) (:at 1511973644489) (:by |root)
:type :expr
:at 1511973634860
:by |root
:type :expr
:at 1511973062077
:by |root
:type :expr
:at 1511973277957
:by |root
:type :expr
:at 1511973061071
:by |root
:type :expr
:at 1511973058488
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1629746157482) (:by |Z6DCCnivu)
|j $ {} (:text |examples) (:type :leaf) (:at 1511973097815) (:by |root)
|n $ {}
:data $ {}
|T $ {} (:text |.to-list) (:type :leaf) (:at 1629747289545) (:by |Z6DCCnivu)
:type :expr
:at 1629747286821
:by |Z6DCCnivu
|r $ {}
:data $ {}
|T $ {} (:text |.map-pair) (:type :leaf) (:at 1629746160565) (:by |Z6DCCnivu)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1511973102459) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |alias) (:type :leaf) (:at 1629746162627) (:by |Z6DCCnivu)
|j $ {} (:text |example) (:type :leaf) (:at 1629746164491) (:by |Z6DCCnivu)
:type :expr
:at 1511973103163
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1511973135393) (:by |root)
|j $ {} (:text |alias) (:type :leaf) (:at 1511973136195) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1511973145013) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1511973145648) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1511973308433) (:by |root)
|j $ {}
:data $ {}
|D $ {} (:text |{}) (:type :leaf) (:at 1511973312444) (:by |root)
|T $ {}
:data $ {}
|T $ {} (:text |:margin) (:type :leaf) (:at 1511973295930) (:by |root)
|j $ {} (:text |8) (:type :leaf) (:at 1511973302204) (:by |root)
:type :expr
:at 1511973294715
:by |root
|j $ {}
:data $ {}
|T $ {} (:text |:cursor) (:type :leaf) (:at 1511973321662) (:by |root)
|j $ {} (:text |:pointer) (:type :leaf) (:at 1511973323528) (:by |root)
:type :expr
:at 1511973318972
:by |root
:type :expr
:at 1511973311261
:by |root
:type :expr
:at 1511973307617
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |:on-click) (:type :leaf) (:at 1521475863465) (:by |root)
|j $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1587658722187) (:by |Z6DCCnivu)
|L $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1587658723183) (:by |Z6DCCnivu)
|j $ {} (:text |d!) (:type :leaf) (:at 1587658723879) (:by |Z6DCCnivu)
:type :expr
:at 1587658722827
:by |Z6DCCnivu
|T $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1587658720883) (:by |Z6DCCnivu)
|j $ {} (:text |:load-tree) (:type :leaf) (:at 1511973433865) (:by |root)
|r $ {} (:text |example) (:type :leaf) (:at 1511973438022) (:by |root)
:type :expr
:at 1511973361773
:by |root
:type :expr
:at 1587658721445
:by |Z6DCCnivu
:type :expr
:at 1511973355505
:by |root
:type :expr
:at 1511973145272
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |<>) (:type :leaf) (:at 1511973149544) (:by |root)
|j $ {}
:data $ {}
|D $ {} (:text |turn-string) (:type :leaf) (:at 1629746172287) (:by |Z6DCCnivu)
|T $ {} (:text |alias) (:type :leaf) (:at 1511973329304) (:by |root)
:type :expr
:at 1511973334221
:by |root
:type :expr
:at 1511973149897
:by |root
:type :expr
:at 1511973143625
:by |root
:type :expr
:at 1511973134580
:by |root
:type :expr
:at 1511973102179
:by |root
:type :expr
:at 1511973099556
:by |root
:type :expr
:at 1511973087772
:by |root
:type :expr
:at 1511973056059
:by |root
:type :expr
:at 1511973025826
:by |root
:proc $ {}
:data $ {}
:type :expr
:at 1511973023392
:by |root
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1511973023392) (:by |root)
|j $ {} (:text |app.comp.candidates) (:type :leaf) (:at 1511973023392) (:by |root)
|r $ {}
:data $ {}
|yyj $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1511973179252) (:by |root)
|j $ {} (:text |app.code) (:type :leaf) (:at 1511973182851) (:by |root)
|r $ {} (:text |:as) (:type :leaf) (:at 1511973183256) (:by |root)
|v $ {} (:text |code) (:type :leaf) (:at 1511973183812) (:by |root)
:type :expr
:at 1511973178845
:by |root
|yyr $ {}
:data $ {}
|T $ {} (:text |app.schema) (:type :leaf) (:at 1629746672247) (:by |Z6DCCnivu)
|j $ {} (:text |:refer) (:type :leaf) (:at 1629746673200) (:by |Z6DCCnivu)
|r $ {}
:data $ {}
|T $ {} (:text |examples) (:type :leaf) (:at 1629746674578) (:by |Z6DCCnivu)
:type :expr
:at 1629746673444
:by |Z6DCCnivu
:type :expr
:at 1629746670477
:by |Z6DCCnivu
|yT $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |app.style.typeset) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:as) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |typeset) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|yj $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |respo-ui.core) (:type :leaf) (:at 1521438638152) (:by |root)
|r $ {} (:text |:as) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |ui) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|yy $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1510591413807) (:by |root)
|j $ {} (:text |keycode.core) (:type :leaf) (:at 1510591416272) (:by |root)
|r $ {} (:text |:as) (:type :leaf) (:at 1510591417546) (:by |root)
|v $ {} (:text |keycode) (:type :leaf) (:at 1510591419159) (:by |root)
:type :expr
:at 1510591413363
:by |root
|T $ {} (:text |:require) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |respo-ui.core) (:type :leaf) (:at 1629746150963) (:by |Z6DCCnivu)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |hsl) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|n $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506667371307) (:by |root)
|j $ {} (:text |respo.core) (:type :leaf) (:at 1558163953440) (:by |Z6DCCnivu)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506667375567) (:by |root)
|v $ {}
:data $ {}
|yT $ {} (:text |button) (:type :leaf) (:at 1510590567544) (:by |root)
|T $ {} (:text |[]) (:type :leaf) (:at 1506667375866) (:by |root)
|j $ {} (:text |defcomp) (:type :leaf) (:at 1506667378716) (:by |root)
|l $ {} (:text |list->) (:type :leaf) (:at 1511973085212) (:by |root)
|n $ {} (:text |<>) (:type :leaf) (:at 1506667381490) (:by |root)
|r $ {} (:text |div) (:type :leaf) (:at 1506667379344) (:by |root)
|v $ {} (:text |span) (:type :leaf) (:at 1506667383489) (:by |root)
|x $ {} (:text |a) (:type :leaf) (:at 1506667393967) (:by |root)
|y $ {} (:text |textarea) (:type :leaf) (:at 1506667396247) (:by |root)
:type :expr
:at 1506667375711
:by |root
:type :expr
:at 1506667368875
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |respo.comp.space) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |=<) (:type :leaf) (:at 1506667403087) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|y $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |app.style.widget) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:as) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |widget) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1511973023392
:by |root
|app.comp.container $ {}
:defs $ {}
|on-command $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |on-command) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |snapshot) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |dispatch!) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |e) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||command) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |e) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|x $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1510591321554) (:by |root)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |event) (:type :leaf) (:at 1510591327536) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:event) (:type :leaf) (:at 1510591329326) (:by |root)
|j $ {} (:text |e) (:type :leaf) (:at 1510591330824) (:by |root)
:type :expr
:at 1510591328416
:by |root
:type :expr
:at 1510591322700
:by |root
:type :expr
:at 1510591322523
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1510591367209) (:by |root)
|j $ {}
:data $ {}
|D $ {} (:text |and) (:type :leaf) (:at 1510591383721) (:by |root)
|T $ {}
:data $ {}
|T $ {} (:text |.-metaKey) (:type :leaf) (:at 1510591372143) (:by |root)
|j $ {} (:text |event) (:type :leaf) (:at 1510591373510) (:by |root)
:type :expr
:at 1510591369971
:by |root
|b $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1510591390490) (:by |root)
|j $ {} (:text |config/key-s) (:type :leaf) (:at 1629746692436) (:by |Z6DCCnivu)
|r $ {}
:data $ {}
|T $ {} (:text |.-keyCode) (:type :leaf) (:at 1510591397636) (:by |root)
|j $ {} (:text |event) (:type :leaf) (:at 1510591518748) (:by |root)
:type :expr
:at 1510591516437
:by |root
:type :expr
:at 1510591390316
:by |root
:type :expr
:at 1510591382015
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |do) (:type :leaf) (:at 1510591403473) (:by |root)
|j $ {}
:data $ {}
|D $ {} (:text |dispatch!) (:type :leaf) (:at 1510591432029) (:by |root)
|L $ {} (:text |:write-code) (:type :leaf) (:at 1510590625744) (:by |root)
|T $ {}
:data $ {}
|T $ {} (:text |format-to-lisp) (:type :leaf) (:at 1629746438553) (:by |Z6DCCnivu)
|j $ {}
:data $ {}
|T $ {} (:text |:tree) (:type :leaf) (:at 1510590619299) (:by |root)
|j $ {} (:text |snapshot) (:type :leaf) (:at 1510590620705) (:by |root)
:type :expr
:at 1510590618286
:by |root
:type :expr
:at 1510590599528
:by |root
:type :expr
:at 1510590622679
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |.preventDefault) (:type :leaf) (:at 1510591570236) (:by |root)
|j $ {} (:text |event) (:type :leaf) (:at 1510591571006) (:by |root)
:type :expr
:at 1510591567897
:by |root
:type :expr
:at 1510591403189
:by |root
:type :expr
:at 1510591366758
:by |root
:type :expr
:at 1510591317766
:by |root
:type :expr
:at 1506618943349
:by nil
|comp-explorer $ {}
:data $ {}
|T $ {} (:text |defcomp) (:type :leaf) (:at 1521439390296) (:by |root)
|j $ {} (:text |comp-explorer) (:type :leaf) (:at 1521439315903) (:by |root)
|n $ {}
:data $ {}
|T $ {} (:text |states) (:type :leaf) (:at 1521439395164) (:by |root)
|j $ {} (:text |store) (:type :leaf) (:at 1521439395876) (:by |root)
|r $ {} (:text |snapshot) (:type :leaf) (:at 1521439399913) (:by |root)
:type :expr
:at 1521439391319
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |ui/center) (:type :leaf) (:at 1521439315903) (:by |root)
|r $ {} (:text |ui/row) (:type :leaf) (:at 1521439315903) (:by |root)
|v $ {} (:text |style-theme) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |ui/flex) (:type :leaf) (:at 1521439315903) (:by |root)
|r $ {} (:text |ui/column) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |comp-candidates) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |comp-editor) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |states) (:type :leaf) (:at 1521439315903) (:by |root)
|r $ {} (:text |snapshot) (:type :leaf) (:at 1521439315903) (:by |root)
|v $ {} (:text |on-update!) (:type :leaf) (:at 1521439315903) (:by |root)
|x $ {} (:text |on-command) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |;) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |div) (:type :leaf) (:at 1521439315903) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:width) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |1) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |0) (:type :leaf) (:at 1521439315903) (:by |root)
|r $ {} (:text |0) (:type :leaf) (:at 1521439315903) (:by |root)
|v $ {} (:text |100) (:type :leaf) (:at 1521439315903) (:by |root)
|x $ {} (:text |0.3) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|x $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |ui/column) (:type :leaf) (:at 1521439315903) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:width) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text ||38.2%) (:type :leaf) (:at 1521478395684) (:by |root)
:type :expr
:at 1521439315903
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |:white) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|r $ {}
:data $ {}
|yj $ {}
:data $ {}
|T $ {} (:text |=<) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |8) (:type :leaf) (:at 1521439315903) (:by |root)
|r $ {} (:text |nil) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
|yr $ {}
:data $ {}
|T $ {} (:text |button) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |ui/button) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
|r $ {}
:data $ {}
|D $ {} (:text |:on-click) (:type :leaf) (:at 1521475845421) (:by |root)
|T $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1587658702196) (:by |Z6DCCnivu)
|L $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1587658702813) (:by |Z6DCCnivu)
|j $ {} (:text |d!) (:type :leaf) (:at 1587658703399) (:by |Z6DCCnivu)
:type :expr
:at 1587658702570
:by |Z6DCCnivu
|T $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1587658700969) (:by |Z6DCCnivu)
|j $ {} (:text |:write-code) (:type :leaf) (:at 1521439315903) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |format-cirru) (:type :leaf) (:at 1629746489860) (:by |Z6DCCnivu)
|j $ {}
:data $ {}
|T $ {} (:text |:tree) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |snapshot) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1587658701379
:by |Z6DCCnivu
:type :expr
:at 1521475837190
:by |root
:type :expr
:at 1521439315903
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |<>) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text "||Indentation Syntax") (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|yt $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747461889) (:text |=<)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747461889) (:text |8)
|r $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747461889) (:text |nil)
:type :expr
:at 1629747461889
:by |Z6DCCnivu
|yv $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |button)
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747459452)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |{})
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747459452)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |:style)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |ui/button)
|r $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747459452)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |:on-click)
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747459452)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |fn)
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747459452)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |e)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |d!)
|r $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747459452)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |d!)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |:write-code)
|r $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747459452)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |format-to-lisp)
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747459452)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |:tree)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |snapshot)
|r $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747459452) (:text |<>)
|j $ {} (:text ||S-Expression) (:type :leaf) (:at 1629747468021) (:by |Z6DCCnivu)
:type :expr
:at 1629747459452
:by |Z6DCCnivu
:type :expr
:at 1629747459452
:by |Z6DCCnivu
|T $ {} (:text |div) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |8) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|q $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |button)
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747487274)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |{})
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747487274)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |:style)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |ui/button)
|r $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747487274)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |:on-click)
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747487274)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |fn)
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747487274)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |e)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |d!)
|r $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747487274)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |d!)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |:write-code)
|r $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747487274)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |js/JSON.stringify)
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747487274)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |to-js-data)
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747487274)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |:tree)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |snapshot)
|r $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |nil)
|v $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |2)
|r $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629747487274)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text |<>)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747487274) (:text ||JSON)
:type :expr
:at 1629747487274
:by |Z6DCCnivu
|t $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747491038) (:text |=<)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747491038) (:text |8)
|r $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747491038) (:text |nil)
:type :expr
:at 1629747491038
:by |Z6DCCnivu
|x $ {}
:data $ {}
|T $ {} (:text |button) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |ui/button) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |:on-click) (:type :leaf) (:at 1521475815369) (:by |root)
|j $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1587658691757) (:by |Z6DCCnivu)
|L $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1587658692374) (:by |Z6DCCnivu)
|j $ {} (:text |d!) (:type :leaf) (:at 1587658693039) (:by |Z6DCCnivu)
:type :expr
:at 1587658692114
:by |Z6DCCnivu
|T $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1587658690647) (:by |Z6DCCnivu)
|j $ {} (:text |:write-code) (:type :leaf) (:at 1521439315903) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |format-cirru-edn) (:type :leaf) (:at 1629746469947) (:by |Z6DCCnivu)
|j $ {}
:data $ {}
|T $ {} (:text |:tree) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |snapshot) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1587658691157
:by |Z6DCCnivu
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |<>) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text ||EDN) (:type :leaf) (:at 1521478352860) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |textarea) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |ui/textarea) (:type :leaf) (:at 1521439315903) (:by |root)
|r $ {} (:text |ui/flex) (:type :leaf) (:at 1521439315903) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:font-family) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text "||Source Code Pro, Menlo, Consolas, monospace") (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |:width) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text ||100%) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |:white-space) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |:pre) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |:value) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:code) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |store) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |:disabled) (:type :leaf) (:at 1521439315903) (:by |root)
|j $ {} (:text |true) (:type :leaf) (:at 1521439315903) (:by |root)
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
:type :expr
:at 1521439315903
:by |root
|style-theme $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |style-theme) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |:height) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text "|\"100vh") (:type :leaf) (:at 1521439272775) (:by |root)
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |300) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |80) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |10) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|comp-container $ {}
:data $ {}
|T $ {} (:text |defcomp) (:type :leaf) (:at 1506667234993) (:by |root)
|j $ {} (:text |comp-container) (:type :leaf) (:at 1506618943349) (:by |root)
|n $ {}
:data $ {}
|T $ {} (:text |store) (:type :leaf) (:at 1506667256914) (:by |root)
:type :expr
:at 1506667239630
:by |root
|v $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1506667259106) (:by |root)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |states) (:type :leaf) (:at 1506667260196) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:states) (:type :leaf) (:at 1506667261707) (:by |root)
|j $ {} (:text |store) (:type :leaf) (:at 1506667262385) (:by |root)
:type :expr
:at 1506667260532
:by |root
:type :expr
:at 1506667259461
:by |root
|j $ {}
:data $ {}
|T $ {} (:text |snapshot) (:type :leaf) (:at 1506668967271) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:snapshot) (:type :leaf) (:at 1506668971392) (:by |root)
|j $ {} (:text |store) (:type :leaf) (:at 1506668972310) (:by |root)
:type :expr
:at 1506668967656
:by |root
:type :expr
:at 1506668966819
:by |root
:type :expr
:at 1506667259308
:by |root
|T $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1521439115966) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |ui/global) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|p $ {}
:data $ {}
|T $ {} (:text |render-banner) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|s $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1527475000048) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1527475000619) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1527475152207) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1527475152646) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1527475243083) (:by |root)
|j $ {} (:text |16) (:type :leaf) (:at 1527475244333) (:by |root)
:type :expr
:at 1527475241379
:by |root
:type :expr
:at 1527475153466
:by |root
:type :expr
:at 1527475150882
:by |root
:type :expr
:at 1527475000288
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |comp-md-block) (:type :leaf) (:at 1527475062123) (:by |root)
|j $ {} (:text "|\"Cirru project is now concentrated on [calcit-editor](https://github.com/Cirru/calcit-editor), you can install it with:\n\n```bash\nnpm install -g calcit-editor\n```") (:type :leaf) (:at 1527475260047) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1527475121414) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747642334) (:text |:text-align)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629747642334) (:text |:center)
:type :expr
:at 1629747642334
:by |Z6DCCnivu
:type :expr
:at 1527475120996
:by |root
:type :expr
:at 1527475002736
:by |root
:type :expr
:at 1527474998548
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |comp-explorer) (:type :leaf) (:at 1521439374383) (:by |root)
|j $ {} (:text |states) (:type :leaf) (:at 1521439376909) (:by |root)
|n $ {} (:text |store) (:type :leaf) (:at 1521439405651) (:by |root)
|r $ {} (:text |snapshot) (:type :leaf) (:at 1521439380293) (:by |root)
:type :expr
:at 1521439374740
:by |root
|x $ {}
:data $ {}
|r $ {} (:text |render-code-intro) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506667258522
:by |root
:type :expr
:at 1506618943349
:by nil
|render-code-intro $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |render-code-intro) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:width) (:type :leaf) (:at 1521477018019) (:by |root)
|j $ {} (:text |1000) (:type :leaf) (:at 1521477019625) (:by |root)
:type :expr
:at 1521477006031
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |:margin) (:type :leaf) (:at 1521477021416) (:by |root)
|j $ {} (:text |:auto) (:type :leaf) (:at 1521477023073) (:by |root)
:type :expr
:at 1521477020157
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1521477031304) (:by |root)
|j $ {} (:text "||120px 0 120px 0") (:type :leaf) (:at 1521477048801) (:by |root)
:type :expr
:at 1521477030152
:by |root
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|q $ {}
:data $ {}
|T $ {} (:text |comp-md-block) (:type :leaf) (:at 1521476020854) (:by |root)
|j $ {} (:text "||### Tree Editor\n\nCirru Project's main purpose is to replacing parentheses with moderner tools like graphical editors. I finished creating one and now it's called \"Calcit Editor\". I use it for my daily personal projects including building this page.\n\n* [Calcit Editor](https://github.com/Cirru/calcit-editor) -- main tool of Cirru project, which edits S-expressions and generates Clojure code. It uses a snapshot file called `calcit.edn`.\n* [Calcit Viewer](https://github.com/Cirru/calcit-viewer) -- displays `calcit.edn` with DOM.\n* [Respo Cirru Editor](https://github.com/Cirru/respo-cirru-editor) -- old library to realise S-expressions editing on Web.\n\n### Old Indentation-based Syntax\n\n[Cirru Indentation Format](http://text.cirru.org/) has been shadowed by the new editor. Only a small portion of libraries are maintained, but you can still access some of them like Parser and Writer.\n\n* [Cirru Writer](https://github.com/Cirru/writer.clj) -- ClojureScript library to generate Cirru Indentation Format.\n* [Cirru Parser](https://github.com/Cirru/parser.clj) -- ClojureScript library to parse Cirru Indentation Format.\n* [Cirru Indentation Format home page](https://github.com/Cirru/text.cirru.org) -- a list of old resources related to the format.\n\n### Updates\n\n\nYou may find old entries related to Cirru on [Medium](https://medium.com/cirru-project) and [Twitter](https://twitter.com/cirrulang). More information are just spread on my Twitter and Weibo or blogs, you may find them by searching anyway. We may [discuss on Twitter](https://twitter.com/jiyinyiyong).\n") (:type :leaf) (:at 1603348672143) (:by |Z6DCCnivu)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1521476025840) (:by |root)
:type :expr
:at 1521476025097
:by |root
:type :expr
:at 1521476015955
:by |root
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|style-project $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |style-project) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:color) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |200) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |80) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |60) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|style-banner-text $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |style-banner-text) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:font-size) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||64px) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|style-content $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |style-content) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:font-size) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||16px) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|on-update! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |on-update!) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |snapshot) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |dispatch!) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|x $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1506668011578) (:by |root)
|b $ {} (:text |:save) (:type :leaf) (:at 1506668014292) (:by |root)
|j $ {} (:text |snapshot) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|y $ {}
:data $ {}
|T $ {} (:text |focus!) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|style-banner $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |style-banner) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:height) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |320) (:type :leaf) (:at 1521439226737) (:by |root)
:type :expr
:at 1506618943349
:by nil
|r $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |200) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |100) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |70) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |:color) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |0) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |0) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |100) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|style-link $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |style-link) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:font-size) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||20px) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|r $ {}
:data $ {}
|T $ {} (:text |:color) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |0) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |0) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |100) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |:font-weight) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||lighter) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|x $ {}
:data $ {}
|T $ {} (:text |:text-decoration) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||none) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|render-banner $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |render-banner) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |ui/center) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |style-banner) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|r $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |typeset/title) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |style-banner-text) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|r $ {}
:data $ {}
|T $ {} (:text |<>) (:type :leaf) (:at 1506667688571) (:by |root)
|j $ {} (:text "||Cirru: modern interface for S-expressions") (:type :leaf) (:at 1603348540521) (:by |Z6DCCnivu)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |a) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:href) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||http://text.cirru.org) (:type :leaf) (:at 1512062649426) (:by |root)
:type :expr
:at 1506618943349
:by nil
|r $ {}
:data $ {}
|T $ {} (:text |:inner-text) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text "||Text syntax") (:type :leaf) (:at 1512062653773) (:by |root)
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |:target) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||_blank) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|x $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |style-link) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|T $ {} (:text |div) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|r $ {}
:data $ {}
|T $ {} (:text |a) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:href) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||https://github.com/Cirru/respo-cirru-editor/wiki/Keyboard-Shortcuts) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|r $ {}
:data $ {}
|T $ {} (:text |:inner-text) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text "||Keyboard Shortcuts") (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |:target) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||_blank) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|x $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |style-link) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |=<) (:type :leaf) (:at 1506667682116) (:by |root)
|j $ {} (:text |80) (:type :leaf) (:at 1506667686577) (:by |root)
|r $ {} (:text |nil) (:type :leaf) (:at 1506667684501) (:by |root)
:type :expr
:at 1506618943349
:by nil
|x $ {}
:data $ {}
|T $ {} (:text |a) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:href) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||https://www.youtube.com/playlist?list=PLyvBXLgHYHy1AIK6i5uw3_H5BIUP4CQx6) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|r $ {}
:data $ {}
|T $ {} (:text |:inner-text) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||Videos) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |:target) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||_blank) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|x $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |style-link) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|y $ {}
:data $ {}
|T $ {} (:text |=<) (:type :leaf) (:at 1506667682116) (:by |root)
|j $ {} (:text |80) (:type :leaf) (:at 1506667686577) (:by |root)
|r $ {} (:text |nil) (:type :leaf) (:at 1506667684501) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:proc $ {}
:data $ {}
:type :expr
:at 1506618943349
:by nil
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |app.comp.container) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|yyT $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1510592031804) (:by |root)
|j $ {} (:text |fipp.edn) (:type :leaf) (:at 1510592032347) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1510592033714) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1510592034760) (:by |root)
|j $ {} (:text |pprint) (:type :leaf) (:at 1510592038365) (:by |root)
:type :expr
:at 1510592036317
:by |root
:type :expr
:at 1510592031399
:by |root
|yyj $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1511973006785) (:by |root)
|j $ {} (:text |app.comp.candidates) (:type :leaf) (:at 1511973011779) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1511973013002) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1511973014123) (:by |root)
|j $ {} (:text |comp-candidates) (:type :leaf) (:at 1511973014537) (:by |root)
:type :expr
:at 1511973013217
:by |root
:type :expr
:at 1511973005788
:by |root
|yyv $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1521476028600) (:by |root)
|j $ {} (:text |respo-md.comp.md) (:type :leaf) (:at 1629746697086) (:by |Z6DCCnivu)
|r $ {} (:text |:refer) (:type :leaf) (:at 1521476036373) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1521476036771) (:by |root)
|j $ {} (:text |comp-md-block) (:type :leaf) (:at 1521476039531) (:by |root)
|r $ {} (:text |comp-md) (:type :leaf) (:at 1527475056474) (:by |root)
:type :expr
:at 1521476036580
:by |root
:type :expr
:at 1521476028260
:by |root
|yyx $ {}
:data $ {}
|T $ {} (:text |app.config) (:type :leaf) (:at 1629746701914) (:by |Z6DCCnivu)
|j $ {} (:text |:as) (:type :leaf) (:at 1629746707369) (:by |Z6DCCnivu)
|r $ {} (:text |config) (:type :leaf) (:at 1629746706166) (:by |Z6DCCnivu)
:type :expr
:at 1629746694847
:by |Z6DCCnivu
|yT $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |app.style.typeset) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:as) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |typeset) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|yj $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |respo-ui.core) (:type :leaf) (:at 1521438626146) (:by |root)
|r $ {} (:text |:as) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |ui) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|yr $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |cirru-editor.comp.editor) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |comp-editor) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|yv $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |cirru-editor.util.dom) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |focus!) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|T $ {} (:text |:require) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |respo-ui.core) (:type :leaf) (:at 1629746016932) (:by |Z6DCCnivu)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |hsl) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|n $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506667371307) (:by |root)
|j $ {} (:text |respo.core) (:type :leaf) (:at 1558163948135) (:by |Z6DCCnivu)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506667375567) (:by |root)
|v $ {}
:data $ {}
|yT $ {} (:text |button) (:type :leaf) (:at 1510590567544) (:by |root)
|T $ {} (:text |[]) (:type :leaf) (:at 1506667375866) (:by |root)
|j $ {} (:text |defcomp) (:type :leaf) (:at 1506667378716) (:by |root)
|n $ {} (:text |<>) (:type :leaf) (:at 1506667381490) (:by |root)
|r $ {} (:text |div) (:type :leaf) (:at 1506667379344) (:by |root)
|v $ {} (:text |span) (:type :leaf) (:at 1506667383489) (:by |root)
|x $ {} (:text |a) (:type :leaf) (:at 1506667393967) (:by |root)
|y $ {} (:text |textarea) (:type :leaf) (:at 1506667396247) (:by |root)
:type :expr
:at 1506667375711
:by |root
:type :expr
:at 1506667368875
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |respo.comp.space) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |=<) (:type :leaf) (:at 1506667403087) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|y $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |app.style.widget) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:as) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |widget) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|app.schema $ {}
:defs $ {}
|store $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506668057000) (:by |root)
|j $ {} (:text |store) (:type :leaf) (:at 1506668054901) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506668058520) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:states) (:type :leaf) (:at 1506668059505) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506668060143) (:by |root)
:type :expr
:at 1506668059777
:by |root
:type :expr
:at 1506668058791
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |:snapshot) (:type :leaf) (:at 1506668063957) (:by |root)
|j $ {} (:text |snapshot) (:type :leaf) (:at 1506668067203) (:by |root)
:type :expr
:at 1506668060911
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |:code) (:type :leaf) (:at 1510590517880) (:by |root)
|j $ {} (:text ||) (:type :leaf) (:at 1510590518452) (:by |root)
:type :expr
:at 1510590515888
:by |root
:type :expr
:at 1506668054901
:by |root
:type :expr
:at 1506668054901
:by |root
|snapshot $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506668052561) (:by |root)
|j $ {} (:text |snapshot) (:type :leaf) (:at 1506668048599) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:tree) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746514023) (:text |parse-cirru)
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629746514023)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746514023) (:text |inline)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746514023) (:text "|\"component.cirru")
:type :expr
:at 1629746514023
:by |Z6DCCnivu
:type :expr
:at 1506618943349
:by nil
|r $ {}
:data $ {}
|T $ {} (:text |:focus) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |:clipboard) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506668048599
:by |root
|inline $ {}
:data $ {}
|T $ {} (:text |defmacro) (:type :leaf) (:at 1629746202182) (:by |Z6DCCnivu)
|j $ {} (:text |inline) (:type :leaf) (:at 1629746685547) (:by |Z6DCCnivu)
|r $ {}
:data $ {}
|T $ {} (:text |path) (:type :leaf) (:at 1629746205755) (:by |Z6DCCnivu)
:type :expr
:at 1629746199729
:by |Z6DCCnivu
|v $ {}
:data $ {}
|T $ {} (:text |read-file) (:type :leaf) (:at 1629746209557) (:by |Z6DCCnivu)
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1629746212062) (:by |Z6DCCnivu)
|j $ {} (:text "|\"examples/") (:type :leaf) (:at 1629746214359) (:by |Z6DCCnivu)
|r $ {} (:text |path) (:type :leaf) (:at 1629746216190) (:by |Z6DCCnivu)
:type :expr
:at 1629746210034
:by |Z6DCCnivu
:type :expr
:at 1629746206244
:by |Z6DCCnivu
:type :expr
:at 1629746199729
:by |Z6DCCnivu
|examples $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1511973154556) (:by |root)
|j $ {} (:text |examples) (:type :leaf) (:at 1629746533022) (:by |Z6DCCnivu)
|r $ {}
:data $ {}
|yyT $ {}
:data $ {}
|T $ {} (:text |:vector) (:type :leaf) (:at 1511973252381) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746275176) (:text |parse-cirru)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746275176) (:text |inline)
|j $ {} (:text "|\"vector.cirru") (:type :leaf) (:at 1629746276258) (:by |Z6DCCnivu)
:type :expr
:at 1629746275176
:by |Z6DCCnivu
:type :expr
:at 1629746275176
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|yyj $ {}
:data $ {}
|T $ {} (:text |:component) (:type :leaf) (:at 1511973258381) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746278565) (:text |parse-cirru)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746278565) (:text |inline)
|j $ {} (:text "|\"component.cirru") (:type :leaf) (:at 1629746280038) (:by |Z6DCCnivu)
:type :expr
:at 1629746278565
:by |Z6DCCnivu
:type :expr
:at 1629746278565
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|yT $ {}
:data $ {}
|T $ {} (:text |:fn*) (:type :leaf) (:at 1511973213102) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746245362) (:text |parse-cirru)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746245362) (:text |inline)
|j $ {} (:text "|\"fn-star.cirru") (:type :leaf) (:at 1629746248693) (:by |Z6DCCnivu)
:type :expr
:at 1629746245362
:by |Z6DCCnivu
:type :expr
:at 1629746245362
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|yj $ {}
:data $ {}
|T $ {} (:text |:fn) (:type :leaf) (:at 1511973222727) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746253172) (:text |parse-cirru)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746253172) (:text |inline)
|j $ {} (:text "|\"fn.cirru") (:type :leaf) (:at 1629746254519) (:by |Z6DCCnivu)
:type :expr
:at 1629746253172
:by |Z6DCCnivu
:type :expr
:at 1629746253172
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|yr $ {}
:data $ {}
|T $ {} (:text |:let) (:type :leaf) (:at 1511973226806) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746256704) (:text |parse-cirru)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746256704) (:text |inline)
|j $ {} (:text "|\"let.cirru") (:type :leaf) (:at 1629746258241) (:by |Z6DCCnivu)
:type :expr
:at 1629746256704
:by |Z6DCCnivu
:type :expr
:at 1629746256704
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|yv $ {}
:data $ {}
|T $ {} (:text |:loop) (:type :leaf) (:at 1511973232045) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746263093) (:text |parse-cirru)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746263093) (:text |inline)
|j $ {} (:text "|\"loop.cirru") (:type :leaf) (:at 1629746264265) (:by |Z6DCCnivu)
:type :expr
:at 1629746263093
:by |Z6DCCnivu
:type :expr
:at 1629746263093
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|yx $ {}
:data $ {}
|T $ {} (:text |:map) (:type :leaf) (:at 1511973239982) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746266764) (:text |parse-cirru)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746266764) (:text |inline)
|j $ {} (:text "|\"map.cirru") (:type :leaf) (:at 1629746268232) (:by |Z6DCCnivu)
:type :expr
:at 1629746266764
:by |Z6DCCnivu
:type :expr
:at 1629746266764
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|yy $ {}
:data $ {}
|T $ {} (:text |:namespace) (:type :leaf) (:at 1511973244655) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746270995) (:text |parse-cirru)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746270995) (:text |inline)
|j $ {} (:text "|\"namespace.cirru") (:type :leaf) (:at 1629746272316) (:by |Z6DCCnivu)
:type :expr
:at 1629746270995
:by |Z6DCCnivu
:type :expr
:at 1629746270995
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|T $ {} (:text |{}) (:type :leaf) (:at 1511973156697) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:case) (:type :leaf) (:at 1511973169658) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |parse-cirru) (:type :leaf) (:at 1629746188718) (:by |Z6DCCnivu)
|j $ {}
:data $ {}
|T $ {} (:text |inline) (:type :leaf) (:at 1629746192241) (:by |Z6DCCnivu)
|j $ {} (:text "|\"case.cirru") (:type :leaf) (:at 1629746198733) (:by |Z6DCCnivu)
:type :expr
:at 1629746191417
:by |Z6DCCnivu
:type :expr
:at 1629746180870
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |:comment) (:type :leaf) (:at 1511973191128) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |parse-cirru) (:type :leaf) (:at 1629746223164) (:by |Z6DCCnivu)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746223164) (:text |inline)
|j $ {} (:text "|\"comment.cirru") (:type :leaf) (:at 1629746224217) (:by |Z6DCCnivu)
:type :expr
:at 1629746223164
:by |Z6DCCnivu
:type :expr
:at 1629746223164
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|v $ {}
:data $ {}
|T $ {} (:text |:cond) (:type :leaf) (:at 1511973196810) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |parse-cirru) (:type :leaf) (:at 1629746228212) (:by |Z6DCCnivu)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746228212) (:text |inline)
|j $ {} (:text "|\"cond.cirru") (:type :leaf) (:at 1629746229290) (:by |Z6DCCnivu)
:type :expr
:at 1629746228212
:by |Z6DCCnivu
:type :expr
:at 1629746228212
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|x $ {}
:data $ {}
|T $ {} (:text |:def) (:type :leaf) (:at 1511973201462) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746233237) (:text |parse-cirru)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746233237) (:text |inline)
|j $ {} (:text "|\"def.cirru") (:type :leaf) (:at 1629746234459) (:by |Z6DCCnivu)
:type :expr
:at 1629746233237
:by |Z6DCCnivu
:type :expr
:at 1629746233237
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
|y $ {}
:data $ {}
|T $ {} (:text |:doseq) (:type :leaf) (:at 1511973205753) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746238287) (:text |parse-cirru)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746238287) (:text |inline)
|j $ {} (:text "|\"doseq.cirru") (:type :leaf) (:at 1629746240184) (:by |Z6DCCnivu)
:type :expr
:at 1629746238287
:by |Z6DCCnivu
:type :expr
:at 1629746238287
:by |Z6DCCnivu
:type :expr
:at 1511973157011
:by |root
:type :expr
:at 1511973153309
:by |root
:type :expr
:at 1511973153309
:by |root
:proc $ {}
:data $ {}
:type :expr
:at 1506618943349
:by nil
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |app.schema) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |:require) (:type :leaf) (:at 1511973575221) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1511973577829) (:by |root)
|j $ {} (:text |app.code) (:type :leaf) (:at 1511973580832) (:by |root)
|r $ {} (:text |:as) (:type :leaf) (:at 1511973581543) (:by |root)
|v $ {} (:text |code) (:type :leaf) (:at 1511973582079) (:by |root)
:type :expr
:at 1511973575821
:by |root
:type :expr
:at 1511973574543
:by |root
:type :expr
:at 1506618943349
:by nil
|app.style.typeset $ {}
:defs $ {}
|title $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |title) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:font-family) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text "||'Josefin Sans', sans-serif") (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|r $ {}
:data $ {}
|T $ {} (:text |:font-weight) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||lighter) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:proc $ {}
:data $ {}
:type :expr
:at 1506618943349
:by nil
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |app.style.typeset) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|app.main $ {}
:defs $ {}
|render-app! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |render-app!) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |render!) (:type :leaf) (:at 1629746744469) (:by |Z6DCCnivu)
|b $ {} (:text |mount-target) (:type :leaf) (:at 1506668212365) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |comp-container) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |@*store) (:type :leaf) (:at 1510590356263) (:by |root)
:type :expr
:at 1506618943349
:by nil
|r $ {} (:text |dispatch!) (:type :leaf) (:at 1629746721981) (:by |Z6DCCnivu)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|mount-target $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506668213342) (:by |root)
|j $ {} (:text |mount-target) (:type :leaf) (:at 1506668212668) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |.querySelector) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |js/document) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text ||.app) (:type :leaf) (:at 1506668258863) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506668212668
:by |root
|main! $ {}
:data $ {}
|yL $ {}
:data $ {}
|D $ {} (:text |.addEventListener) (:type :leaf) (:at 1510590933788) (:by |root)
|T $ {} (:text |js/window) (:type :leaf) (:at 1510590937981) (:by |root)
|j $ {} (:text ||keydown) (:type :leaf) (:at 1510590942015) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1510590942623) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |event) (:type :leaf) (:at 1510591207428) (:by |root)
:type :expr
:at 1510590943246
:by |root
|r $ {}
:data $ {}
|D $ {} (:text |if) (:type :leaf) (:at 1510591009697) (:by |root)
|T $ {}
:data $ {}
|T $ {} (:text |and) (:type :leaf) (:at 1510590955216) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |.-metaKey) (:type :leaf) (:at 1510590959946) (:by |root)
|j $ {} (:text |event) (:type :leaf) (:at 1510590961293) (:by |root)
:type :expr
:at 1510590955507
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1510590963828) (:by |root)
|b $ {} (:text |config/key-s) (:type :leaf) (:at 1629746636571) (:by |Z6DCCnivu)
|j $ {}
:data $ {}
|T $ {} (:text |.-keyCode) (:type :leaf) (:at 1510591221454) (:by |root)
|j $ {} (:text |event) (:type :leaf) (:at 1510591217626) (:by |root)
:type :expr
:at 1510590968912
:by |root
:type :expr
:at 1510590961914
:by |root
:type :expr
:at 1510590954449
:by |root
|j $ {}
:data $ {}
|T $ {} (:text |do) (:type :leaf) (:at 1510591011676) (:by |root)
|b $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1510591126873) (:by |root)
|j $ {} (:text ||Build) (:type :leaf) (:at 1629746750001) (:by |Z6DCCnivu)
:type :expr
:at 1510591125964
:by |root
|f $ {}
:data $ {}
|T $ {} (:text |.preventDefault) (:type :leaf) (:at 1510591134464) (:by |root)
|j $ {} (:text |event) (:type :leaf) (:at 1510591137051) (:by |root)
:type :expr
:at 1510591131531
:by |root
|j $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1510591015476) (:by |root)
|b $ {} (:text |:write-code) (:type :leaf) (:at 1510591022450) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |format-to-lisp) (:type :leaf) (:at 1629746648851) (:by |Z6DCCnivu)
|j $ {}
:data $ {}
|T $ {} (:text |:tree) (:type :leaf) (:at 1510591029932) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:snapshot) (:type :leaf) (:at 1510591034531) (:by |root)
|j $ {} (:text |@*store) (:type :leaf) (:at 1510591037326) (:by |root)
:type :expr
:at 1510591030257
:by |root
:type :expr
:at 1510591025820
:by |root
:type :expr
:at 1510591016577
:by |root
:type :expr
:at 1510591012625
:by |root
:type :expr
:at 1510591010442
:by |root
:type :expr
:at 1510591009065
:by |root
:type :expr
:at 1510590942315
:by |root
:type :expr
:at 1510590921658
:by |root
|yj $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text "|\"App started!") (:type :leaf) (:at 1558163927949) (:by |Z6DCCnivu)
:type :expr
:at 1506618943349
:by nil
|T $ {} (:text |defn) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |main!) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
:type :expr
:at 1506618943349
:by nil
|s $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1558163918127) (:by |Z6DCCnivu)
|j $ {} (:text "|\"Running mode:") (:type :leaf) (:at 1558163918127) (:by |Z6DCCnivu)
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1558163918127) (:by |Z6DCCnivu)
|j $ {} (:text |config/dev?) (:type :leaf) (:at 1558163918127) (:by |Z6DCCnivu)
|r $ {} (:text "|\"dev") (:type :leaf) (:at 1558163918127) (:by |Z6DCCnivu)
|v $ {} (:text "|\"release") (:type :leaf) (:at 1558163918127) (:by |Z6DCCnivu)
:type :expr
:at 1558163918127
:by |Z6DCCnivu
:type :expr
:at 1558163918127
:by |Z6DCCnivu
|x $ {}
:data $ {}
|T $ {} (:text |render-app!) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|y $ {}
:data $ {}
|T $ {} (:text |add-watch) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |*store) (:type :leaf) (:at 1510590349653) (:by |root)
|r $ {} (:text |:changes) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1506668873169) (:by |root)
|L $ {}
:data $ {}
|T $ {} (:text |s) (:type :leaf) (:at 1629746738851) (:by |Z6DCCnivu)
|j $ {} (:text |p) (:type :leaf) (:at 1629746739208) (:by |Z6DCCnivu)
:type :expr
:at 1506668873459
:by |root
|T $ {}
:data $ {}
|T $ {} (:text |render-app!) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506668874463
:by |root
:type :expr
:at 1506668872542
:by |root
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|*store $ {}
:data $ {}
|T $ {} (:text |defatom) (:type :leaf) (:at 1629746712175) (:by |Z6DCCnivu)
|j $ {} (:text |*store) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |schema/store) (:type :leaf) (:at 1506668077499) (:by |root)
:type :expr
:at 1506618943349
:by nil
|dispatch! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |dispatch!) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |op) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |op-data) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|t $ {}
:data $ {}
|T $ {} (:text |when) (:type :leaf) (:at 1558163889966) (:by |Z6DCCnivu)
|j $ {} (:text |config/dev?) (:type :leaf) (:at 1558163889966) (:by |Z6DCCnivu)
|r $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1558163889966) (:by |Z6DCCnivu)
|j $ {} (:text "|\"Dispatch:") (:type :leaf) (:at 1558163889966) (:by |Z6DCCnivu)
|r $ {} (:text |op) (:type :leaf) (:at 1558163889966) (:by |Z6DCCnivu)
:type :expr
:at 1558163889966
:by |Z6DCCnivu
:type :expr
:at 1558163889966
:by |Z6DCCnivu
|v $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1506668721517) (:by |root)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |next-store) (:type :leaf) (:at 1506668725107) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |case) (:type :leaf) (:at 1506668711421) (:by |root)
|j $ {} (:text |op) (:type :leaf) (:at 1506668711768) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |:save) (:type :leaf) (:at 1506668712732) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1506668739335) (:by |root)
|j $ {} (:text |@*store) (:type :leaf) (:at 1510590365993) (:by |root)
|r $ {} (:text |:snapshot) (:type :leaf) (:at 1506668756268) (:by |root)
|v $ {} (:text |op-data) (:type :leaf) (:at 1506668759904) (:by |root)
:type :expr
:at 1506668738538
:by |root
:type :expr
:at 1506668712142
:by |root
|t $ {}
:data $ {}
|T $ {} (:text |:write-code) (:type :leaf) (:at 1510590667606) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1510590670736) (:by |root)
|j $ {} (:text |@*store) (:type :leaf) (:at 1510590672687) (:by |root)
|r $ {} (:text |:code) (:type :leaf) (:at 1510590673899) (:by |root)
|v $ {} (:text |op-data) (:type :leaf) (:at 1510590675094) (:by |root)
:type :expr
:at 1510590667988
:by |root
:type :expr
:at 1510590658394
:by |root
|u $ {}
:data $ {}
|T $ {} (:text |:load-tree) (:type :leaf) (:at 1511973385525) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |assoc-in) (:type :leaf) (:at 1511973415251) (:by |root)
|j $ {} (:text |@*store) (:type :leaf) (:at 1511973390254) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1511973417031) (:by |root)
|j $ {} (:text |:snapshot) (:type :leaf) (:at 1511973419305) (:by |root)
|r $ {} (:text |:tree) (:type :leaf) (:at 1511973420706) (:by |root)
:type :expr
:at 1511973416782
:by |root
|v $ {} (:text |op-data) (:type :leaf) (:at 1511973422885) (:by |root)
:type :expr
:at 1511973386525
:by |root
:type :expr
:at 1511973378388
:by |root
|v $ {} (:text |@*store) (:type :leaf) (:at 1510590370236) (:by |root)
:type :expr
:at 1506668707440
:by |root
:type :expr
:at 1506668721863
:by |root
:type :expr
:at 1506668721719
:by |root
|f $ {}
:data $ {}
|T $ {} (:text |reset!) (:type :leaf) (:at 1506668772348) (:by |root)
|j $ {} (:text |*store) (:type :leaf) (:at 1510590372825) (:by |root)
|r $ {} (:text |next-store) (:type :leaf) (:at 1506668778517) (:by |root)
:type :expr
:at 1506668771276
:by |root
:type :expr
:at 1506668720874
:by |root
:type :expr
:at 1506618943349
:by nil
|reload! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1629746762741) (:by |Z6DCCnivu)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |reload!)
|r $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629746762741)
:data $ {}
|v $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |if)
|j $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629746762741)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |nil?)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |build-errors)
|r $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |do)
|j $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |remove-watch)
|j $ {} (:text |*store) (:type :leaf) (:at 1629746795251) (:by |Z6DCCnivu)
|r $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |:changes)
:type :expr
:at 1629746762741
:by |Z6DCCnivu
|r $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629746762741)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |clear-cache!)
|v $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |add-watch)
|j $ {} (:text |*store) (:type :leaf) (:at 1629746794065) (:by |Z6DCCnivu)
|r $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |:changes)
|v $ {}
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |fn)
|j $ {}
:data $ {}
|T $ {} (:text |r) (:type :leaf) (:at 1629746796357) (:by |Z6DCCnivu)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |prev)
:type :expr
:at 1629746762741
:by |Z6DCCnivu
|r $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629746762741)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |render-app!)
:type :expr
:at 1629746762741
:by |Z6DCCnivu
:type :expr
:at 1629746762741
:by |Z6DCCnivu
|w $ {}
:data $ {}
|T $ {} (:text |render-app!) (:type :leaf) (:at 1629746802854) (:by |Z6DCCnivu)
:type :expr
:at 1629746801061
:by |Z6DCCnivu
|y $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629746762741)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |hud!)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text "|\"ok~")
|r $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text "|\"Ok")
:type :expr
:at 1629746762741
:by |Z6DCCnivu
|v $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629746762741)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |hud!)
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text "|\"error")
|r $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746762741) (:text |build-errors)
:type :expr
:at 1629746762741
:by |Z6DCCnivu
:type :expr
:at 1629746762741
:by |Z6DCCnivu
:proc $ {}
:data $ {}
:type :expr
:at 1506618943349
:by nil
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |app.main) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1510591175909) (:by |root)
|j $ {} (:text |cirru-sepal.core) (:type :leaf) (:at 1511972787976) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1510591180857) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1510591183324) (:by |root)
|j $ {} (:text |write-code) (:type :leaf) (:at 1511972782038) (:by |root)
:type :expr
:at 1510591181060
:by |root
:type :expr
:at 1510591175558
:by |root
|yj $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1558163896135) (:by |Z6DCCnivu)
|j $ {} (:text |app.config) (:type :leaf) (:at 1558163899914) (:by |Z6DCCnivu)
|r $ {} (:text |:as) (:type :leaf) (:at 1558163900534) (:by |Z6DCCnivu)
|v $ {} (:text |config) (:type :leaf) (:at 1558163901319) (:by |Z6DCCnivu)
:type :expr
:at 1558163893808
:by |Z6DCCnivu
|yr $ {}
:data $ {}
|T $ {} (:text "|\"./calcit.build-errors") (:type :leaf) (:at 1629746771889) (:by |Z6DCCnivu)
|j $ {} (:text |:default) (:type :leaf) (:at 1629746771889) (:by |Z6DCCnivu)
|r $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746771889) (:text |build-errors)
:type :expr
:at 1629746771889
:by |Z6DCCnivu
|yv $ {} (:type :expr) (:by |Z6DCCnivu) (:at 1629746771889)
:data $ {}
|T $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746771889) (:text "|\"bottom-tip")
|j $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746771889) (:text |:default)
|r $ {} (:type :leaf) (:by |Z6DCCnivu) (:at 1629746771889) (:text |hud!)
|T $ {} (:text |:require) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |respo.core) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |render!) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |clear-cache!) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |realize-ssr!) (:type :leaf) (:at 1506668145007) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|n $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506668150294) (:by |root)
|j $ {} (:text |respo.cursor) (:type :leaf) (:at 1506668151677) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506668152342) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506668152742) (:by |root)
|j $ {} (:text |update-states) (:type :leaf) (:at 1587658540847) (:by |Z6DCCnivu)
:type :expr
:at 1506668152544
:by |root
:type :expr
:at 1506668148370
:by |root
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |app.comp.container) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |comp-container) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |cljs.reader) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |read-string) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|x $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506668082418) (:by |root)
|j $ {} (:text |app.schema) (:type :leaf) (:at 1506668083607) (:by |root)
|r $ {} (:text |:as) (:type :leaf) (:at 1506668084018) (:by |root)
|v $ {} (:text |schema) (:type :leaf) (:at 1506668085982) (:by |root)
:type :expr
:at 1506668082067
:by |root
|y $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1510590981120) (:by |root)
|j $ {} (:text |keycode.core) (:type :leaf) (:at 1510590984897) (:by |root)
|r $ {} (:text |:as) (:type :leaf) (:at 1510590985274) (:by |root)
|v $ {} (:text |keycode) (:type :leaf) (:at 1510590986213) (:by |root)
:type :expr
:at 1510590980092
:by |root
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|app.style.widget $ {}
:defs $ {}
|button $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |button) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:color) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||white) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|r $ {}
:data $ {}
|T $ {} (:text |:line-height) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |2) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|v $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |200) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |90) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {} (:text |60) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|x $ {}
:data $ {}
|T $ {} (:text |:display) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||inline-block) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
|y $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text "||0 8px") (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|global $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |global) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |:font-family) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text ||Verdana) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:proc $ {}
:data $ {}
:type :expr
:at 1506618943349
:by nil
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |app.style.widget) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {}
:data $ {}
|T $ {} (:text |:require) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |hsl.core) (:type :leaf) (:at 1506618943349) (:by |root)
|r $ {} (:text |:refer) (:type :leaf) (:at 1506618943349) (:by |root)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1506618943349) (:by |root)
|j $ {} (:text |hsl) (:type :leaf) (:at 1506618943349) (:by |root)
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
:type :expr
:at 1506618943349
:by nil
|app.config $ {}
:defs $ {}
|dev? $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {} (:text |dev?) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|r $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1629746654609) (:by |Z6DCCnivu)
|j $ {} (:text "|\"dev") (:type :leaf) (:at 1629746656982) (:by |Z6DCCnivu)
|r $ {}
:data $ {}
|T $ {} (:text |get-env) (:type :leaf) (:at 1629746659096) (:by |Z6DCCnivu)
|j $ {} (:text "|\"mode") (:type :leaf) (:at 1629746660389) (:by |Z6DCCnivu)
:type :expr
:at 1629746657313
:by |Z6DCCnivu
:type :expr
:at 1629746654482
:by |Z6DCCnivu
:type :expr
:at 1558163662541
:by |Z6DCCnivu
|site $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {} (:text |site) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|r $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |:icon) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {} (:text "|\"http://cdn.tiye.me/logo/cirru.png") (:type :leaf) (:at 1558163691687) (:by |Z6DCCnivu)
:type :expr
:at 1558163662541
:by |Z6DCCnivu
|yj $ {}
:data $ {}
|T $ {} (:text |:storage-key) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {} (:text "|\"cirru-org") (:type :leaf) (:at 1558163728438) (:by |Z6DCCnivu)
:type :expr
:at 1558163662541
:by |Z6DCCnivu
|yr $ {}
:data $ {}
|T $ {} (:text |:upload-folder) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {} (:text "|\"tiye.me:repo/Cirru/cirru.org/") (:type :leaf) (:at 1558163744772) (:by |Z6DCCnivu)
:type :expr
:at 1558163662541
:by |Z6DCCnivu
|T $ {} (:text |{}) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {}
:data $ {}
|T $ {} (:text |:dev-ui) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {} (:text "|\"http://localhost:8100/main-fonts.css") (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
:type :expr
:at 1558163662541
:by |Z6DCCnivu
|r $ {}
:data $ {}
|T $ {} (:text |:release-ui) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {} (:text "|\"http://cdn.tiye.me/favored-fonts/main-fonts.css") (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
:type :expr
:at 1558163662541
:by |Z6DCCnivu
|v $ {}
:data $ {}
|T $ {} (:text |:cdn-url) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {} (:text "|\"http://cdn.tiye.me/cirru-org/") (:type :leaf) (:at 1558163737615) (:by |Z6DCCnivu)
:type :expr
:at 1558163662541
:by |Z6DCCnivu
|x $ {}
:data $ {}
|T $ {} (:text |:cdn-folder) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {} (:text "|\"tiye.me:cdn/cirru-org") (:type :leaf) (:at 1558163736171) (:by |Z6DCCnivu)
:text "|\"tiye.me:cdn/calcit-workflow"
:type :expr
:at 1558163708274
:by |Z6DCCnivu
|y $ {}
:data $ {}
|T $ {} (:text |:title) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {} (:text "|\"Cirru: an editor for AST") (:type :leaf) (:at 1558163682836) (:by |Z6DCCnivu)
:type :expr
:at 1558163662541
:by |Z6DCCnivu
:type :expr
:at 1558163662541
:by |Z6DCCnivu
:type :expr
:at 1558163662541
:by |Z6DCCnivu
|key-s $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1629746414218) (:by |Z6DCCnivu)
|j $ {} (:text |key-s) (:type :leaf) (:at 1629746577930) (:by |Z6DCCnivu)
|r $ {} (:text |83) (:type :leaf) (:at 1629746416278) (:by |Z6DCCnivu)
:type :expr
:at 1629746414218
:by |Z6DCCnivu
:proc $ {}
:data $ {}
:type :expr
:at 1558163662541
:by |Z6DCCnivu
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
|j $ {} (:text |app.config) (:type :leaf) (:at 1558163662541) (:by |Z6DCCnivu)
:type :expr
:at 1558163662541
:by |Z6DCCnivu
:users $ {}
|Z6DCCnivu $ {} (:avatar nil) (:name |chen) (:nickname |chen) (:id |Z6DCCnivu) (:theme :star-trail) (:password |d41d8cd98f00b204e9800998ecf8427e)
|root $ {} (:avatar nil) (:name |root) (:nickname |root) (:id |root) (:theme :star-trail) (:password |d41d8cd98f00b204e9800998ecf8427e)
| Cirru | 4 | Cirru/cirru.org | calcit.cirru | [
"MIT"
] |
" Vim syntax file
" Language: sed
" Maintainer: Haakon Riiser <hakonrk@fys.uio.no>
" URL: http://folk.uio.no/hakonrk/vim/syntax/sed.vim
" Last Change: 2010 May 29
" quit when a syntax file was already loaded
if exists("b:current_syntax")
finish
endif
syn match sedError "\S"
syn match sedWhitespace "\s\+" contained
syn match sedSemicolon ";"
syn match sedAddress "[[:digit:]$]"
syn match sedAddress "\d\+\~\d\+"
syn region sedAddress matchgroup=Special start="[{,;]\s*/\(\\/\)\="lc=1 skip="[^\\]\(\\\\\)*\\/" end="/I\=" contains=sedTab,sedRegexpMeta
syn region sedAddress matchgroup=Special start="^\s*/\(\\/\)\=" skip="[^\\]\(\\\\\)*\\/" end="/I\=" contains=sedTab,sedRegexpMeta
syn match sedComment "^\s*#.*$"
syn match sedFunction "[dDgGhHlnNpPqQx=]\s*\($\|;\)" contains=sedSemicolon,sedWhitespace
syn match sedLabel ":[^;]*"
syn match sedLineCont "^\(\\\\\)*\\$" contained
syn match sedLineCont "[^\\]\(\\\\\)*\\$"ms=e contained
syn match sedSpecial "[{},!]"
if exists("highlight_sedtabs")
syn match sedTab "\t" contained
endif
" Append/Change/Insert
syn region sedACI matchgroup=sedFunction start="[aci]\\$" matchgroup=NONE end="^.*$" contains=sedLineCont,sedTab
syn region sedBranch matchgroup=sedFunction start="[bt]" matchgroup=sedSemicolon end=";\|$" contains=sedWhitespace
syn region sedRW matchgroup=sedFunction start="[rw]" matchgroup=sedSemicolon end=";\|$" contains=sedWhitespace
" Substitution/transform with various delimiters
syn region sedFlagwrite matchgroup=sedFlag start="w" matchgroup=sedSemicolon end=";\|$" contains=sedWhitespace contained
syn match sedFlag "[[:digit:]gpI]*w\=" contains=sedFlagwrite contained
syn match sedRegexpMeta "[.*^$]" contained
syn match sedRegexpMeta "\\." contains=sedTab contained
syn match sedRegexpMeta "\[.\{-}\]" contains=sedTab contained
syn match sedRegexpMeta "\\{\d\*,\d*\\}" contained
syn match sedRegexpMeta "\\(.\{-}\\)" contains=sedTab contained
syn match sedReplaceMeta "&\|\\\($\|.\)" contains=sedTab contained
" Metacharacters: $ * . \ ^ [ ~
" @ is used as delimiter and treated on its own below
let __at = char2nr("@")
let __sed_i = char2nr(" ") " ASCII: 32, EBCDIC: 64
if has("ebcdic")
let __sed_last = 255
else
let __sed_last = 126
endif
let __sed_metacharacters = '$*.\^[~'
while __sed_i <= __sed_last
let __sed_delimiter = escape(nr2char(__sed_i), __sed_metacharacters)
if __sed_i != __at
exe 'syn region sedAddress matchgroup=Special start=@\\'.__sed_delimiter.'\(\\'.__sed_delimiter.'\)\=@ skip=@[^\\]\(\\\\\)*\\'.__sed_delimiter.'@ end=@'.__sed_delimiter.'I\=@ contains=sedTab'
exe 'syn region sedRegexp'.__sed_i 'matchgroup=Special start=@'.__sed_delimiter.'\(\\\\\|\\'.__sed_delimiter.'\)*@ skip=@[^\\'.__sed_delimiter.']\(\\\\\)*\\'.__sed_delimiter.'@ end=@'.__sed_delimiter.'@me=e-1 contains=sedTab,sedRegexpMeta keepend contained nextgroup=sedReplacement'.__sed_i
exe 'syn region sedReplacement'.__sed_i 'matchgroup=Special start=@'.__sed_delimiter.'\(\\\\\|\\'.__sed_delimiter.'\)*@ skip=@[^\\'.__sed_delimiter.']\(\\\\\)*\\'.__sed_delimiter.'@ end=@'.__sed_delimiter.'@ contains=sedTab,sedReplaceMeta keepend contained nextgroup=sedFlag'
endif
let __sed_i = __sed_i + 1
endwhile
syn region sedAddress matchgroup=Special start=+\\@\(\\@\)\=+ skip=+[^\\]\(\\\\\)*\\@+ end=+@I\=+ contains=sedTab,sedRegexpMeta
syn region sedRegexp64 matchgroup=Special start=+@\(\\\\\|\\@\)*+ skip=+[^\\@]\(\\\\\)*\\@+ end=+@+me=e-1 contains=sedTab,sedRegexpMeta keepend contained nextgroup=sedReplacement64
syn region sedReplacement64 matchgroup=Special start=+@\(\\\\\|\\@\)*+ skip=+[^\\@]\(\\\\\)*\\@+ end=+@+ contains=sedTab,sedReplaceMeta keepend contained nextgroup=sedFlag
" Since the syntax for the substituion command is very similar to the
" syntax for the transform command, I use the same pattern matching
" for both commands. There is one problem -- the transform command
" (y) does not allow any flags. To save memory, I ignore this problem.
syn match sedST "[sy]" nextgroup=sedRegexp\d\+
hi def link sedAddress Macro
hi def link sedACI NONE
hi def link sedBranch Label
hi def link sedComment Comment
hi def link sedDelete Function
hi def link sedError Error
hi def link sedFlag Type
hi def link sedFlagwrite Constant
hi def link sedFunction Function
hi def link sedLabel Label
hi def link sedLineCont Special
hi def link sedPutHoldspc Function
hi def link sedReplaceMeta Special
hi def link sedRegexpMeta Special
hi def link sedRW Constant
hi def link sedSemicolon Special
hi def link sedST Function
hi def link sedSpecial Special
hi def link sedWhitespace NONE
if exists("highlight_sedtabs")
hi def link sedTab Todo
endif
let __sed_i = char2nr(" ") " ASCII: 32, EBCDIC: 64
while __sed_i <= __sed_last
exe "hi def link sedRegexp".__sed_i "Macro"
exe "hi def link sedReplacement".__sed_i "NONE"
let __sed_i = __sed_i + 1
endwhile
unlet __sed_i __sed_last __sed_delimiter __sed_metacharacters
let b:current_syntax = "sed"
" vim: sts=4 sw=4 ts=8
| VimL | 4 | uga-rosa/neovim | runtime/syntax/sed.vim | [
"Vim"
] |
100 5 0 0
0 1 4 1 4 3 2 [0] [0] [0] [0]
1 1 1 82 [13]
2 1 2 50 95 [8] [8]
3 1 1 93 [7]
4 1 1 52 [11]
5 1 3 98 94 81 [11] [11] [11]
6 1 1 90 [15]
7 1 1 5 [15]
8 1 3 92 79 83 [10] [10] [10]
9 1 2 59 85 [15] [15]
10 1 1 26 [10]
11 1 2 91 73 [12] [12]
12 1 1 23 [7]
13 1 2 68 29 [-57] [9]
14 1 1 32 [15]
15 1 4 19 75 32 7 [5] [5] [5] [5]
16 1 1 25 [8]
17 1 1 94 [5]
18 1 1 86 [9]
19 1 2 42 31 [12] [-34]
20 1 1 61 [14]
21 1 1 11 [9]
22 1 2 12 82 [13] [13]
23 1 1 46 [5]
24 1 1 36 [8]
25 1 2 72 100 [7] [7]
26 1 1 8 [9]
27 1 2 56 80 [5] [5]
28 1 1 92 [8]
29 1 1 51 [14]
30 1 2 21 27 [13] [13]
31 1 1 19 [12]
32 1 1 9 [15]
33 1 2 82 70 [-44] [12]
34 1 2 66 96 [11] [11]
35 1 1 20 [12]
36 1 2 24 62 [-58] [13]
37 1 1 68 [10]
38 1 1 76 [12]
39 1 1 69 [8]
40 1 1 48 [15]
41 1 4 28 16 78 81 [13] [13] [13] [13]
42 1 1 33 [7]
43 1 1 7 [9]
44 1 1 39 [12]
45 1 1 44 [13]
46 1 1 55 [6]
47 1 1 67 [8]
48 1 1 34 [15]
49 1 2 84 76 [13] [13]
50 1 1 65 [8]
51 1 2 84 38 [-37] [15]
52 1 2 74 94 [12] [12]
53 1 3 77 44 43 [11] [11] [11]
54 1 1 47 [14]
55 1 1 89 [8]
56 1 1 53 [13]
57 1 2 72 64 [13] [13]
58 1 1 79 [6]
59 1 1 96 [13]
60 1 3 28 99 95 [14] [14] [14]
61 1 2 54 58 [10] [10]
62 1 1 58 [7]
63 1 3 58 60 89 [-60] [6] [-89]
64 1 1 41 [15]
65 1 1 15 [5]
66 1 1 30 [13]
67 1 1 88 [15]
68 1 3 49 11 57 [15] [15] [15]
69 1 1 43 [14]
70 1 1 49 [14]
71 1 1 45 [13]
72 1 1 14 [11]
73 1 2 71 87 [6] [6]
74 1 2 71 69 [7] [7]
75 1 1 6 [14]
76 1 1 40 [7]
77 1 2 34 80 [-107] [5]
78 1 1 16 [5]
79 1 1 63 [12]
80 1 2 73 53 [6] [-81]
81 1 4 17 98 52 45 [6] [6] [-114] [-99]
82 1 2 31 80 [13] [13]
83 1 1 24 [6]
84 1 1 13 [7]
85 1 2 59 96 [5] [5]
86 1 1 22 [15]
87 1 2 77 97 [-80] [9]
88 1 3 47 54 37 [-30] [-37] [15]
89 1 3 95 62 10 [8] [8] [8]
90 1 1 35 [14]
91 1 1 27 [14]
92 1 1 95 [15]
93 1 1 18 [12]
94 1 1 101 [8]
95 1 1 101 [12]
96 1 2 25 101 [-81] [15]
97 1 1 101 [13]
98 1 1 101 [7]
99 1 1 101 [13]
100 1 1 101 [10]
101 1 0
0 1 0 0 0 0 0 0
1 1 13 2 0 2 0 0
2 1 8 3 3 0 2 1
3 1 7 0 1 3 1 0
4 1 11 0 0 0 0 2
5 1 11 0 2 1 0 0
6 1 15 1 1 0 0 3
7 1 15 2 1 0 1 0
8 1 10 0 2 2 2 2
9 1 15 0 0 1 2 0
10 1 10 3 0 0 2 0
11 1 12 0 0 3 3 0
12 1 7 0 0 0 0 3
13 1 9 0 3 0 2 0
14 1 15 2 1 0 3 2
15 1 5 0 3 1 2 2
16 1 8 0 3 0 3 2
17 1 5 3 0 3 0 2
18 1 9 0 1 0 0 0
19 1 12 1 2 1 0 0
20 1 14 1 0 0 2 2
21 1 9 3 0 1 3 1
22 1 13 1 0 0 0 3
23 1 5 0 1 2 1 3
24 1 8 0 2 3 1 0
25 1 7 0 0 3 0 2
26 1 9 2 2 1 0 0
27 1 5 0 0 2 0 3
28 1 8 1 0 2 2 0
29 1 14 0 0 0 0 3
30 1 13 0 0 0 2 0
31 1 12 1 0 0 0 3
32 1 15 0 0 2 0 0
33 1 12 0 2 0 0 0
34 1 11 0 0 3 0 0
35 1 12 1 2 1 1 0
36 1 13 0 0 0 3 2
37 1 10 0 0 0 1 0
38 1 12 0 2 3 0 3
39 1 8 0 1 0 3 3
40 1 15 0 1 0 3 1
41 1 13 3 0 0 0 0
42 1 7 3 3 0 0 0
43 1 9 3 0 0 0 0
44 1 12 1 0 0 0 0
45 1 13 1 2 0 3 2
46 1 6 1 0 3 0 0
47 1 8 1 0 0 0 2
48 1 15 0 1 2 3 2
49 1 13 3 1 0 1 0
50 1 8 0 0 0 1 0
51 1 15 0 2 2 2 3
52 1 12 1 0 3 1 0
53 1 11 0 0 1 3 0
54 1 14 0 2 2 1 1
55 1 8 0 0 0 0 2
56 1 13 0 0 0 2 3
57 1 13 0 0 3 0 2
58 1 6 0 0 2 0 2
59 1 13 0 3 3 1 0
60 1 14 0 2 0 0 0
61 1 10 1 2 2 2 2
62 1 7 0 3 3 3 2
63 1 6 0 0 0 2 0
64 1 15 2 0 3 1 0
65 1 5 0 3 2 0 0
66 1 13 0 3 3 0 0
67 1 15 0 1 1 0 0
68 1 15 0 2 1 1 2
69 1 14 0 2 0 1 0
70 1 14 3 0 2 0 3
71 1 13 0 0 0 3 0
72 1 11 3 3 0 3 0
73 1 6 3 0 3 0 0
74 1 7 2 2 1 0 0
75 1 14 0 2 0 0 0
76 1 7 3 0 3 3 0
77 1 5 2 0 3 3 1
78 1 5 0 0 0 0 2
79 1 12 0 0 1 2 1
80 1 6 3 0 0 0 0
81 1 6 0 3 0 0 2
82 1 13 3 1 0 0 0
83 1 6 1 0 0 0 0
84 1 7 1 0 3 3 1
85 1 5 3 0 0 0 0
86 1 15 3 3 0 0 1
87 1 9 3 0 0 0 1
88 1 15 0 0 0 0 3
89 1 8 3 0 2 3 0
90 1 14 0 1 0 0 1
91 1 14 1 0 0 2 0
92 1 15 2 0 3 0 3
93 1 12 1 3 0 2 1
94 1 8 0 0 0 1 0
95 1 12 0 3 0 3 1
96 1 15 2 1 0 0 3
97 1 13 0 0 0 2 0
98 1 7 0 1 0 0 0
99 1 13 1 0 0 3 0
100 1 10 2 0 0 3 0
101 1 0 0 0 0 0 0
8 6 8 9 6
| Eagle | 1 | klorel/or-tools | examples/data/rcpsp/single_mode_max_delay/testsetd/psp296.sch | [
"Apache-2.0"
] |
# Link the scripts on the host to the scripts in the container
# - the host scripts are mounted as a volume at `/dockerbuild`)
# - the original scripts are moved to `..._prod` in case they are needed later
# See `aio/aio-builds-setup/docs/misc--debug-docker-container.md` for more info
mv $AIO_SCRIPTS_SH_DIR ${AIO_SCRIPTS_SH_DIR}_prod
ln -s /dockerbuild/scripts-sh $AIO_SCRIPTS_SH_DIR
chmod a+x $AIO_SCRIPTS_SH_DIR/*
mv $AIO_SCRIPTS_JS_DIR ${AIO_SCRIPTS_JS_DIR}_prod
ln -s /dockerbuild/scripts-js $AIO_SCRIPTS_JS_DIR
| Shell | 4 | coreyscherbing/angular | aio/aio-builds-setup/dockerbuild/scripts-sh/dev-mode.sh | [
"MIT"
] |
\ SAVE-INPUT and RESTORE-INPUT
\
\ This code is part of pForth.
\
\ Permission to use, copy, modify, and/or distribute this
\ software for any purpose with or without fee is hereby granted.
\
\ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
\ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
\ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
\ THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
\ CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
\ FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
\ CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
\ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
anew task-save-input.fth
private{
: SAVE-BUFFER ( -- column source-id 2 ) >in @ source-id 2 ;
\ Restore >IN from COLUMN unless COLUMN is too large. Valid values
\ for COLUMN are from 0 to (including) the length of SOURCE plus one.
: RESTORE-COLUMN ( column -- flag )
source nip 1+ over u<
IF drop true
ELSE >in ! false
THEN
;
\ Return the file-position of the beginning of the current line in
\ file SOURCE-ID. Assume that the current line is stored in SOURCE
\ and that the current file-position is at an end-of-line (or
\ end-of-file).
: LINE-START-POSITION ( -- ud )
source-id file-position throw
\ unless at end-of-file, subtract newline
source-id file-size throw 2over d= 0= IF 1 s>d d- THEN
\ subtract line length
source nip s>d d-
;
: SAVE-FILE ( column line filepos:ud source-id 5 -- )
>in @
source-line-number@
line-start-position
source-id
5
;
: RESTORE-FILE ( column line filepos:ud -- flag )
source-id reposition-file IF 2drop true EXIT THEN
refill 0= IF 2drop true EXIT THEN
source-line-number!
restore-column
;
: NDROP ( n*x n -- ) 0 ?DO drop LOOP ;
}private
\ Source Stack
\ EVALUATE >IN SourceID=(-1) 2
\ keyboard >IN SourceID=(0) 2
\ file >IN lineNumber filePos SourceID=(fileID) 5
: SAVE-INPUT ( -- column {line filepos}? source-id n )
source-id CASE
-1 OF save-buffer ENDOF
0 OF save-buffer ENDOF
drop save-file EXIT
ENDCASE
;
: RESTORE-INPUT ( column {line filepos}? source-id n -- flag )
over source-id <> IF ndrop true EXIT THEN
drop
CASE
-1 OF restore-column ENDOF
0 OF restore-column ENDOF
drop restore-file EXIT
ENDCASE
;
privatize
| Forth | 5 | nickpascucci/pforth | fth/save-input.fth | [
"0BSD"
] |
#pragma once
#include "envoy/event/dispatcher.h"
#include "source/common/network/utility.h"
#include "source/common/quic/envoy_quic_packet_writer.h"
#include "source/common/quic/envoy_quic_utils.h"
#include "source/common/quic/quic_network_connection.h"
#include "quiche/quic/core/quic_connection.h"
namespace Envoy {
namespace Quic {
class PacketsToReadDelegate {
public:
virtual ~PacketsToReadDelegate() = default;
virtual size_t numPacketsExpectedPerEventLoop() PURE;
};
// A client QuicConnection instance managing its own file events.
class EnvoyQuicClientConnection : public quic::QuicConnection,
public QuicNetworkConnection,
public Network::UdpPacketProcessor {
public:
// A connection socket will be created with given |local_addr|. If binding
// port not provided in |local_addr|, pick up a random port.
EnvoyQuicClientConnection(const quic::QuicConnectionId& server_connection_id,
Network::Address::InstanceConstSharedPtr& initial_peer_address,
quic::QuicConnectionHelperInterface& helper,
quic::QuicAlarmFactory& alarm_factory,
const quic::ParsedQuicVersionVector& supported_versions,
Network::Address::InstanceConstSharedPtr local_addr,
Event::Dispatcher& dispatcher,
const Network::ConnectionSocket::OptionsSharedPtr& options);
EnvoyQuicClientConnection(const quic::QuicConnectionId& server_connection_id,
quic::QuicConnectionHelperInterface& helper,
quic::QuicAlarmFactory& alarm_factory, quic::QuicPacketWriter* writer,
bool owns_writer,
const quic::ParsedQuicVersionVector& supported_versions,
Event::Dispatcher& dispatcher,
Network::ConnectionSocketPtr&& connection_socket);
// Network::UdpPacketProcessor
void processPacket(Network::Address::InstanceConstSharedPtr local_address,
Network::Address::InstanceConstSharedPtr peer_address,
Buffer::InstancePtr buffer, MonotonicTime receive_time) override;
uint64_t maxDatagramSize() const override;
void onDatagramsDropped(uint32_t) override {
// TODO(mattklein123): Emit a stat for this.
}
size_t numPacketsExpectedPerEventLoop() const override {
if (delegate_.has_value()) {
return delegate_.value().get().numPacketsExpectedPerEventLoop();
}
return DEFAULT_PACKETS_TO_READ_PER_CONNECTION;
}
// Register file event and apply socket options.
void setUpConnectionSocket(Network::ConnectionSocket& connection_socket,
OptRef<PacketsToReadDelegate> delegate);
// Switch underlying socket with the given one. This is used in connection migration.
void switchConnectionSocket(Network::ConnectionSocketPtr&& connection_socket);
// Potentially trigger migration.
void OnPathDegradingDetected() override;
// Called when port migration probing succeeds. Attempts to migrate this connection onto the new
// socket extracted from context.
void onPathValidationSuccess(std::unique_ptr<quic::QuicPathValidationContext> context);
// Called when port migration probing fails. The probing socket from context will go out of scope
// and be destructed.
void onPathValidationFailure(std::unique_ptr<quic::QuicPathValidationContext> context);
void setNumPtosForPortMigration(uint32_t num_ptos_for_path_degrading);
private:
// Holds all components needed for a QUIC connection probing/migration.
class EnvoyQuicPathValidationContext : public quic::QuicPathValidationContext {
public:
EnvoyQuicPathValidationContext(quic::QuicSocketAddress& self_address,
quic::QuicSocketAddress& peer_address,
std::unique_ptr<EnvoyQuicPacketWriter> writer,
std::unique_ptr<Network::ConnectionSocket> probing_socket);
~EnvoyQuicPathValidationContext() override;
quic::QuicPacketWriter* WriterToUse() override;
EnvoyQuicPacketWriter* releaseWriter();
Network::ConnectionSocket& probingSocket();
std::unique_ptr<Network::ConnectionSocket> releaseSocket();
private:
std::unique_ptr<EnvoyQuicPacketWriter> writer_;
Network::ConnectionSocketPtr socket_;
};
// Receives notifications from the Quiche layer on path validation results.
class EnvoyPathValidationResultDelegate : public quic::QuicPathValidator::ResultDelegate {
public:
explicit EnvoyPathValidationResultDelegate(EnvoyQuicClientConnection& connection);
void OnPathValidationSuccess(std::unique_ptr<quic::QuicPathValidationContext> context) override;
void OnPathValidationFailure(std::unique_ptr<quic::QuicPathValidationContext> context) override;
private:
EnvoyQuicClientConnection& connection_;
};
EnvoyQuicClientConnection(const quic::QuicConnectionId& server_connection_id,
quic::QuicConnectionHelperInterface& helper,
quic::QuicAlarmFactory& alarm_factory,
const quic::ParsedQuicVersionVector& supported_versions,
Event::Dispatcher& dispatcher,
Network::ConnectionSocketPtr&& connection_socket);
void onFileEvent(uint32_t events, Network::ConnectionSocket& connection_socket);
void maybeMigratePort();
OptRef<PacketsToReadDelegate> delegate_;
uint32_t packets_dropped_{0};
Event::Dispatcher& dispatcher_;
bool migrate_port_on_path_degrading_{false};
};
} // namespace Quic
} // namespace Envoy
| C | 3 | giantcroc/envoy | source/common/quic/envoy_quic_client_connection.h | [
"Apache-2.0"
] |
Conv1
Conv2
Dense
Dense
CustomOp
AvgPool3D
Softmax
Softmax
Conv2
Conv1
Dense
CustomOp"
AvgPool3DH | PureBasic | 0 | yage99/tensorflow | tensorflow/lite/toco/logging/testdata/toco_log_after.pb | [
"Apache-2.0"
] |
import { StyleRules } from '@mui/styles/withStyles';
/**
* This function doesn't really "do anything" at runtime, it's just the identity
* function. Its only purpose is to defeat TypeScript's type widening when providing
* style rules to `withStyles` which are a function of the `Theme`.
* @param styles a set of style mappings
* @returns the same styles that were passed in
*/
// For TypeScript v3.5 Props has to extend {} instead of object
// See https://github.com/mui-org/material-ui/issues/15942
// and https://github.com/microsoft/TypeScript/issues/31735
export default function createStyles<ClassKey extends string, Props extends {}>(
styles: StyleRules<Props, ClassKey>,
): StyleRules<Props, ClassKey>;
| TypeScript | 4 | JanithKE/material-ui | packages/mui-styles/src/createStyles/createStyles.d.ts | [
"MIT"
] |
// https://sccode.org/1-50j
// Rumush
// https://mycelialcordsblog.wordpress.com/
// https://fungorumush.bandcamp.com/releases
// https://soundcloud.com/fungorum
(
f = {
var rep = [4, 8, 16, 32];
var n = rep.choose;
var x = [
54, 60, 66, 72, 81, 90, 96, 102,
108, 128, 132, 144, 162, 180, 192, 204,
216, 240, 264, 288, 324, 360, 384, 408,
432, 480, 528, 576, 648, 720, 768, 816,
864, 960, 1056, 1152, 1296, 1440, 1536, 1632,
1728, 1920, 2112, 2304, 2592, 2880, 3072, 3264,
3456, 3840, 4224, 4608, 5184, 5760, 6144, 6528,
6912, 7680, 8448, 9216, 10368, 11520, 12288, 528
];
Mix.fill(n,
{
var detune = 5.rand;
var sin = SinOsc.ar(x.choose, 4.rand, 0.25);
var saw = RLPF.ar(Saw.ar(x.choose*0.01+detune, 0.75), x.choose, 2.rand).tanh;
Pan2.ar((sin+saw) * EnvGen.kr(Env.sine(12, 1/n), 1, doneAction:2),
1.rand2) }
);
};
)
(
// DEFINE A ROUTINE
r = Routine({
inf.do({
f.play;
10.wait;
})
});
)
r.reset.play;
// https://sccode.org/1-j
n=LFNoise1;Ndef(\x,{a=SinOsc.ar(65,Ndef(\x).ar*n.ar(0.1,3),n.ar(3,6)).tanh;9.do{a=AllpassL.ar(a,0.3,{0.2.rand+0.1}!2,5)};a.tanh}).play
// https://sccode.org/1-9
play{a=HPF.ar(ar(PinkNoise,5e-3),10)*Line.kr(0,1,9);ar(GVerb,({|i|ar(Ringz,a*LFNoise1.kr(0.05+0.1.rand),55*i+60,0.2)}!99).sum,70,99).tanh}
| SuperCollider | 3 | drichardson/examples | SuperCollider/Ambient.scd | [
"Unlicense"
] |
package test;
public interface DeepSamLoop {
interface Foo {
void foo(Bar p);
}
interface Bar {
void foo(Foo p);
}
}
| Java | 3 | qussarah/declare | compiler/testData/loadJava/compiledJava/sam/adapters/DeepSamLoop.java | [
"Apache-2.0"
] |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// clang-format off
float4 main(uint id: SV_VERTEXID): SV_POSITION
// clang-format on
{
// The algorithm below is a fast way to generate a full screen triangle,
// published by Bill Bilodeau "Vertex Shader Tricks" at GDC14.
// It covers the entire viewport and is faster for the GPU than a quad/rectangle.
return float4(
float(id / 2) * 4.0 - 1.0,
float(id % 2) * 4.0 - 1.0,
0.0,
1.0
);
}
| HLSL | 4 | memcpy-rand-rand-rand/terminal | src/renderer/atlas/shader_vs.hlsl | [
"MIT"
] |
//===- SwiftAbstractBasicReader.h - Clang serialization adapter -*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file provides an intermediate CRTP class which implements most of
// Clang's AbstractBasicReader interface, paralleling the behavior defined
// in SwiftAbstractBasicWriter.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_CLANGIMPORTER_SWIFTABSTRACTBASICREADER_H
#define SWIFT_CLANGIMPORTER_SWIFTABSTRACTBASICREADER_H
#include "clang/AST/ASTContext.h"
#include "clang/AST/AbstractTypeReader.h"
// This include is required to instantiate the template code in
// AbstractBasicReader.h, i.e. it's a workaround to an include-what-you-use
// violation.
#include "clang/AST/DeclObjC.h"
namespace swift {
/// An implementation of Clang's AbstractBasicReader interface for a Swift
/// datastream-based reader. This is paired with the AbstractBasicWriter
/// implementation in SwiftAbstractBasicWriter.h. Note that the general
/// expectation is that the types and declarations involved will have passed
/// a serializability check when this is used for actual deserialization.
///
/// The subclass must implement:
/// uint64_t readUInt64();
/// clang::IdentifierInfo *readIdentifier();
/// clang::Stmt *readStmtRef();
/// clang::Decl *readDeclRef();
template <class Impl>
class DataStreamBasicReader
: public clang::serialization::DataStreamBasicReader<Impl> {
using super = clang::serialization::DataStreamBasicReader<Impl>;
public:
using super::asImpl;
using super::getASTContext;
DataStreamBasicReader(clang::ASTContext &ctx) : super(ctx) {}
/// Perform all the calls necessary to write out the given type.
clang::QualType readTypeRef() {
auto kind = clang::Type::TypeClass(asImpl().readUInt64());
return clang::serialization::AbstractTypeReader<Impl>(asImpl()).read(kind);
}
bool readBool() {
return asImpl().readUInt64() != 0;
}
uint32_t readUInt32() {
return uint32_t(asImpl().readUInt64());
}
clang::Selector readSelector() {
uint64_t numArgsPlusOne = asImpl().readUInt64();
// The null case.
if (numArgsPlusOne == 0)
return clang::Selector();
unsigned numArgs = unsigned(numArgsPlusOne - 1);
SmallVector<clang::IdentifierInfo *, 4> chunks;
for (unsigned i = 0, e = std::max(numArgs, 1U); i != e; ++i)
chunks.push_back(asImpl().readIdentifier());
return getASTContext().Selectors.getSelector(numArgs, chunks.data());
}
clang::SourceLocation readSourceLocation() {
// Always read null.
return clang::SourceLocation();
}
clang::QualType readQualType() {
clang::Qualifiers quals = asImpl().readQualifiers();
clang::QualType type = asImpl().readTypeRef();
return getASTContext().getQualifiedType(type, quals);
}
};
}
#endif
| C | 5 | gandhi56/swift | include/swift/ClangImporter/SwiftAbstractBasicReader.h | [
"Apache-2.0"
] |
parameters {
array[4, 5] matrix<lower=0, upper=1>[2, 3] p_ar_mat;
}
model {
for (i in 1 : 4)
for (j in 1 : 5)
for (k in 1 : 2)
for (l in 1 : 3)
p_ar_mat[i, j, k, l] ~ normal(0, 1);
}
generated quantities {
array[4, 5] matrix[2, 3] gq_ar_mat;
for (i in 1 : 4)
for (j in 1 : 5)
for (k in 1 : 2)
for (l in 1 : 3)
gq_ar_mat[i, j, k, l] = p_ar_mat[i, j, k, l];
}
| Stan | 2 | sthagen/stan-dev-stan | src/test/test-models/good/services/gq_test_multidim.stan | [
"CC-BY-3.0",
"BSD-3-Clause"
] |
#include "script_component.hpp"
/*
Name: TFAR_fnc_getVehicleRadios
Author: Jaffa
Gets a list of radios in the specified vehicle
Arguments:
0: Vehicle <OBJECT>
Return Value:
0: Vehicle <OBJECT>
1: Radio Settings ID <STRING>
Example:
_radios = _vehicle call TFAR_fnc_getVehicleRadios;
Public: Yes
*/
if !(params [["_vehicle",objNull,[objNull]]]) exitWith { ERROR_1("TFAR: Vehicle must be passed to getVehicleRadios. %1 was passed instead.", _vehicle) };
if (isNull _vehicle || {!(_vehicle call TFAR_fnc_hasVehicleRadio)}) exitWith {[]};
private _result = [[_vehicle, "gunner_radio_settings"], [_vehicle, "driver_radio_settings"], [_vehicle, "commander_radio_settings"], [_vehicle, "copilot_radio_setting"]];
private _turrets = [(typeOf _vehicle), "TFAR_AdditionalLR_Turret", []] call TFAR_fnc_getVehicleConfigProperty;
{_result pushBack [_vehicle, format["turretUnit_%1_radio_setting", _forEachIndex]] } forEach _turrets;
private _cargos = [(typeOf _vehicle), "TFAR_AdditionalLR_Cargo", []] call TFAR_fnc_getVehicleConfigProperty;
_cargos = _cargos apply {[_vehicle, format ["cargoUnit_%1_radio_setting", _x]]};
_result append _cargos;
_result
| SQF | 5 | MrDj200/task-force-arma-3-radio | addons/core/functions/fnc_getVehicleRadios.sqf | [
"RSA-MD"
] |
[Desktop Entry]
Version=1.0
Type=Application
Name=Simula
GenericName=Simula
Comment=VR Compositor
Exec=godot
Icon=godot
Terminal=false
Categories=Game;
| desktop | 1 | jdc-cunningham/Simula | godot.desktop | [
"MIT"
] |
<header role="banner">
<h1>Unknown action</h1>
</header>
<main role="main" id="container">
<%= render "rescues/message_and_suggestions", exception: @exception %>
</main>
| HTML+ERB | 1 | jstncarvalho/rails | actionpack/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb | [
"MIT"
] |
<p>Testing is a property exists: ${student???c}</p>
<#if status??>
<p>Property value: ${status.reason}</p>
<#else>
<p>Missing property</p>
</#if>
<p>Iterating a sequence:</p>
<#list statuses>
<ul>
<#items as status>
<li>${status}</li>
</#items>
</ul>
<#else>
<p>No statuses available</p>
</#list>
<p>Using static methods</p>
<#assign MathUtils=statics['java.lang.Math']>
<p>PI value: ${MathUtils.PI}</p>
<p>2*10 is: ${MathUtils.pow(2, 10)}</p>
<p>Using bean method</p>
<p>Random value: ${random.nextInt()}</p>
<p>Use custom method</p>
<p>Last char example: ${lastChar('mystring')}</p> | FreeMarker | 3 | DBatOWL/tutorials | spring-freemarker/src/main/webapp/WEB-INF/views/ftl/commons.ftl | [
"MIT"
] |
Server.default.waitForBoot {
SynthDef(\sine, {
var snd;
snd = SinOsc.ar(\freq.kr(440));
snd = snd * Env.perc(0.01, 0.3).ar(Done.freeSelf);
Out.ar(0, snd);
}).add;
Server.default.sync;
i = NetAddr.new("127.0.0.1", 5510);
Routine({
10.do {
var freq;
freq = exprand(100, 8000);
i.sendMsg("/vars/freq", freq);
Synth(\sine, [freq: freq, 8000, amp: 0.1]);
rrand(0.1, 0.5).yield;
};
0.exit;
}).play;
};
| SuperCollider | 3 | claudeha/improviz | examples/osc-interaction/supercollider-osc.scd | [
"BSD-3-Clause"
] |
extern (C) int plus_one(int x);
| D | 2 | n8sh/rules_d | tests/simple_c_library/simple_library_wrapper.di | [
"Apache-2.0"
] |
li
.activitie-container
.activity-type.change-team
i.fa.fa-arrow-right
.user-image
= user_image_tag(activity.owner)
.description
h6
strong
= "#{activity_owner(activity)} migrated all namespaces"
| from
strong
= activity.parameters[:old_team]
| team to
= link_to activity_team(activity), activity.trackable
| team
small
i.fa.fa-clock-o
= activity_time_tag activity.created_at
| Slim | 4 | xybots/Portus | app/views/public_activity/team/_migration.html.slim | [
"Apache-2.0"
] |
defmodule FrameworkBenchmarks.Handlers.JSON do
@moduledoc """
This is the handle for the /json route
"""
def handle(conn) do
{:ok, json} = Eljiffy.encode(%{message: "Hello, World!"})
conn
|> Plug.Conn.put_resp_content_type("application/json")
|> Plug.Conn.send_resp(200, json)
end
end
| Elixir | 4 | xsoheilalizadeh/FrameworkBenchmarks | frameworks/Elixir/plug/lib/framework_benchmarks/handlers/json.ex | [
"BSD-3-Clause"
] |
\ require structs.fth
\ require named-locals.fth
\ require strings.fth
\ require parsers.fth
\ require luhn.fth
{ ."
This is a sample that searches allocated memory in other processes.
It presents a functional interface, where you can provide your own
scanners that are passed regions of memory from the target process.
E.g., consider these examples:
Run 672 ' scan-pans each-region to search for 16-digit #s
Run 672 { s\" josh\" match-ascii } each-region to search for ASCII
strings that contain josh as a substring.
In each case, the stack effect for the each-region word is as
follows:
( PID FN -- )
Where PID is the process ID of the target process whose memory you
want to scan, and FN is the XT for a function that will behave in
the following way:
( ADDR LEN -- )
The scanner is thus passed a region of memory starting at the address
ADDR, and continuing for LEN bytes. You can also use the word
translate to translate an address in this provided region to its
correct address in the target process's address space:
: translate ( ADDR -- ADDR' ) ... ;
The sophistication of these scanners is up to you. NOTE: the scanner
will only process PAGE_READWRITE regions of memory. If you want to
scan others, you'll have to modify the code.
" ETX emit }!
: word-align 7 + $fffffff8 and ;
: para-align 15 + $fffffff0 and ;
\ Some structures from WIN32 that we need to work with
struct SYSTEM_INFO
DWORD field dwOemId
DWORD field dwPageSize
QWORD field lpMinimumApplicationAddress
QWORD field lpMaximumApplicationAddress
QWORD field dwActiveProcessorMask
DWORD field dwNumberOfProcessors
DWORD field dwProcessorType
DWORD field dwAllocationGranularity
WORD field wProcessorLevel
WORD field wProcessorRevision
end-struct
struct MEMORY_BASIC_INFORMATION
QWORD field BaseAddress
QWORD field AllocationBase
DWORD field AllocationProtect
word-align
QWORD field RegionSize
DWORD field State
DWORD field Protect
DWORD field Type
word-align
end-struct
\ function imports from KERNEL32.DLL
kernel32 3 dllfun OpenProcess OpenProcess
kernel32 4 dllfun VirtualQueryEx VirtualQueryEx
kernel32 1 dllfun GetSystemInfo GetSystemInfo
kernel32 5 dllfun ReadProcessMemory ReadProcessMemory
$400 value PROCESS_QUERY_INFORMATION
$10 value PROCESS_VM_READ
variable target-pid
variable output
variable region
variable bytes
variable process
variable minaddr
variable maxaddr
: 8align 8 here 7 and - allot here this >xt 10 + ! ;
create system-info 8align SYSTEM_INFO allot
create mem-info 8align MEMORY_BASIC_INFORMATION allot
: get-sys-info
system-info GetSystemInfo drop
system-info lpMinimumApplicationAddress @ minaddr !
system-info lpMaximumApplicationAddress @ maxaddr !
;
: open-process
dup target-pid !
PROCESS_QUERY_INFORMATION PROCESS_VM_READ or
0 rot OpenProcess process !
;
: close-process
process @ CloseHandle drop
;
: mem-valid?
mem-info Protect get 4 =
;
: mem-commited?
mem-info State get $1000 =
;
readline \RFound region: \B%.d\R bytes at address \B%.x\R prot: \B%x\R state: \B%x\R\n
String value region-fmt
: .region
mem-info State get
mem-info Protect get
mem-info BaseAddress get 10
mem-info RegionSize get 14
region-fmt S.printf
;
: translate region @ - mem-info BaseAddress get + ;
variable scanner
variable range-start
variable range-len
\ ------------------------------------------------------------------------
\ Scanning for 16-digit numbers that might be PANs -- including UNICODE!
\ This uses the parsers.fth library to do a pretty decent job of finding
\ likely PAN encodings.
\ ------------------------------------------------------------------------
\ I want to support Unicode and ASCII, so we'll redefine walk to work with either
' walk value walk-fn
: walk-unicode over w@ >r >r 2 + r> 2 - r> ;
: walk-ascii walk ;
: walk walk-fn execute ;
: unicode ['] walk-unicode [to] walk-fn ;
: ascii ['] walk-ascii [to] walk-fn ;
create TEST 16 allot
create PAN 16 allot
variable PAN-index PAN-index off
: inc-index PAN-index @ 1+ 16 /mod drop PAN-index ! ;
: save-digit PAN PAN-index @ + c! inc-index ;
: get-PAN 16 0 do PAN PAN-index @ + c@ TEST i + c! inc-index loop ;
variable sepchar
: EOS dup 0 = ;
: digit walk dup $30 $39 within dup if swap save-digit else nip then ;
: digits 0 do digit not if unloop 0 return then loop -1 ;
: <>digit digit not ;
: sentinel walk [char] ; = ;
: sep1 walk sepchar ! -1 ;
: sepN walk sepchar @ = ;
: term parser EOS | <>digit end-parser ;
: cc#-sep
parser
4 digits & sep1 & 4 digits & sepN & 4 digits & sepN & 4 digits
end-parser
;
: cc#-lang
parser
cc#-sep & term |
16 digits & term |
sentinel & digit & digit & me
end-parser
;
: cc#-lang parser ascii cc#-lang | unicode cc#-lang end-parser ascii ;
: .addr ." 0x" 12 hex .r dec ;
\ finds likely PANs in memory
: scan-pans ( addr u -- )
begin
dup 16 > while
\ make sure we're in a string
\ (this makes a HUGE difference in performance)
over c@ 32 126 within if
\ parse this spot for a PAN
2dup cc#-lang if
\ we have a match, so pull it out and print it for the user
>r >r over ( addr u addr )
r@ swap - ( addr u len )
\ load match into TEST variable, and check for luhn
get-PAN TEST 16 luhn if
\ yay, a "legit" PAN, print it!
nip over hex -bold .addr +bold
TEST 16 type space
-bold type cr
else
\ an illegitimate PAN, so scrub the stack
nip 2drop
then
2r> ( addr u )
else
2drop walk drop
then
else
walk drop
then
repeat
2drop
;
\ ------------------------------------------------------------------------
\ Scanning for ASCII substrings
\ ------------------------------------------------------------------------
: ascii? 32 126 within ;
: strlen ( boundary addr -- addr u )
tuck - 2dup bounds do
i c@ ascii? 0= if drop dup i - neg unloop return then
loop
;
: backup ( boundary here -- here' )
begin
2dup <= while
dup 1- c@ ascii? 0= if nip return then
1-
repeat
nip
;
: contains ( regA regN subA subN -- addr[1] )
locals regA regN subA subN
begin
regN @ subN @ >= while
regA @ subN @ subA @ subN @ strcmp 0=
if regA @ unframe return then
1 regA +!
1 regN -!
repeat
0
end-locals
;
\ this is ugly, even without using local named variables. I should
\ really consider abstracting a lot of this with a general strings
\ or region API.
variable notified
: match-ascii ( addr u addr u -- )
notified on
locals regA regN subA subN
\ loop through this region until we've checked it all
begin regN @ subN @ >= while
\ test if from this offset, we find a string match
regA @ regN @ subA @ subN @ contains
dup if
\ print region info for first match
notified @ if cr .region notified off then
\ find beginning of this string
regA @ swap backup
\ find forward extent of this string
regA @ regN @ + over strlen ( matchA matchU )
\ translate its address to target's space and print in hex
over translate -bold hex 16 .r dec +bold
\ now print this detected string
2dup type cr
\ advance to the remaining portion of this region
nip + regA @ regN @ + over -
regN ! regA !
else
drop unframe return
then
repeat
end-locals
;
\ ------------------------------------------------------------------------
\ Reading memory in another process
\ ------------------------------------------------------------------------
: read-memory ( -- bool )
mem-info RegionSize get allocate region !
process @
mem-info BaseAddress get
region @
mem-info RegionSize get
output
ReadProcessMemory
;
: .prefix
bytes off .pre -bold ." Successfully opened process "
+bold target-pid @ . cr cr
;
: .amount
dup $400 < if . ." B " return then
dup $100000 < if $400 / . ." KB " return then
dup $40000000 < if $100000 / . ." MB " return then
$40000000 / . ." GB "
;
: .suffix
-bold ." \nProcessed " +bold bytes @ .amount -bold ." of process RAM\n" .post
;
: setup ( pid scan -- ) get-sys-info scanner ! open-process ;
: in-memory? ( -- bool ) minaddr @ maxaddr @ < ;
: get-region ( -- bool ) process @ minaddr @ mem-info MEMORY_BASIC_INFORMATION VirtualQueryEx ;
: scan-region ( -- ) region @ mem-info RegionSize get scanner @ execute ;
: next-region ( -- ) mem-info RegionSize get minaddr +! ;
: handle-region ( -- )
mem-valid? mem-commited? and if
mem-info RegionSize get bytes +!
read-memory
if scan-region then
region @ free
then
;
\ Start at minimum address, while below max address
: each-region
depth 2 >= if
setup process @ if
.prefix begin
in-memory? while
get-region 0= if .err return then
handle-region
next-region
repeat
.suffix close-process
else
.err
then
else
." usage: [pid] [fun] each-region\n"
then
;
| Forth | 5 | jephthai/EvilVM | samples/procdump.fth | [
"MIT"
] |
/W [ 32 [ 165 220 366 330 330 660 550 183 220 220 ]
42 [ 330 376 165 220 165 183 330 330 330 330 330 330 330 330 330 330 ]
58 59 220 60 62 376 63 [ 330 614 477 440 477 477 440 403 513 513 257 330 513 440 623 477 513 403 513 477 367 440 477 477 660 477 477 440 220 183 220 384 330 220 330 367 293 367 293 220 330 367 183 220 367 183 550 367 330 367 367 293 257 220 367 330 477 330 330 293 260 145 260 358 500 ]
160 [ 165 220 ]
162 165 330 166 [ 146 330 220 493 198 330 376 220 493 330 264 362 198 198 220 380 356 165 220 198 218 330 ]
188 190 495 191 191 330 192 197 477 198 [ 660 477 ]
200 203 440 204 207 257 208 209 477 210 214 513 215 [ 376 514 ]
217 221 477 222 [ 403 367 ]
224 229 330 230 230 477 231 235 293 236 239 184 240 [ 330 367 330 330 330 330 330 ]
247 [ 362 330 ]
249 252 367 253 [ 330 367 330 ]
305 305 184 338 [ 660 477 ]
352 [ 367 257 ]
376 376 477 381 [ 440 293 ]
402 402 330 710 711 220 730 730 220 732 732 220 3585 [ 383 415 453 404 419 499 324 380 426 403 470 527 545 444 449 386 526 561 543 411 418 398 447 383 460 442 444 414 414 494 494 433 435 370 349 387 383 437 360 417 442 420 462 568 383 374 440 350 0 284 284 ]
3636 3642 0 3647 [ 440 174 356 251 232 291 300 338 ]
3655 3662 0 3663 [ 357 380 358 529 498 496 508 356 515 503 388 491 821 ]
8203 8203 0 8211 [ 330 660 ]
8216 8218 220 8220 8222 330 8224 [ 330 330 231 ]
8230 8230 660 8240 8240 660 8249 8250 220 8364 8364 330 8482 8482 660 8729 8729 165 9676 9676 498 9702 9702 220 57344 [ 0 165 0 386 0 0 0 0 0 0 0 0 0 ]
57357 57357 540 57358 57365 0 57366 [ 100 221 221 ]
57369 57376 0 57377 57386 330 57387 57394 0 ] | Redcode | 0 | joomlacorner/POS-Order-2.0-UX | application/third_party/mpdf/ttfontdata/angsaB.cw | [
"Apache-2.0"
] |
111
0 0
1 0
2 0
3 0
4 0
5 0
6 0
7 0
8 0
9 0.0981
10 0
11 0
12 0
13 0
14 0
15 0
16 0
17 0
18 0
19 0
20 0
21 0.158603693039124
22 -0.0193458381212454
23 0.0193458381212454
24 0
25 0
26 0
27 0
28 0
29 0
30 0
31 0
32 0
33 0.102970891299645
34 -0.0111634534323501
35 -0.0111634534323501
36 0
37 0
38 0
39 0
40 0
41 0
42 -0.00153640977112912
43 -0.000307281954225824
44 -0.000307281954225824
45 0
46 0
47 0
48 0
49 0
50 0
51 0.136879345369039
52 -0.00890400161804519
53 0.0288087273207541
54 0.0189633296557457
55 -0.000716208176833027
56 -0.0160654354629264
57 0
58 0
59 0
60 0
61 0
62 0
63 0.0957676295189451
64 0.019153525903789
65 0.019153525903789
66 0.0296238417842897
67 0.00592476835685794
68 -0.00592476835685794
69 0.0215986423589302
70 -0.00498666016275485
71 0.00498666016275485
72 0.0326876244939598
73 0.00653752489879195
74 0.00653752489879195
75 0.0632901869011069
76 -0.011469967977634
77 -0.011469967977634
78 0
79 0
80 0
81 0.290740434870269
82 -0.00381104077334124
83 0.00122723131207013
84 0
85 0
86 0
87 0
88 0
89 0
90 0.192325373552509
91 -0.0139386875878197
92 -0.000738425979323141
93 0.068603483622823
94 -0.0131035962445148
95 0.0131035962445148
96 0.0502654895916723
97 -0.0105566529280912
98 0.0105566529280912
99 0
100 0
101 0
102 0.0242684194849157
103 0.00485368389698314
104 0.00485368389698314
105 0.0959630640681066
106 0.0191926128136213
107 0.0191926128136213
108 0.0337415580647845
109 0.00674831161295689
110 0.00674831161295689
| IDL | 0 | ricortiz/OpenTissue | demos/data/dlm/111/lambda.dlm | [
"Zlib"
] |
<#if (count)??>
<div id="failureContent">
-------------------
<h4>错误信息(错误总数: ${count})</h4>
<table border="1" class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>错误名称</th>
<th>错误个数</th>
</tr>
</thead>
<tbody>
<#list statusMap?keys as status>
<tr>
<td>${status}</td>
<td>${statusMap[status]}</td>
</tr>
</#list>
</tbody>
</table>
</div>
<div id="distrubuteContent">
-------------------
<h4>错误分布</h4>
<table border="1" class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th>机器IP</th>
<th>错误个数</th>
</tr>
</thead>
<tbody>
<#list distributeMap?keys as ip>
<tr>
<td>${ip}</td>
<td>${distributeMap[ip]}</td>
</tr>
</#list>
</tbody>
</table>
</div>
</#if> | FreeMarker | 3 | woozhijun/cat | cat-home/src/main/resources/freemaker/errorInfo.ftl | [
"Apache-2.0"
] |
import * as React from 'react';
import type { ButtonGroupProps } from './ButtonGroup';
interface IButtonGroupContext {
className?: string;
color?: ButtonGroupProps['color'];
disabled?: boolean;
disableElevation?: boolean;
disableFocusRipple?: boolean;
disableRipple?: boolean;
fullWidth?: boolean;
size?: ButtonGroupProps['size'];
variant?: ButtonGroupProps['variant'];
}
/**
* @ignore - internal component.
*/
const ButtonGroupContext = React.createContext<IButtonGroupContext>({});
if (process.env.NODE_ENV !== 'production') {
ButtonGroupContext.displayName = 'ButtonGroupContext';
}
export default ButtonGroupContext;
| TypeScript | 4 | dany-freeman/material-ui | packages/mui-material/src/ButtonGroup/ButtonGroupContext.ts | [
"MIT"
] |
#!/usr/bin/osascript
# @raycast.title Open Safari URL in Chrome
# @raycast.description Open current Safari URL in new tab in Chrome
# @raycast.author Dave Lehman
# @raycast.authorURL https://github.com/dlehman
# @raycast.icon images/safari.png
# @raycast.mode silent
# @raycast.packageName Safari
# @raycast.schemaVersion 1
tell application "Safari"
set safariUrl to URL of front document
end tell
tell application "Google Chrome"
activate
delay 0.5
tell front window to make new tab at after (get active tab) with properties {URL:safariUrl} -- open a new tab after the current tab
activate
end tell
| AppleScript | 4 | daviddzhou/script-commands | commands/apps/safari/safari-current-page-url-in-chrome.applescript | [
"MIT"
] |
<%@ page contentType="text/html; charset=utf-8" %>
<%@ taglib prefix="a" uri="/WEB-INF/app.tld"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="res" uri="http://www.unidal.org/webres"%>
<%@ taglib prefix="w" uri="http://www.unidal.org/web/core"%>
<jsp:useBean id="ctx" type="com.dianping.cat.report.page.server.Context" scope="request"/>
<jsp:useBean id="payload" type="com.dianping.cat.report.page.server.Payload" scope="request"/>
<jsp:useBean id="model" type="com.dianping.cat.report.page.server.Model" scope="request"/>
<a:serverBody>
<res:useJs value="${res.js.local['jquery.validate.min.js']}" target="head-js" />
<res:useJs value="${res.js.local['alarm_js']}" target="head-js" />
<res:useJs value="${res.js.local['dependencyConfig_js']}" target="head-js" />
<res:useCss value="${res.css.local['select2.css']}" target="head-css" />
<res:useJs value="${res.js.local['select2.min.js']}" target="head-js" />
<form method="post">
<h3 class="text-center text-success">修改网络监控规则</h3>
<div id="metrics">
<div id="metricItem" class="metric config">
EndPoint:
<input id="endPoint" value="${model.serverAlarmRule.endPoint}" class="productlineText" type="text" placeholder="支持正则" class="col-xs-10 col-sm-5">
指标:
<input id="measurement" value="${model.serverAlarmRule.measurement}" class="metricText" type="text" placeholder="" class="col-xs-10 col-sm-5">
标签:
<input id="tags" value="${model.serverAlarmRule.tags}" class="metricText" type="text" placeholder="" class="col-xs-10 col-sm-5">
监控类型:
<select id="metricType" name="rule.type">
<c:forEach var="item" items="${model.metricTypes}">
<option value="${item.name}">${item.title}</option>
</c:forEach>
</select>
</div>
</div>
${model.content}
<div style='text-align: center'>
<input class="btn btn-primary" id="ruleSubmitButton" type="text"
name="submit" value="提交">
</button>
</div>
</form>
<script type="text/javascript">
$(document).ready(function() {
initRuleConfigs(["DescVal","DescPer","AscVal","AscPer"]);
$('#serverConfig').addClass('active open');
$('#server_${payload.type}').addClass('active');
if("${model.serverAlarmRule.type}" != ""){
$("#metricType").val("${model.serverAlarmRule.type}");
}
$(document).delegate("#ruleSubmitButton","click",function(){
var configStr = generateConfigsJsonString();
console.log(configStr)
var endPoint = $("#endPoint").val();
var measurement = $("#measurement").val();
var tags = $("#tags").val();
var metricType = $("#metricType").val();
window.location.href = "?op=serverAlarmRuleSubmit&type=${payload.type}&rule.endPoint=" +
endPoint + "&rule.measurement="+ measurement + "&rule.tags="+ encodeURIComponent(tags) + "&rule.type=" +
metricType + "&rule.id=${payload.ruleId}&content=" + configStr;
});
$("#metrics").delegate(".delete-metric-button", "click", function () {
$(this).parent().remove();
});
});
</script>
</a:serverBody> | Java Server Pages | 3 | woozhijun/cat | cat-home/src/main/webapp/jsp/report/server/serverRuleUpdate.jsp | [
"Apache-2.0"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.