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 |
|---|---|---|---|---|---|
#!/usr/bin/env bash
set -e
set -o pipefail
RESULT_SNAP=$(find ./ -name "*.snap")
sudo snap install "$RESULT_SNAP" --dangerous --classic
/snap/bin/nvim --version
SHA256=$(sha256sum "$RESULT_SNAP")
echo "SHA256: ${SHA256} ."
| Shell | 3 | uga-rosa/neovim | ci/snap/after_success.sh | [
"Vim"
] |
<transformed subject="{mail/subject}">
{.}
</transformed> | XQuery | 1 | vkasala/camel-quarkus | integration-tests/saxon/src/main/resources/transform.xquery | [
"Apache-2.0"
] |
import createSvgIcon from './utils/createSvgIcon';
import { jsx as _jsx } from "react/jsx-runtime";
export default createSvgIcon( /*#__PURE__*/_jsx("path", {
d: "M14 2H4v20h16V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z"
}), 'NoteAddSharp'); | JavaScript | 3 | good-gym/material-ui | packages/material-ui-icons/lib/esm/NoteAddSharp.js | [
"MIT"
] |
a>b>div.svelte-xyz{color:red} | CSS | 1 | vatro/svelte | test/css/samples/global-with-child-combinator-3/expected.css | [
"MIT"
] |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX : <http://example.org/test#>
SELECT ?x
WHERE {
?x a [
a owl:Class ;
owl:intersectionOf (
:A
[
a owl:Class ;
owl:unionOf ( :B :C )
]
)
]
}
| SPARQL | 3 | yanaspaula/rdf4j | testsuites/sparql/src/main/resources/testcases-sparql-1.1-w3c/entailment/simple7.rq | [
"BSD-3-Clause"
] |
#############################################################################
## v # The Coq Proof Assistant ##
## <O___,, # INRIA - CNRS - LIX - LRI - PPS ##
## \VV/ # ##
## // # Makefile automagically generated by coq_makefile V8.5pl3 ##
#############################################################################
# WARNING
#
# This Makefile has been automagically generated
# Edit at your own risks !
#
# END OF WARNING
#
# This Makefile was generated by the command line :
# coq_makefile src/CpdtTactics.v src/MoreSpecif.v src/DepList.v src/Intro.v src/StackMachine.v src/InductiveTypes.v src/Predicates.v src/Coinductive.v src/Subset.v src/GeneralRec.v src/MoreDep.v src/DataStruct.v src/Equality.v src/Generic.v src/Universes.v src/LogicProg.v src/Match.v src/Reflection.v src/Large.v src/ProgLang.v src/Conclusion.v COQC = coqc -R src Cpdt COQDEP = coqdep -R src Cpdt -o Makefile.coq
#
.DEFAULT_GOAL := all
# This Makefile may take arguments passed as environment variables:
# COQBIN to specify the directory where Coq binaries resides;
# TIMECMD set a command to log .v compilation time;
# TIMED if non empty, use the default time command as TIMECMD;
# ZDEBUG/COQDEBUG to specify debug flags for ocamlc&ocamlopt/coqc;
# DSTROOT to specify a prefix to install path.
# Here is a hack to make $(eval $(shell works:
define donewline
endef
includecmdwithout@ = $(eval $(subst @,$(donewline),$(shell { $(1) | tr -d '\r' | tr '\n' '@'; })))
$(call includecmdwithout@,$(COQBIN)coqtop -config)
TIMED=
TIMECMD=
STDTIME?=/usr/bin/time -f "$* (user: %U mem: %M ko)"
TIMER=$(if $(TIMED), $(STDTIME), $(TIMECMD))
vo_to_obj = $(addsuffix .o,\
$(filter-out Warning: Error:,\
$(shell $(COQBIN)coqtop -q -noinit -batch -quiet -print-mod-uid $(1))))
##########################
# #
# Libraries definitions. #
# #
##########################
COQLIBS?=
COQCHKLIBS?=
COQDOCLIBS?=
##########################
# #
# Variables definitions. #
# #
##########################
COQC=coqc -R src Cpdt
COQDEP=coqdep -R src Cpdt
OPT?=
COQDEP?="$(COQBIN)coqdep" -c
COQFLAGS?=-q $(OPT) $(COQLIBS) $(OTHERFLAGS) $(COQ_XML)
COQCHKFLAGS?=-silent -o
COQDOCFLAGS?=-interpolate -utf8
COQC?=$(TIMER) "$(COQBIN)coqc"
GALLINA?="$(COQBIN)gallina"
COQDOC?="$(COQBIN)coqdoc"
COQCHK?="$(COQBIN)coqchk"
COQMKTOP?="$(COQBIN)coqmktop"
##################
# #
# Install Paths. #
# #
##################
ifdef USERINSTALL
XDG_DATA_HOME?="$(HOME)/.local/share"
COQLIBINSTALL=$(XDG_DATA_HOME)/coq
COQDOCINSTALL=$(XDG_DATA_HOME)/doc/coq
else
COQLIBINSTALL="${COQLIB}user-contrib"
COQDOCINSTALL="${DOCDIR}user-contrib"
COQTOPINSTALL="${COQLIB}toploop"
endif
######################
# #
# Files dispatching. #
# #
######################
VFILES:=src/CpdtTactics.v\
src/MoreSpecif.v\
src/DepList.v\
src/Intro.v\
src/StackMachine.v\
src/InductiveTypes.v\
src/Predicates.v\
src/Coinductive.v\
src/Subset.v\
src/GeneralRec.v\
src/MoreDep.v\
src/DataStruct.v\
src/Equality.v\
src/Generic.v\
src/Universes.v\
src/LogicProg.v\
src/Match.v\
src/Reflection.v\
src/Large.v\
src/ProgLang.v\
src/Conclusion.v
ifneq ($(filter-out archclean clean cleanall printenv,$(MAKECMDGOALS)),)
-include $(addsuffix .d,$(VFILES))
else
ifeq ($(MAKECMDGOALS),)
-include $(addsuffix .d,$(VFILES))
endif
endif
.SECONDARY: $(addsuffix .d,$(VFILES))
VO=vo
VOFILES:=$(VFILES:.v=.$(VO))
GLOBFILES:=$(VFILES:.v=.glob)
GFILES:=$(VFILES:.v=.g)
HTMLFILES:=$(VFILES:.v=.html)
GHTMLFILES:=$(VFILES:.v=.g.html)
OBJFILES=$(call vo_to_obj,$(VOFILES))
ALLNATIVEFILES=$(OBJFILES:.o=.cmi) $(OBJFILES:.o=.cmo) $(OBJFILES:.o=.cmx) $(OBJFILES:.o=.cmxs)
NATIVEFILES=$(foreach f, $(ALLNATIVEFILES), $(wildcard $f))
ifeq '$(HASNATDYNLINK)' 'true'
HASNATDYNLINK_OR_EMPTY := yes
else
HASNATDYNLINK_OR_EMPTY :=
endif
#######################################
# #
# Definition of the toplevel targets. #
# #
#######################################
all: $(VOFILES)
quick: $(VOFILES:.vo=.vio)
vio2vo:
$(COQC) $(COQDEBUG) $(COQFLAGS) -schedule-vio2vo $(J) $(VOFILES:%.vo=%.vio)
checkproofs:
$(COQC) $(COQDEBUG) $(COQFLAGS) -schedule-vio-checking $(J) $(VOFILES:%.vo=%.vio)
gallina: $(GFILES)
html: $(GLOBFILES) $(VFILES)
- mkdir -p html
$(COQDOC) -toc $(COQDOCFLAGS) -html $(COQDOCLIBS) -d html $(VFILES)
gallinahtml: $(GLOBFILES) $(VFILES)
- mkdir -p html
$(COQDOC) -toc $(COQDOCFLAGS) -html -g $(COQDOCLIBS) -d html $(VFILES)
all.ps: $(VFILES)
$(COQDOC) -toc $(COQDOCFLAGS) -ps $(COQDOCLIBS) -o $@ `$(COQDEP) -sort -suffix .v $^`
all-gal.ps: $(VFILES)
$(COQDOC) -toc $(COQDOCFLAGS) -ps -g $(COQDOCLIBS) -o $@ `$(COQDEP) -sort -suffix .v $^`
all.pdf: $(VFILES)
$(COQDOC) -toc $(COQDOCFLAGS) -pdf $(COQDOCLIBS) -o $@ `$(COQDEP) -sort -suffix .v $^`
all-gal.pdf: $(VFILES)
$(COQDOC) -toc $(COQDOCFLAGS) -pdf -g $(COQDOCLIBS) -o $@ `$(COQDEP) -sort -suffix .v $^`
validate: $(VOFILES)
$(COQCHK) $(COQCHKFLAGS) $(COQCHKLIBS) $(notdir $(^:.vo=))
beautify: $(VFILES:=.beautified)
for file in $^; do mv $${file%.beautified} $${file%beautified}old && mv $${file} $${file%.beautified}; done
@echo 'Do not do "make clean" until you are sure that everything went well!'
@echo 'If there were a problem, execute "for file in $$(find . -name \*.v.old -print); do mv $${file} $${file%.old}; done" in your shell/'
.PHONY: all archclean beautify byte clean cleanall gallina gallinahtml html install install-doc install-natdynlink install-toploop opt printenv quick uninstall userinstall validate vio2vo
####################
# #
# Special targets. #
# #
####################
byte:
$(MAKE) all "OPT:=-byte"
opt:
$(MAKE) all "OPT:=-opt"
userinstall:
+$(MAKE) USERINSTALL=true install
install:
install-doc:
install -d "$(DSTROOT)"$(COQDOCINSTALL)/$(INSTALLDEFAULTROOT)/html
for i in html/*; do \
install -m 0644 $$i "$(DSTROOT)"$(COQDOCINSTALL)/$(INSTALLDEFAULTROOT)/$$i;\
done
uninstall_me.sh: Makefile.coq
echo '#!/bin/sh' > $@
printf 'cd "$${DSTROOT}"$(COQLIBINSTALL)/$(INSTALLDEFAULTROOT) && find . -type d -and -empty -delete\ncd "$${DSTROOT}"$(COQLIBINSTALL) && find "$(INSTALLDEFAULTROOT)" -maxdepth 0 -and -empty -exec rmdir -p \{\} \;\n' >> "$@"
printf 'cd "$${DSTROOT}"$(COQDOCINSTALL)/$(INSTALLDEFAULTROOT) \\\n' >> "$@"
printf '&& rm -f $(shell find "html" -maxdepth 1 -and -type f -print)\n' >> "$@"
printf 'cd "$${DSTROOT}"$(COQDOCINSTALL) && find $(INSTALLDEFAULTROOT)/html -maxdepth 0 -and -empty -exec rmdir -p \{\} \;\n' >> "$@"
chmod +x $@
uninstall: uninstall_me.sh
sh $<
.merlin:
@echo 'FLG -rectypes' > .merlin
@echo "B $(COQLIB) kernel" >> .merlin
@echo "B $(COQLIB) lib" >> .merlin
@echo "B $(COQLIB) library" >> .merlin
@echo "B $(COQLIB) parsing" >> .merlin
@echo "B $(COQLIB) pretyping" >> .merlin
@echo "B $(COQLIB) interp" >> .merlin
@echo "B $(COQLIB) printing" >> .merlin
@echo "B $(COQLIB) intf" >> .merlin
@echo "B $(COQLIB) proofs" >> .merlin
@echo "B $(COQLIB) tactics" >> .merlin
@echo "B $(COQLIB) tools" >> .merlin
@echo "B $(COQLIB) toplevel" >> .merlin
@echo "B $(COQLIB) stm" >> .merlin
@echo "B $(COQLIB) grammar" >> .merlin
@echo "B $(COQLIB) config" >> .merlin
clean::
rm -f $(OBJFILES) $(OBJFILES:.o=.native) $(NATIVEFILES)
find . -name .coq-native -type d -empty -delete
rm -f $(VOFILES) $(VOFILES:.vo=.vio) $(GFILES) $(VFILES:.v=.v.d) $(VFILES:=.beautified) $(VFILES:=.old)
rm -f all.ps all-gal.ps all.pdf all-gal.pdf all.glob $(VFILES:.v=.glob) $(VFILES:.v=.tex) $(VFILES:.v=.g.tex) all-mli.tex
- rm -rf html mlihtml uninstall_me.sh
cleanall:: clean
rm -f $(patsubst %.v,.%.aux,$(VFILES))
archclean::
rm -f *.cmx *.o
printenv:
@"$(COQBIN)coqtop" -config
@echo 'CAMLC = $(CAMLC)'
@echo 'CAMLOPTC = $(CAMLOPTC)'
@echo 'PP = $(PP)'
@echo 'COQFLAGS = $(COQFLAGS)'
@echo 'COQLIBINSTALL = $(COQLIBINSTALL)'
@echo 'COQDOCINSTALL = $(COQDOCINSTALL)'
###################
# #
# Implicit rules. #
# #
###################
$(VOFILES): %.vo: %.v
$(COQC) $(COQDEBUG) $(COQFLAGS) $<
$(GLOBFILES): %.glob: %.v
$(COQC) $(COQDEBUG) $(COQFLAGS) $<
$(VFILES:.v=.vio): %.vio: %.v
$(COQC) -quick $(COQDEBUG) $(COQFLAGS) $<
$(GFILES): %.g: %.v
$(GALLINA) $<
$(VFILES:.v=.tex): %.tex: %.v
$(COQDOC) $(COQDOCFLAGS) -latex $< -o $@
$(HTMLFILES): %.html: %.v %.glob
$(COQDOC) $(COQDOCFLAGS) -html $< -o $@
$(VFILES:.v=.g.tex): %.g.tex: %.v
$(COQDOC) $(COQDOCFLAGS) -latex -g $< -o $@
$(GHTMLFILES): %.g.html: %.v %.glob
$(COQDOC) $(COQDOCFLAGS) -html -g $< -o $@
$(addsuffix .d,$(VFILES)): %.v.d: %.v
$(COQDEP) $(COQLIBS) "$<" > "$@" || ( RV=$$?; rm -f "$@"; exit $${RV} )
$(addsuffix .beautified,$(VFILES)): %.v.beautified:
$(COQC) $(COQDEBUG) $(COQFLAGS) -beautify $*.v
# WARNING
#
# This Makefile has been automagically generated
# Edit at your own risks !
#
# END OF WARNING
| Coq | 4 | k16shikano/cpdt-japanese | Makefile.coq | [
"MIT"
] |
Queens New count,flip,row,sol
Set sol=0
For row(1)=1:1:4 Do try(2) ; Not 8, the other 4 are symmetric...
;
; Remove symmetric solutions
Set sol="" For Set sol=$Order(sol(sol)) Quit:sol="" Do
. New xx,yy
. Kill sol($Translate(sol,12345678,87654321)) ; Vertical flip
. Kill sol($Reverse(sol)) ; Horizontal flip
. Set flip="--------" for xx=1:1:8 Do ; Flip over top left to bottom right diagonal
. . New nx,ny
. . Set yy=$Extract(sol,xx),nx=8+1-xx,ny=8+1-yy
. . Set $Extract(flip,ny)=nx
. . Quit
. Kill sol(flip)
. Set flip="--------" for xx=1:1:8 Do ; Flip over top right to bottom left diagonal
. . New nx,ny
. . Set yy=$Extract(sol,xx),nx=xx,ny=yy
. . Set $Extract(flip,ny)=nx
. . Quit
. Kill sol(flip)
. Quit
;
; Display remaining solutions
Set count=0,sol="" For Set sol=$Order(sol(sol)) Quit:sol="" Do Quit:sol=""
. New s1,s2,s3,txt,x,y
. Set s1=sol,s2=$Order(sol(s1)),s3="" Set:s2'="" s3=$Order(sol(s2))
. Set txt="+--+--+--+--+--+--+--+--+"
. Write !," ",txt Write:s2'="" " ",txt Write:s3'="" " ",txt
. For y=8:-1:1 Do
. . Write !,y," |"
. . For x=1:1:8 Write $Select($Extract(s1,x)=y:" Q",x+y#2:" ",1:"##"),"|"
. . If s2'="" Write " |"
. . If s2'="" For x=1:1:8 Write $Select($Extract(s2,x)=y:" Q",x+y#2:" ",1:"##"),"|"
. . If s3'="" Write " |"
. . If s3'="" For x=1:1:8 Write $Select($Extract(s3,x)=y:" Q",x+y#2:" ",1:"##"),"|"
. . Write !," ",txt Write:s2'="" " ",txt Write:s3'="" " ",txt
. . Quit
. Set txt=" A B C D E F G H"
. Write !," ",txt Write:s2'="" " ",txt Write:s3'="" " ",txt Write !
. Set sol=s3
. Quit
Quit
try(col) New ok,pcol
If col>8 Do Quit
. New out,x
. Set out="" For x=1:1:8 Set out=out_row(x)
. Set sol(out)=1
. Quit
For row(col)=1:1:8 Do
. Set ok=1
. For pcol=1:1:col-1 If row(pcol)=row(col) Set ok=0 Quit
. Quit:'ok
. For pcol=1:1:col-1 If col-pcol=$Translate(row(pcol)-row(col),"-") Set ok=0 Quit
. Quit:'ok
. Do try(col+1)
. Quit
Quit
Do Queens
| M | 4 | LaudateCorpus1/RosettaCodeData | Task/N-queens-problem/MUMPS/n-queens-problem-1.mumps | [
"Info-ZIP"
] |
#N canvas 591 65 452 454 12;
#X floatatom 225 125 0 0 0 0 - - -;
#X floatatom 189 125 0 0 0 0 - - -;
#X obj 170 97 notein;
#X floatatom 153 125 0 0 0 0 - - -;
#X floatatom 342 125 0 0 0 0 - - -;
#X floatatom 306 125 0 0 0 0 - - -;
#X floatatom 270 125 0 0 0 0 - - -;
#X obj 290 97 ctlin;
#X floatatom 96 125 0 0 0 0 - - -;
#X floatatom 57 125 0 0 0 0 - - -;
#X obj 57 97 bendin;
#X floatatom 105 163 0 0 0 0 - - -;
#X floatatom 59 163 0 0 0 0 - - -;
#X obj 59 192 bendout;
#X text 201 182 ... ad nauseam.;
#X text 205 414 updated for Pd version 0.34;
#X obj 68 308 midiout;
#X obj 273 355 sysexin;
#X msg 68 278 240 \, 45 \, 93 \, 3 \, 65 \, 1 \, 2 \, 3 \, 4 \, 247
;
#X text 61 239 You can format your own SYSEX messages as shown:;
#X text 109 354 and receive SYSEX via:;
#X text 39 20 Pd offers input and output objects for MIDI. Get a full
list of objects in the help file of any object below., f 50;
#X connect 2 0 3 0;
#X connect 2 1 1 0;
#X connect 2 2 0 0;
#X connect 7 0 6 0;
#X connect 7 1 5 0;
#X connect 7 2 4 0;
#X connect 10 0 9 0;
#X connect 10 1 8 0;
#X connect 11 0 13 1;
#X connect 12 0 13 0;
#X connect 18 0 16 0;
| Pure Data | 2 | mxa/pure-data | doc/2.control.examples/17.PART3.midi.pd | [
"TCL"
] |
; inherits: ecma
(required_parameter (identifier) @definition)
(optional_parameter (identifier) @definition)
; x => x
(arrow_function
parameter: (identifier) @definition.parameter)
;; ({ a }) => null
(required_parameter
(object_pattern
(shorthand_property_identifier_pattern) @definition.parameter))
;; ({ a: b }) => null
(required_parameter
(object_pattern
(pair_pattern
value: (identifier) @definition.parameter)))
;; ([ a ]) => null
(required_parameter
(array_pattern
(identifier) @definition.parameter))
(required_parameter
(rest_pattern
(identifier) @definition.parameter))
| Scheme | 3 | hmac/nvim-treesitter | queries/typescript/locals.scm | [
"Apache-2.0"
] |
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <Arduino.h>
// This Arduino sketch is used for manual testing with the browser test
// SerialApiTest.SerialExtension. We have tested with Arduino IDE 1.0.1.
void setup() {
Serial.begin(57600);
}
void loop() {
if (Serial.available() > 0)
Serial.print((char)Serial.read());
}
| Arduino | 4 | zealoussnow/chromium | chrome/test/data/extensions/api_test/serial/real_hardware/serial_arduino_test.ino | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
INSERT INTO movie(id, title, director, rating, duration) VALUES(1, 'Godzilla: King of the Monsters', ' Michael Dougherty', 'PG-13', 132);
INSERT INTO movie(id, title, director, rating, duration) VALUES(2, 'Avengers: Endgame', 'Anthony Russo', 'PG-13', 181);
INSERT INTO movie(id, title, director, rating, duration) VALUES(3, 'Captain Marvel', 'Anna Boden', 'PG-13', 123);
INSERT INTO movie(id, title, director, rating, duration) VALUES(4, 'Dumbo', 'Tim Burton', 'PG', 112);
INSERT INTO movie(id, title, director, rating, duration) VALUES(5, 'Booksmart', 'Olivia Wilde', 'R', 102);
INSERT INTO movie(id, title, director, rating, duration) VALUES(6, 'Aladdin', 'Guy Ritchie', 'PG', 128);
INSERT INTO movie(id, title, director, rating, duration) VALUES(7, 'The Sun Is Also a Star', 'Ry Russo-Young', 'PG-13', 100);
| SQL | 1 | DBatOWL/tutorials | persistence-modules/spring-data-jpa-repo-2/src/test/resources/test-movie-data.sql | [
"MIT"
] |
//===--- AsyncStream.cpp - Multi-resume locking interface -----------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2020 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
//
//===----------------------------------------------------------------------===//
#include "swift/Runtime/Mutex.h"
namespace swift {
// return the size in words for the given mutex primitive
extern "C"
size_t _swift_async_stream_lock_size() {
size_t words = sizeof(MutexHandle) / sizeof(void *);
if (words < 1) { return 1; }
return words;
}
extern "C"
void _swift_async_stream_lock_init(MutexHandle &lock) {
MutexPlatformHelper::init(lock);
}
extern "C"
void _swift_async_stream_lock_lock(MutexHandle &lock) {
MutexPlatformHelper::lock(lock);
}
extern "C"
void _swift_async_stream_lock_unlock(MutexHandle &lock) {
MutexPlatformHelper::unlock(lock);
}
}
| C++ | 3 | ldhough/swift | stdlib/public/Concurrency/AsyncStream.cpp | [
"Apache-2.0"
] |
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#include "textflag.h"
TEXT _rt0_386_freebsd(SB),NOSPLIT,$0
JMP _rt0_386(SB)
TEXT _rt0_386_freebsd_lib(SB),NOSPLIT,$0
JMP _rt0_386_lib(SB)
TEXT main(SB),NOSPLIT,$0
// Remove the return address from the stack.
// rt0_go doesn't expect it to be there.
ADDL $4, SP
JMP runtime·rt0_go(SB)
| GAS | 2 | Havoc-OS/androidprebuilts_go_linux-x86 | src/runtime/rt0_freebsd_386.s | [
"BSD-3-Clause"
] |
[CustomMessages]
pt_br.IDP_FormCaption =Baixando arquivos
pt_br.IDP_FormDescription =Por favor aguarde, enquanto recebe arquivos adicionais...
pt_br.IDP_TotalProgress =Progresso total
pt_br.IDP_CurrentFile =Arquivo atual
pt_br.IDP_File =Arquivo:
pt_br.IDP_Speed =Velocidade:
pt_br.IDP_Status =Estado:
pt_br.IDP_ElapsedTime =Tempo decorrido:
pt_br.IDP_RemainingTime =Tempo remanescente:
pt_br.IDP_DetailsButton =Detalhes
pt_br.IDP_HideButton =Ocultar
pt_br.IDP_RetryButton =Repetir
pt_br.IDP_IgnoreButton =
pt_br.IDP_KBs =KB/s
pt_br.IDP_MBs =MB/s
pt_br.IDP_X_of_X =%.2f de %.2f
pt_br.IDP_KB =KB
pt_br.IDP_MB =MB
pt_br.IDP_GB =GB
pt_br.IDP_Initializing =Inicializando...
pt_br.IDP_GettingFileInformation=Recebendo informações do arquivo...
pt_br.IDP_StartingDownload =Iniciando o download...
pt_br.IDP_Connecting =Conectando...
pt_br.IDP_Downloading =Baixando...
pt_br.IDP_DownloadComplete =Download finalizado
pt_br.IDP_DownloadFailed =Falha no download
pt_br.IDP_CannotConnect =Não pode conectar
pt_br.IDP_CancellingDownload =Cancelando o download...
pt_br.IDP_Unknown =Desconhecido
pt_br.IDP_DownloadCancelled =Download cancelado
pt_br.IDP_RetryNext =Verifique sua conexão e clique em 'Repetir' para tentar novamente o download dos arquivos, ou clique em 'Próximo' para continuar a instalação mesmo assim.
pt_br.IDP_RetryCancel =Verifique sua conexão e clique em 'Repetir' para tentar novamente o download dos arquivos, ou clique em 'Cancel' para finalizar a Instalação.
pt_br.IDP_FilesNotDownloaded =
pt_br.IDP_HTTPError_X =erro HTTP %d
pt_br.IDP_400 =Requisição inválida (400)
pt_br.IDP_401 =Acesso negado (401)
pt_br.IDP_404 =Arquivo não encontrado (404)
pt_br.IDP_407 =Autenticação de proxy necessária (407)
pt_br.IDP_500 =Erro interno do servidor (500)
pt_br.IDP_502 =Bad Gateway (502)
pt_br.IDP_503 =Serviço temporariamente indisponível (503)
| Inno Setup | 2 | lemalcs/Inno-download-plugin | unicode/idplang/brazilianPortuguese.iss | [
"Zlib"
] |
/*
* This file implements a fast L3 UDP packet generatior
*
* This can be used to test the throughput of a DUT, using a receiver-l3.click
* on some other end.
*
*
* A launch line would be :
* sudo bin/click -c 0x1 -n 4 -- conf/fastclick/pktgen-l3.click L=60 S=1000000 N=100
*/
//Default values for packet length, number of packets and amountfs of time to replay them
define($L 60, $N 100, $S 100000);
/*You do not need to change the mac address as we run in promisc, but you need
to set the srcip, gateway ip and dstip correctly */
define($smac 90:e2:ba:c3:79:66)
define($dmac 00:00:00:00:00:00)
define($srcip 192.168.130.4)
define($dstip 192.168.128.13)
define($gatewayip 192.168.130.1)
//Explained in loop.click
define($verbose 3)
define($blocking true)
//###################
// TX
//###################
//Create a UDP flow of $N packets
FastUDPFlows(RATE 0, LIMIT $N, LENGTH $L, SRCETH $smac, DSTETH $dmac, SRCIP $srcip, DSTIP $dstip, FLOWS 1, FLOWSIZE $N)
-> MarkMACHeader
//EnsureDPDKBuffer will copy the packet inside a DPDK buffer, so there is no more copies (not even to the NIC) afterwards when we replay the packet many time
-> EnsureDPDKBuffer
-> Strip(14)
-> CheckIPHeader
-> SetIPAddress($gatewayip)
-> uq :: Unqueue()
-> arp_q :: ARPQuerier($srcip, $smac)
-> Queue
//MutliReplayUqueue pulls all packets from its input, and replay them from memory $S amount of time
-> replay :: MultiReplayUnqueue(STOP -1, ACTIVE false, QUICK_CLONE 0)
-> ic0 :: AverageCounter()
-> td :: ToDPDKDevice(0, BLOCKING $blocking, VERBOSE $verbose)
//Do not replay arp queries...
arp_q[1]
-> td
//It is good practice to pin any source to let FastClick know what will eat the CPU and allocate FromDPDKDevice threads accordingly. It also help you know what you're doing. Multithreading is everything but magic.
StaticThreadSched(replay 0)
//###################
// RX
//###################
fd1 :: FromDPDKDevice(0, PROMISC true, VERBOSE $verbose)
-> arp_c :: Classifier(12/0800, 12/0806 20/0001, 12/0806 20/0002, -)
arp_c[0] -> Print("IP") -> Discard
arp_c[1] -> arp_r :: ARPResponder($srcip $smac) -> td
arp_c[2]
-> [1]arp_q
arp_c[3] -> Print("Other") -> Discard
Script( TYPE ACTIVE,
wait 2s, //Let time for ARP
write replay.active true, //Launch replay
label start,
wait 1s,
print "Number of packets sent : $(ic0.count)",
print "TX link rate : $(ic0.link_rate)",
goto start
)
| Click | 4 | BorisPis/asplos22-nicmem-fastclick | conf/pktgen/pktgen-l3.click | [
"BSD-3-Clause-Clear"
] |
CREATE TABLE `enum-set` (
`enum` ENUM(
'g00','g01','g02','g03','g04','g05','g06','g07','g08','g09','g0a','g0b','g0c','g0d','g0e','g0f',
'g10','g11','g12','g13','g14','g15','g16','g17','g18','g19','g1a','g1b','g1c','g1d','g1e','g1f',
'g20','g21','g22','g23','g24','g25','g26','g27','g28','g29','g2a','g2b','g2c','g2d','g2e','g2f',
'g30','g31','g32','g33','g34','g35','g36','g37','g38','g39','g3a','g3b','g3c','g3d','g3e','g3f',
'g40','g41','g42','g43','g44','g45','g46','g47','g48','g49','g4a','g4b','g4c','g4d','g4e','g4f',
'g50','g51','g52','g53','g54','g55','g56','g57','g58','g59','g5a','g5b','g5c','g5d','g5e','g5f',
'g60','g61','g62','g63','g64','g65','g66','g67','g68','g69','g6a','g6b','g6c','g6d','g6e','g6f',
'g70','g71','g72','g73','g74','g75','g76','g77','g78','g79','g7a','g7b','g7c','g7d','g7e','g7f',
'g80','g81','g82','g83','g84','g85','g86','g87','g88','g89','g8a','g8b','g8c','g8d','g8e','g8f',
'g90','g91','g92','g93','g94','g95','g96','g97','g98','g99','g9a','g9b','g9c','g9d','g9e','g9f',
'ga0','ga1','ga2','ga3','ga4','ga5','ga6','ga7','ga8','ga9','gaa','gab','gac','gad','gae','gaf',
'gb0','gb1','gb2','gb3','gb4','gb5','gb6','gb7','gb8','gb9','gba','gbb','gbc','gbd','gbe','gbf',
'gc0','gc1','gc2','gc3','gc4','gc5','gc6','gc7','gc8','gc9','gca','gcb','gcc','gcd','gce','gcf',
'gd0','gd1','gd2','gd3','gd4','gd5','gd6','gd7','gd8','gd9','gda','gdb','gdc','gdd','gde','gdf',
'ge0','ge1','ge2','ge3','ge4','ge5','ge6','ge7','ge8','ge9','gea','geb','gec','ged','gee','gef',
'gf0','gf1','gf2','gf3','gf4','gf5','gf6','gf7','gf8','gf9','gfa','gfb','gfc','gfd','gfe','gff'
) NOT NULL UNIQUE,
`set` SET(
'x00','x01','x02','x03','x04','x05','x06','x07','x08','x09','x10','x11','x12','x13','x14','x15',
'x16','x17','x18','x19','x20','x21','x22','x23','x24','x25','x26','x27','x28','x29','x30','x31',
'x32','x33','x34','x35','x36','x37','x38','x39','x40','x41','x42','x43','x44','x45','x46','x47',
'x48','x49','x50','x51','x52','x53','x54','x55','x56','x57','x58','x59','x60','x61','x62','x63'
) NOT NULL PRIMARY KEY
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
| SQL | 4 | imtbkcat/tidb-lightning | tests/various_types/data/vt.enum-set-schema.sql | [
"Apache-2.0"
] |
#pragma once
namespace Envoy {
class TestRunner {
public:
static int RunTests(int argc, char** argv);
};
} // namespace Envoy
| C | 4 | dcillera/envoy | test/test_runner.h | [
"Apache-2.0"
] |
[Desktop Entry]
Name=Pixelorama
Comment=A free & open-source 2D sprite editor, made with the Godot Engine!
Exec=godot --main-pack Pixelorama.pck --maximized
Icon=icon.png
Terminal=false
Type=Application
X-Ubuntu-Touch=true
| desktop | 2 | sksdutra/Pixelorama | Misc/Clickable/click/pixelorama.desktop | [
"MIT"
] |
package com.baeldung.okta.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.okta.sdk.client.Client;
import com.okta.sdk.resource.user.User;
import com.okta.sdk.resource.user.UserBuilder;
import com.okta.sdk.resource.user.UserList;
@RestController
public class AdminController {
@Autowired
public Client client;
@GetMapping("/users")
public UserList getUsers() {
return client.listUsers();
}
@GetMapping("/user")
public UserList searchUserByEmail(@RequestParam String query) {
return client.listUsers(query, null, null, null, null);
}
@GetMapping("/createUser")
public User createUser() {
char[] tempPassword = {'P','a','$','$','w','0','r','d'};
User user = UserBuilder.instance()
.setEmail("norman.lewis@email.com")
.setFirstName("Norman")
.setLastName("Lewis")
.setPassword(tempPassword)
.setActive(true)
.buildAndCreate(client);
return user;
}
}
| Java | 4 | DBatOWL/tutorials | spring-security-modules/spring-security-okta/src/main/java/com/baeldung/okta/controller/AdminController.java | [
"MIT"
] |
fun helloworld("") = "Hello World!"
| helloworld(name : string) = "Hello " ^ name ^ "!";
helloworld("");
helloworld("Hacktoberfest 2018"); | Standard ML | 4 | PushpneetSingh/Hello-world | SMLNJ/helloworld.sml | [
"MIT"
] |
--TEST--
php_ini_scanned_files() function
--FILE--
<?php
$inifile = __DIR__.DIRECTORY_SEPARATOR.'loaded.ini';
$php = sprintf('"%s" -c "%s"', getenv('TEST_PHP_EXECUTABLE'), $inifile);
$scandir = __DIR__.DIRECTORY_SEPARATOR.'scandir';
// Empty env value disables any config option
putenv('PHP_INI_SCAN_DIR=');
passthru($php.' -r "var_dump(php_ini_scanned_files());"');
// Env value without path separator overrides any config option
putenv('PHP_INI_SCAN_DIR='.$scandir);
passthru($php.' -r "var_dump(php_ini_scanned_files());"');
// Scanned ini values override previously loaded values
passthru($php.' -r "var_dump(ini_get(\'date.timezone\'));"');
?>
--EXPECTREGEX--
bool\(false\)
string\(\d+\) ".*[\/\\]0\.ini
"
string\(\d+\) "Antarctica\/McMurdo"
| PHP | 3 | thiagooak/php-src | ext/standard/tests/ini_info/php_ini_scanned_files.phpt | [
"PHP-3.01"
] |
#include "CsvReader.h"
/** The default constructor of the CSV reader Class */
CsvReader::CsvReader(const string &path, char separator){
_file.open(path.c_str(), ifstream::in);
_separator = separator;
}
/* Read a plane text file with .ply format */
void CsvReader::readPLY(vector<Point3f> &list_vertex, vector<vector<int> > &list_triangles)
{
std::string line, tmp_str, n;
int num_vertex = 0, num_triangles = 0;
int count = 0;
bool end_header = false;
bool end_vertex = false;
// Read the whole *.ply file
while (getline(_file, line)) {
stringstream liness(line);
// read header
if(!end_header)
{
getline(liness, tmp_str, _separator);
if( tmp_str == "element" )
{
getline(liness, tmp_str, _separator);
getline(liness, n);
if(tmp_str == "vertex") num_vertex = StringToInt(n);
if(tmp_str == "face") num_triangles = StringToInt(n);
}
if(tmp_str == "end_header") end_header = true;
}
// read file content
else if(end_header)
{
// read vertex and add into 'list_vertex'
if(!end_vertex && count < num_vertex)
{
string x, y, z;
getline(liness, x, _separator);
getline(liness, y, _separator);
getline(liness, z);
cv::Point3f tmp_p;
tmp_p.x = (float)StringToInt(x);
tmp_p.y = (float)StringToInt(y);
tmp_p.z = (float)StringToInt(z);
list_vertex.push_back(tmp_p);
count++;
if(count == num_vertex)
{
count = 0;
end_vertex = !end_vertex;
}
}
// read faces and add into 'list_triangles'
else if(end_vertex && count < num_triangles)
{
string num_pts_per_face, id0, id1, id2;
getline(liness, num_pts_per_face, _separator);
getline(liness, id0, _separator);
getline(liness, id1, _separator);
getline(liness, id2);
std::vector<int> tmp_triangle(3);
tmp_triangle[0] = StringToInt(id0);
tmp_triangle[1] = StringToInt(id1);
tmp_triangle[2] = StringToInt(id2);
list_triangles.push_back(tmp_triangle);
count++;
}
}
}
}
| C++ | 4 | thisisgopalmandal/opencv | samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/CsvReader.cpp | [
"BSD-3-Clause"
] |
# Copyright 2021 The Google Research 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
#
# 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.
# This script provides a few simple end-to-end regression tests for the
# wikinews_extractor package.
#
# NOTE: This script should be run from the parent directory of
# dense_representations_for_entity_retrieval/.
set -eux
D="dense_representations_for_entity_retrieval"
REQUIREMENTS="${D}/mel/wikinews_extractor/requirements.txt"
TEST_DATA="${D}/mel/wikinews_extractor/testdata"
MODULE="${D}.mel.wikinews_extractor.parse_wikinews_i18n"
# Set up virtual environment.
virtualenv -p python3 ./testenv
source ./testenv/bin/activate
pip install -r ${REQUIREMENTS}
# Prepare bzipped version of test input archive.
bzip2 -f -k ${TEST_DATA}/test.jsonl
# Create temporary output directory (cleared and reused below).
OUTPUT_DIR=$(mktemp -d)
echo "============================================="
echo "raw mode ------------------------------------"
python -m ${MODULE} \
--language=tr \
--wikinews_archive=${TEST_DATA}/test.jsonl.bz2 \
--mode=raw \
--output_dir_wiki=${OUTPUT_DIR}/wiki \
--output_dir_text=${OUTPUT_DIR}/text \
--doc_index_path=${OUTPUT_DIR}/docs.tsv \
--mention_index_path=${OUTPUT_DIR}/mentions.tsv \
--logtostderr
diff -q "${OUTPUT_DIR}/docs.tsv" "${TEST_DATA}/expected_docs.tsv"
diff -q "${OUTPUT_DIR}/mentions.tsv" "${TEST_DATA}/expected_mentions.tsv"
echo "============================================="
echo "dataset mode (should succeed)----------------"
rm -rf "${OUTPUT_DIR}"
python -m ${MODULE} \
--language=tr \
--wikinews_archive="${TEST_DATA}/test.jsonl.bz2" \
--mode=dataset \
--output_dir_wiki="${OUTPUT_DIR}/wiki" \
--output_dir_text="${OUTPUT_DIR}/text" \
--doc_index_path="${TEST_DATA}/expected_docs.tsv" \
--mention_index_path="${TEST_DATA}/dataset_mentions.tsv" \
--logtostderr
diff -q "${OUTPUT_DIR}/text/tr-8000000" "${TEST_DATA}/expected_clean.txt"
echo "============================================="
echo "dataset mode (should detect mention issue)---"
rm -rf "${OUTPUT_DIR}"
python -m ${MODULE} \
--language=tr \
--wikinews_archive="${TEST_DATA}/test.jsonl.bz2" \
--mode=dataset \
--output_dir_wiki="${OUTPUT_DIR}/wiki" \
--output_dir_text="${OUTPUT_DIR}/text" \
--doc_index_path="${TEST_DATA}/expected_docs.tsv" \
--mention_index_path="${TEST_DATA}/dataset_mentions_corrupted.tsv" \
--logtostderr
echo "============================================="
echo "dataset mode (should detect bad doc)---------"
rm -rf "${OUTPUT_DIR}"
python -m ${MODULE} \
--language=tr \
--wikinews_archive="${TEST_DATA}/test.jsonl.bz2" \
--mode=dataset \
--output_dir_wiki="${OUTPUT_DIR}/wiki" \
--output_dir_text="${OUTPUT_DIR}/text" \
--doc_index_path="${TEST_DATA}/docs_corrupted.tsv" \
--mention_index_path="${TEST_DATA}/dataset_mentions.tsv" \
--logtostderr
rm -rf "${OUTPUT_DIR}"
echo "============================================="
echo "Tests done."
| Shell | 4 | deepneuralmachine/google-research | dense_representations_for_entity_retrieval/mel/wikinews_extractor/run_test_oss.sh | [
"Apache-2.0"
] |
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
CRATES="
aho-corasick-0.6.4
bitflags-0.9.1
bitflags-1.0.1
cfg-if-0.1.2
diff-0.1.11
dtoa-0.4.2
env_logger-0.4.3
extprim-1.5.1
fuchsia-zircon-0.3.3
fuchsia-zircon-sys-0.3.3
getopts-0.2.17
itoa-0.3.4
kernel32-sys-0.2.2
lazy_static-1.0.0
libc-0.2.36
log-0.3.9
log-0.4.1
memchr-2.0.1
num-traits-0.1.42
quote-0.3.15
rand-0.4.2
regex-0.2.5
regex-syntax-0.4.2
rustc_version-0.2.1
rustfmt-${PV}
semver-0.6.0
semver-parser-0.7.0
serde-1.0.27
serde_derive-1.0.27
serde_derive_internals-0.19.0
serde_json-1.0.9
strings-0.1.1
syn-0.11.11
synom-0.11.3
syntex_errors-0.59.1
syntex_pos-0.59.1
syntex_syntax-0.59.1
term-0.4.6
thread_local-0.3.5
toml-0.4.5
unicode-segmentation-1.2.0
unicode-xid-0.0.4
unicode-xid-0.1.0
unreachable-1.0.0
utf8-ranges-1.0.0
void-1.0.2
winapi-0.2.7
winapi-0.3.4
winapi-build-0.1.1
winapi-i686-pc-windows-gnu-0.4.0
winapi-x86_64-pc-windows-gnu-0.4.0
"
inherit cargo
DESCRIPTION="Tool to find and fix Rust formatting issues"
HOMEPAGE="https://github.com/rust-lang-nursery/rustfmt"
SRC_URI="$(cargo_crate_uris ${CRATES})"
LICENSE="|| ( MIT Apache-2.0 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/rust"
RDEPEND=""
| Gentoo Ebuild | 4 | gentoo/gentoo-rust | dev-util/rustfmt/rustfmt-0.10.0.ebuild | [
"BSD-3-Clause"
] |
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.4;
contract Logs {
event Event(uint256 indexed first, uint256 indexed second);
constructor() {
emit Event(1, 2);
}
function logNTimes(uint8 n) public {
for (uint8 i = 0; i < n; i++) {
emit Event(i, i);
}
}
}
| Solidity | 4 | Shiba-Chain/ganache | src/chains/ethereum/ethereum/tests/api/eth/contracts/Logs.sol | [
"MIT"
] |
--TEST--
__set_state first parameter must be an array
--FILE--
<?php
class Foo {
public static function __set_state(int $properties) {}
}
?>
--EXPECTF--
Fatal error: Foo::__set_state(): Parameter #1 ($properties) must be of type array when declared in %s on line %d
| PHP | 2 | NathanFreeman/php-src | Zend/tests/magic_methods_020.phpt | [
"PHP-3.01"
] |
/*
Copyright © 2011, 2012 MLstate
This file is part of Opa.
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.
*/
package stdlib.apis.mongo
/**
* MongoDB binding for OPA.
*
* @destination public
* @stabilization work in progress
**/
/**
* {1 About this module}
*
* Module [MongoReplicaSet] allows the management of replica sets.
*
* {1 Where should I start?}
*
* {1 What if I need more?}
*
**/
/**
* Some additional OPA types mapped to [Bson.document] values
* to help with interpreting MongoDB replies.
**/
type Mongo.replSetGetStatus =
{
set : string;
date : Date.date;
myState : Bson.int32;
syncingTo : Bson.register(string);
members : list({_id : Bson.register(int);
name : string;
self : Bson.register(bool);
errmsg : Bson.register(string);
health : Bson.register(Bson.int32);
state : Bson.register(Bson.int32);
stateStr : Bson.register(string);
uptime : Bson.register(Bson.int32);
optime : Bson.register(Bson.timestamp);
optimeDate : Bson.register(Date.date);
lastHeartbeat : Bson.register(Date.date);
pingMs : Bson.register(Bson.int32);
});
ok : bool;
errmsg : Bson.register(string);
}
type Mongo.member = {
_id : Bson.int32;
host : string;
arbiterOnly : Bson.register(bool);
buildIndexes : Bson.register(bool);
hidden : Bson.register(bool);
priority: Bson.register(float);
tags: Bson.register(Bson.document); // Aaarghh {"any":...; "tag":...;}
slaveDelay : Bson.register(Bson.int32);
votes : Bson.register(Bson.int32);
}
type Mongo.replSetInitiate =
{
_id : string;
members: list(Mongo.member);
settings: Bson.register({
getLastErrorDefaults : Bson.register(Mongo.getLastErrorOptions);
getlasterrormodes : Bson.register(Bson.document); // relates to tags
});
}
MongoReplicaSet = {{
@private H = Bson.Abbrevs
@private
Log = {{
@private
@expand
gen(f, m, fn:string, msg) =
if m.conf.verbose then f("MongoReplicaSet({m.name}).{fn}", msg)
else void
@expand
info(m, fn, msg) = gen(@toplevel.Log.info, m, fn, msg)
@expand
debug(m, fn, msg) = gen(@toplevel.Log.debug, m, fn, msg)
@expand
error(m, fn, msg) = gen(@toplevel.Log.error, m, fn, msg)
}}
/**
* Freeze a replica set (can't become primary for the given number of seconds).
* Note: unfreeze with 0.
**/
replSetFreeze(m:Mongo.mongodb, seconds:int): Mongo.result =
MongoCommands.simple_int_command(m, "admin", "replSetFreeze", seconds)
/**
* Step down from primary status. Same time value as for [replSetFreeze].
**/
replSetStepDown(m:Mongo.mongodb, seconds:int): Mongo.result =
MongoCommands.simple_int_command(m, "admin", "replSetStepDown", seconds)
/**
* Get replica get status.
**/
replSetGetStatus(m:Mongo.mongodb): Mongo.result =
MongoCommands.simple_int_command(m, "admin", "replSetGetStatus", 1)
replSetGetStatusOpa(m:Mongo.mongodb): outcome(Mongo.replSetGetStatus,Mongo.failure) =
MongoCommands.adminToOpa(m,"replSetGetStatus")
/**
* Initalise a replica set.
**/
// TODO: test this function
simpleConfig(id:int, host:string): Mongo.member =
{ _id=id; ~host;
arbiterOnly={absent}; buildIndexes={absent}; hidden={absent}; priority={absent};
tags={absent}; slaveDelay={absent}; votes={absent}
}
/**
* Initialize a replica set with the given list of members (host, port) pairs.
* Example: [replSetInitiate(m, id, members)]
**/
replSetInitiate(m:Mongo.mongodb, id:string, members:list((int,string))): Mongo.result =
config = Bson.opa2doc({ _id=id; members=List.map(((id,host) -> simpleConfig(id,host)),members); settings={absent} })
MongoCommands.run_command(m, "admin", [H.doc("replSetInitiate",config)])
/*
* This one will be tricky to implement, it closes the connection.
* TODO: implement a command_with_no_reply_and_reconnect() function.
*/
//replSetReconfig(m:Mongo.db, id:string, members:list((int,string))): Mongo.result =
// config = Bson.opa2doc({ _id=id; members=List.map(((id,host) -> simpleConfig(id,host)),members); settings={absent} })
// MongoCommands.run_command(m, "admin", [H.doc("replSetReconfig",config)])
/**
* Add a seed to a [Mongo.db] value. Doesn't perform any communications.
* Example: [add_seed(m, host, port)]
**/
add_seed(m:Mongo.db, host:string, port:int): Mongo.db = {m with seeds=[(host,port)|m.seeds]}
/**
* Remove a seed from a [Mongo.db] value. Doesn't perform any communications.
* Example: [remove_seed(m, host, port)]
**/
remove_seed(m:Mongo.db, host:string, port:int): Mongo.db = {m with seeds=List.filter((s -> s != (host,port)),m.seeds)}
/**
* Initialize a [Mongo.db] connection using the given list of seeds.
**/
init(name:string, conf, seeds:list(Mongo.mongo_host)): Mongo.db =
m = MongoDriver.init(name, conf)
{m with ~seeds}
/**
* Initialize a [Mongo.db] connection using a single seed.
**/
init_single(name, conf, seed): Mongo.db =
init(name, conf, [seed])
/**
* Generate a [Mongo.mongo_host] value from a string: "host:port".
* If the port is missing it will be set to [Mongo.default_port].
**/
mongo_host_of_string(s:string): Mongo.mongo_host =
match String.explode(":",s) with
| [host|[port|[]]] -> (host,Int.of_string(port))
| _ -> (s,MongoDriver.default_port)
@private adminCommandLL(m:Mongo.db, cmd:string): Mongo.result = MongoCommands.simple_int_command_ll(m,"admin",cmd,1)
@private isMasterLL(m:Mongo.db): Mongo.result = adminCommandLL(m,"ismaster")
/**
* Try to get the list of hosts from a given list of seeds by connecting
* in turn to each seed until we find a live one.
**/
check_seed(m:Mongo.db): (Mongo.db,list(Mongo.mongo_host)) =
match isMasterLL(m) with
| {success=doc} ->
(match Bson.find(doc,"hosts") with
| {some=hosts_doc} ->
(match (Bson.doc2opa(hosts_doc):option({hosts:list(string)})) with
| {some={~hosts}} ->
hosts = (List.filter(((_,p) -> p != 0),List.map(mongo_host_of_string,hosts)))
do Log.info(m, "check_seed","hosts={hosts}")
(m,hosts)
| {none} -> (m,[]))
| {none} -> (m,[]))
| {failure=_} -> (m,[])
hostname = System.gethostname()
is_localhost(h:string) : bool = match h with | "localhost" -> true | "127.0.0.1" -> true | _ -> h == hostname
same_host(h1,h2) : bool = (is_localhost(h1) && is_localhost(h2)) || System.gethostbyname(h1) == System.gethostbyname(h2)
same_mongo_host((h1,p1):Mongo.mongo_host)((h2,p2):Mongo.mongo_host) = p1 == p2 && same_host(h1,h2)
mrg(l1:list(Mongo.mongo_host), l2:list(Mongo.mongo_host)) : list(Mongo.mongo_host) =
rec aux(l1:list(Mongo.mongo_host), l2:list(Mongo.mongo_host)) =
match (l2:list(Mongo.mongo_host)) with
| [] -> (l1:list(Mongo.mongo_host))
| [h|t] ->
match List.index_p(same_mongo_host(h), l1) with
| {some=_} -> (aux(l1, t):list(Mongo.mongo_host))
| {none} -> (aux([h|l1], t):list(Mongo.mongo_host))
end
aux(l1, l2)
@private do_authenticate(m:Mongo.db): outcome(Mongo.db, Mongo.failure) =
MongoDriver.do_authenticate_ll(m)
/**
* Connect (and reconnect) to a replica set.
*
* Follows the procedure indicated by the MongoDB website. Try each seed
* in turn until a list of hosts is found. Then try each host in turn until
* the primary server is found. Non-primary hosts usually give you the name
* of the primary host so we can jump straight to it.
*
* Implementation note. We recurse between this routine and [MongoDriver.reconnect].
* In theory, we could have unbounded recursion so the recursion depth is limited.
* In practice, this should never happen.
**/
connect(m:Mongo.db): outcome(Mongo.db,Mongo.failure) =
do Log.debug(m, "connect", "depth={m.depth} allowslaveok={m.conf.slaveok}")
do if m.seeds == [] then Log.error(m, "connect", "Tried to connect with no seeds")
rec aux(m, seeds) =
match seeds with
| [seed|rest] ->
(match MongoDriver.connect(m, seed.f1, seed.f2) with
| {success=m} ->
(m,hosts) = check_seed(m)
if hosts == []
then aux(m,rest)
else {success=({m with seeds=mrg(hosts,seeds)},hosts)}
| {failure=_} ->
aux(m,rest))
| [] -> {failure={Error="MongoReplicaSet.connect: No connecting seeds"}}
match aux(m, m.seeds) with
| {success=(m,hosts)} ->
do Log.info(m, "connect", "got hosts {hosts}")
rec aux2(m, hosts) =
(match hosts with
| [host|rest] ->
(match MongoDriver.connect(m, host.f1, host.f2) with
| {success=m} ->
do Log.info(m, "connect","connected to host {host}\nm={m}")
(match isMasterLL(m) with
| {success=doc} ->
do Log.debug(m, "connect","isMasterLL: doc={doc}")
(match (Bson.find_bool(doc,"ismaster"),Bson.find_string(doc,"setName")) with
| ({some=ismaster},setName) ->
do Log.info(m, "connect","ismaster={ismaster} setName={setName}")
goodset = setName == m.conf.replica || m.conf.replica == none
if ismaster && goodset
then
do_authenticate(m)
else
(match Bson.find_string(doc,"primary") with
| {some=primary} ->
primary_host = mongo_host_of_string(primary)
(match List.extract_p((host -> host == primary_host),rest) with
| ({some=p},rest) ->
do Log.info(m, "connect", "jump to primary")
aux2(m,[p|rest])
| ({none},rest) -> aux2(m,rest))
| {none} ->
do Log.info(m, "connect","no primary")
if m.conf.slaveok
then
do Log.info(m, "connect","using secondary")
do_authenticate(m)
else aux2(m,rest)
)
| _ -> aux2(m,rest))
| {failure=_} -> aux2(m,rest))
| {failure=_} -> aux2(m,rest))
| [] -> {failure={Error="MongoReplicaSet.connect: No master hosts"}})
aux2(m, hosts)
| {~failure} -> {~failure}
}}
// End of file replset.opa
| Opa | 5 | Machiaweliczny/oppailang | lib/stdlib/apis/mongo/replset.opa | [
"MIT"
] |
// @esModuleInterop: true
// @Filename: foo.d.ts
declare function foo(): void;
declare namespace foo {}
export = foo;
// @Filename: index.ts
import * as foo from "./foo";
foo.default;
| TypeScript | 4 | nilamjadhav/TypeScript | tests/cases/compiler/esModuleInteropImportNamespace.ts | [
"Apache-2.0"
] |
#*****************************************************************************
# *
# Make file for VMS *
# Author : J.Jansen (joukj@hrem.stm.tudelft.nl) *
# Date : 10 November 1999 *
# *
#*****************************************************************************
.first
define wx [--.include.wx]
.ifdef __WXMOTIF__
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
/assume=(nostdnew,noglobal_array_new)
.else
.ifdef __WXGTK__
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/assume=(nostdnew,noglobal_array_new)
.else
CXX_DEFINE =
.endif
.endif
.suffixes : .cpp
.cpp.obj :
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
all :
.ifdef __WXMOTIF__
$(MMS)$(MMSQUALIFIERS) drawing.exe
.else
.ifdef __WXGTK__
$(MMS)$(MMSQUALIFIERS) drawing_gtk.exe
.endif
.endif
.ifdef __WXMOTIF__
drawing.exe : drawing.obj
cxxlink drawing,[--.lib]vms/opt
.else
.ifdef __WXGTK__
drawing_gtk.exe : drawing.obj
cxxlink/exec=drawing_gtk.exe drawing,[--.lib]vms_gtk/opt
.endif
.endif
drawing.obj : drawing.cpp
| Module Management System | 3 | madanagopaltcomcast/pxCore | examples/pxScene2d/external/WinSparkle/3rdparty/wxWidgets/samples/drawing/descrip.mms | [
"Apache-2.0"
] |
# DO NOT EDIT THIS FILE. This file will be overwritten when re-running go-raml.
using import "EnumAdminClearanceLevel.capnp".EnumAdminClearanceLevel;
@0xafe0adbd57c12353;
struct Admin {
clearanceLevel @0 :EnumAdminClearanceLevel;
}
| Cap'n Proto | 3 | mrpotes/go-raml | codegen/capnp/fixtures/struct/vanilla/Admin.capnp | [
"BSD-2-Clause"
] |
<body>
<h1>HTML File b</h1>
</body>
| HTML | 1 | zowesiouff/parcel | packages/core/integration-tests/test/integration/html-pkg-source-array/b.html | [
"MIT"
] |
<%= form_for @changeset, @action, [multipart: true, class: "ui form"], fn f -> %>
<div class="field required <%= AdminHelpers.error_class(f, :name) %>">
<%= label(f, :name, "Name") %>
<%= text_input(f, :name, placeholder: "The Kubernetes") %>
<%= AdminHelpers.error_message(f, :name) %>
</div>
<div class="field required <%= AdminHelpers.error_class(f, :slug) %>">
<%= label(f, :slug) %>
<%= text_input(f, :slug, placeholder: "kubernetes") %>
<%= AdminHelpers.error_message(f, :slug) %>
</div>
<div class="field <%= AdminHelpers.error_class(f, :is_official) %>">
<%= label(f, :is_official) %>
<%= checkbox(f, :is_official) %>
<%= AdminHelpers.error_message(f, :is_official) %>
</div>
<div class="two fields">
<div class="fourteen wide field">
<label for="cover">
Cover
<%= AdminHelpers.help_icon("Ideal size is 3000px by 3000px") %>
</label>
<%= AdminHelpers.error_message(f, :cover) %>
<%= file_input(f, :cover) %>
</div>
<div class="two wide field">
<img src="<%= MetacastView.cover_url(f.data, :small) %>" height=66>
</div>
</div>
<div class="field <%= AdminHelpers.error_class(f, :description) %>">
<%= label(f, :description) %>
<%= textarea(f, :description, placeholder: "Markdown enabled.") %>
<%= AdminHelpers.error_message(f, :description) %>
</div>
<div class="field <%= AdminHelpers.error_class(f, :keywords) %>">
<%= label(f, :keywords) %>
<%= text_input(f, :keywords, placeholder: "changelog, open source, software, development") %>
<%= AdminHelpers.error_message(f, :keywords) %>
</div>
<div class="field <%= AdminHelpers.error_class(f, :filter_query) %>">
<%= label(f, :filter_query) %>
<%= textarea(f, :filter_query) %>
<%= AdminHelpers.error_message(f, :filter_query) %>
</div>
<div class="ui hidden divider"></div>
<div class="ui equal width stackable grid">
<%= if !AdminHelpers.is_persisted(f.data) do %>
<div class="column"><%= AdminHelpers.submit_button(:primary, "Create") %></div>
<div class="column"><%= AdminHelpers.submit_button(:secondary, "Create and Close", AdminHelpers.next_param(@conn, Routes.admin_metacast_path(@conn, :index))) %></div>
<% else %>
<div class="column"><%= AdminHelpers.submit_button(:primary, "Save", "edit") %></div>
<div class="column"><%= AdminHelpers.submit_button(:secondary, "Save and Close", AdminHelpers.next_param(@conn)) %></div>
<% end %>
<div class="column"></div>
</div>
<% end %> | HTML+EEX | 4 | gustavoarmoa/changelog.com | lib/changelog_web/templates/admin/metacast/_form.html.eex | [
"MIT"
] |
// input: []
// output: false
package {
public class EqualsOperator {
public static function main():Boolean{
return 1 == 2;
}
}
}
| ActionScript | 2 | hackarada/youtube-dl | test/swftests/EqualsOperator.as | [
"Unlicense"
] |
=== MQL4/Libraries/OTMql4/ZmqSendReceive.mq4 ===
Parent: [[Home]]
| Creole | 2 | lionelyoung/OTMql4Zmq | wiki/ZmqSendReceive.creole | [
"MIT"
] |
$(function () {
$('time[data-content]').each(function () {
let tz_display = $(this).data('content');
$(this).text(luxon.DateTime.fromSeconds(tz_display).toLocaleString(luxon.DateTime.TIME_SIMPLE));
});
});
| HTML+PHP | 3 | ikafridi/PlayCast | templates/admin/relays/index.js.phtml | [
"Apache-2.0"
] |
newSeq[int]()
system.newSeq[int]()#[!]#
offsetOf[int]()
discard """
$nimsuggest --tester $file
>highlight $1
highlight;;skType;;1;;7;;3
highlight;;skProc;;1;;0;;6
highlight;;skProc;;1;;0;;6
highlight;;skType;;1;;7;;3
highlight;;skProc;;1;;0;;6
highlight;;skType;;2;;14;;3
highlight;;skProc;;2;;7;;6
highlight;;skProc;;2;;7;;6
highlight;;skType;;2;;14;;3
highlight;;skProc;;2;;7;;6
highlight;;skTemplate;;3;;0;;8
highlight;;skType;;3;;9;;3
"""
| Nimrod | 1 | JohnAD/Nim | nimsuggest/tests/tgeneric_highlight.nim | [
"MIT"
] |
//usr/bin/env myatscc "$0"; exit
(* ****** ****** *)
//
(*
##myatsccdef=\
patsopt --constraint-ignore --dynamic $1 | \
tcc - -run -DATS_MEMALLOC_LIBC -I${PATSHOME} -I${PATSHOME}/ccomp/runtime -L${PATSHOME}/ccomp/atslib/lib -latslib
*)
//
(* ****** ****** *)
#include "./myread.dats"
(* ****** ****** *)
//
#define
NDX100_csv "./DATA/NDX100.csv"
//
(* ****** ****** *)
val
NDX100_table =
mytable where
{
//
val-
~Some_vt(inp) =
fileref_open_opt
(NDX100_csv, file_mode_r)
//
val
mytable =
dframe_read_fileref(inp)
//
val () = fileref_close(inp)
//
} (* end of [val] *)
//
val nday =
length(NDX100_table)
//
val () =
println!("|NDX100_table| = ", nday)
val () =
println!("NDX100_table[0] = ", NDX100_table[0])
//
(* ****** ****** *)
val
double_t = TYPE{double}
val
string_t = TYPE{string}
(* ****** ****** *)
//
val
NDX100_Date =
(
NDX100_table
).map(string_t)
(lam(kxs) =>
let
(*
val x =
kxs["Date"]
val () =
println! ("x = ", x)
*)
in
GVstring_uncons(kxs["Date"])
end
)
//
val () =
println!
("|NDX100_Date| = ", length(NDX100_Date))
//
(* ****** ****** *)
val
NDX100_AdjClose =
(
NDX100_table
).map(double_t)
(lam(kxs) =>
let
(*
val x =
kxs["Adj Close"]
val () =
println! ("x = ", x)
*)
in
g0string2float_double
(GVstring_uncons(kxs["Adj Close"]))
end
)
//
val () =
println!
("|NDX100_AdjClose| = ", length(NDX100_AdjClose))
//
(* ****** ****** *)
val
NDX100_PChange =
array0_tabulate<double>
(
g1ofg0
(
size(NDX100_AdjClose)
)
,
lam(i) =>
(
if i = 0
then
(0.0)
else
(NDX100_AdjClose[i]/NDX100_AdjClose[i-1])-1
)
)
//
val () =
println!
("|NDX100_PChange| = ", length(NDX100_PChange))
val () =
println!("NDX100_PChange[0] = ", NDX100_PChange[0])
val () =
println!("NDX100_PChange[1] = ", NDX100_PChange[1])
val () =
println!("NDX100_PChange[2] = ", NDX100_PChange[2])
val () =
println!("NDX100_PChange[3] = ", NDX100_PChange[3])
//
(* ****** ****** *)
//
extern
fun
f_NDX100_MPChange
(k0: intGte(1)): array0(double)
//
(* ****** ****** *)
implement
f_NDX100_MPChange(k0) = let
//
val n0 = length(NDX100_PChange)
//
fun
auxmain
( i: int
, k: int
, s1: double
) : stream_vt(double) = $ldelay
(
if
(i >= n0)
then stream_vt_nil()
else let
val xi =
NDX100_PChange[i]
val s1 = s1 + xi
(*
val () = println! ("s1+ = ", s1)
*)
in
if
(k < k0)
then let
val k = k + 1
val avg = s1/k
in
stream_vt_cons(avg, auxmain(i+1, k, s1))
end // end of [then]
else let
val xj =
NDX100_PChange[i-k]
val s1 = s1 - xj
(*
val () = println! ("s1- = ", s1)
*)
val avg = s1/k
in
stream_vt_cons(avg, auxmain(i+1, k, s1))
end // end of [else]
end
)
in
array0_make_stream_vt<double>(auxmain(0, 0, 0.0))
end // end of [f_NDX100_MPChange]
(* ****** ****** *)
//
#define K0 21
//
val
NDX100_MPChange = f_NDX100_MPChange(K0)
val () =
println!
("|NDX100_MPChange| = ", length(NDX100_MPChange))
// (*
local
val n0 = length(NDX100_MPChange)
in(*in-of-local*)
val () =
println!
("NDX100_MPChange[0] = ", NDX100_MPChange[0])
val () =
println!
("NDX100_MPChange[1] = ", NDX100_MPChange[1])
val () =
println!
("NDX100_MPChange[2] = ", NDX100_MPChange[2])
val () =
println!
("NDX100_MPChange[3] = ", NDX100_MPChange[3])
val () =
println!
("NDX100_MPChange[-1] = ", NDX100_MPChange[n0-1])
val () =
println!
("NDX100_MPChange[-2] = ", NDX100_MPChange[n0-2])
val () =
println!
("NDX100_MPChange[-3] = ", NDX100_MPChange[n0-3])
val () =
println!
("NDX100_MPChange[-4] = ", NDX100_MPChange[n0-4])
end // end of [local]
// *)
//
(* ****** ****** *)
//
extern
fun
f_NDX100_table_dateseg
( start: string
, finish: string): array0(gvhashtbl)
//
implement
f_NDX100_table_dateseg
(start, finish) = let
//
macdef uns = GVstring_uncons
//
val start =
array0_bsearch<gvhashtbl>
( NDX100_table
, lam(x) => strcmp(start, uns(x["Date"])))
val finish =
array0_bsearch<gvhashtbl>
( NDX100_table
, lam(x) => strcmp(finish, uns(x["Date"])))
//
val start = min(start, finish)
val finish = max(start, finish)
//
in
array0_make_subarray(NDX100_table, start, finish-start)
end // end of [f_NDX100_table_dateseg]
//
(* ****** ****** *)
val
NDX100_20100101 =
array0_bsearch<string>
( NDX100_Date
, lam(x) => compare(date, x)
) where
{
val date = "2010-01-01"
}
val
NDX100_20180101 =
array0_bsearch<string>
( NDX100_Date
, lam(x) => compare(date, x)
) where
{
val date = "2018-01-01"
}
//
(*
val () =
println!
("NDX100_20100101 = ", NDX100_20100101)
val () =
println!
("NDX100_20180101 = ", NDX100_20180101)
*)
//
(* ****** ****** *)
//
val
NDX100_table_dateseg =
f_NDX100_table_dateseg("2010-01-01", "2018-01-01")
//
val () =
println!
("|NDX100_table_dateseg| = ", length(NDX100_table_dateseg))
//
(* ****** ****** *)
implement main0 ((*void*)) = ()
(* ****** ****** *)
(* end of [NDX100.dats] *)
| ATS | 4 | ats-lang/ATS-CodeBook | RECIPE/CSV-parsing/NDX100.dats | [
"MIT"
] |
@prefix : <http://www.w3.org/2013/TurtleTests/> .
[ :p :o1,:2 ] .
:s :p :o .
| Turtle | 2 | joshrose/audacity | lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-bnode-09.ttl | [
"CC-BY-3.0"
] |
# Singly-linked list
#
# A list consists of a head element pointer and a tail element pointer.
# An element consists of a value and a next element pointer.
#
# TODO: make it doubly-linked so that lstpop() is O(1)?
# TODO: insert element at given index
# TODO: retrieve element at given index
# TODO: delete element at given index
include "malloc.sl";
# return a pointer to the empty list
var lstnew = func() {
return cons(0,0);
};
var lsthead = car;
var lstsethead = setcar;
var lsttail = cdr;
var lstsettail = setcdr;
var elemnew = func(v) {
return cons(v,0);
};
var elemval = car;
var elemsetval = setcar;
var elemnext = cdr;
var elemsetnext = setcdr;
var elemfree = free;
var lstfree = func(lst) {
var elem = lsthead(lst);
var next;
free(lst);
while (elem) {
next = elemnext(elem);
elemfree(elem);
elem = next;
};
};
# append the given value to the end of the list
# O(1)
var lstpush = func(lst, v) {
var new_elem = elemnew(v);
var tail_elem = lsttail(lst);
if (tail_elem) elemsetnext(tail_elem, new_elem)
else lstsethead(lst,new_elem);
lstsettail(lst, new_elem);
};
# remove the last value from the list and return it
# return 0 if the list is empty
# O(n) (!)
var lstpop = func(lst) {
var head = lsthead(lst);
var tail = lsttail(lst);
if (!tail) return 0;
var val = elemval(tail);
var elem;
if (head == tail) {
# list becomes empty
lstsethead(lst, 0);
lstsettail(lst, 0);
} else {
# find the second-last element
elem = head;
while (elemnext(elem) != tail)
elem = elemnext(elem);
elemsetnext(elem, 0);
lstsettail(lst, elem);
};
elemfree(tail);
return val;
};
# prepend the given value to the start of the list
# O(1)
var lstunshift = func(lst, v) {
var new_elem = elemnew(v);
var head_elem = lsthead(lst);
elemsetnext(new_elem, head_elem);
lstsethead(lst, new_elem);
};
# remove the first value from the list and return it
# return 0 if the list is empty
var lstshift = func(lst) {
var head = lsthead(lst);
if (!head) return 0;
var val = elemval(head);
lstsethead(lst, elemnext(head));
if (!lsthead(lst)) lstsettail(lst, 0); # tail=0 if head=0
elemfree(head);
return val;
};
# O(n)
var lstlen = func(lst) {
var elem = lsthead(lst);
var len = 0;
while (elem) {
elem = elemnext(elem);
len++;
};
return len;
};
# call cb() on each value in the list
var lstwalk = func(lst, cb) {
var elem = lsthead(lst);
while (elem) {
cb(elemval(elem));
elem = elemnext(elem);
};
};
# call cb(findval, val) on each value in the list
# if cb(findval, val) returns nonzero, break the loop and return val
# return 0 if the value is not found
var lstfind = func(lst, findval, cb) {
var elem = lsthead(lst);
var val;
while (elem) {
val = elemval(elem);
if (cb(findval, val)) return val;
elem = elemnext(elem);
};
return 0;
};
| Slash | 5 | jes/scamp-cpu | compiler/test/list.sl | [
"Unlicense"
] |
#N canvas 72 23 799 373 12;
#X symbolatom 228 68 10 0 0 0 - - -, f 10;
#X obj 37 184 osc~;
#X obj 526 88 hsl 128 15 0 127 0 0 empty empty hslider 2 -8 0 10 -204786
-258113 -1 0 0;
#X obj 37 222 dac~;
#X floatatom 523 116 5 0 0 0 - - -, f 5;
#X obj 375 86 vsl 15 128 0 127 0 0 empty empty vslider 17 2 0 10 -261234
-4034 -1 0 0;
#X floatatom 375 230 5 0 0 0 - - -, f 5;
#X floatatom 375 57 5 0 0 0 - - -, f 5;
#X floatatom 523 48 5 0 0 0 - - -, f 5;
#X text 360 14 This is a very long comment which should wrap right
here. (Did it work?);
#X msg 31 255 \; this is a tall \; message box \; with \; many \; items
\; inside;
#X floatatom 37 147 5 0 0 0 - - -, f 5;
#X obj 25 69 route 1 2 3 4;
#X obj 25 104 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1
-1;
#X obj 47 104 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1
-1;
#X obj 69 104 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1
-1;
#X obj 91 104 bng 15 250 50 0 empty empty empty 17 7 0 10 -262144 -1
-1;
#X floatatom 191 68 5 0 0 0 - - -, f 5;
#X msg 300 68 hello;
#X obj 136 146 cnv 15 100 60 empty empty cnv 0 5 0 14 -233017 -66577
0;
#X obj 161 159 cnv 15 50 30 empty empty cnv 12 15 0 14 -260097 -66577
0;
#X obj 283 271 bng 30 250 50 0 empty empty bang 32 15 0 10 -203904
-260097 -1;
#X floatatom 283 315 5 0 0 0 - - -, f 5;
#X floatatom 283 195 5 0 0 0 - - -, f 5;
#X floatatom 283 119 1 0 0 0 - - -, f 1;
#X obj 283 151 tgl 30 0 empty empty toggle 32 15 0 10 -232576 -258113
-1 0 1;
#X obj 25 48 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 0 1
;
#X obj 581 287 nbx 5 18 -1e+37 1e+37 0 0 empty empty number 8 -8 0
10 -204800 -260097 -99865 0 256;
#X floatatom 581 249 5 0 0 0 - - -, f 5;
#X floatatom 581 319 5 0 0 0 - - -, f 5;
#X obj 138 106 nbx 5 14 -1e+37 1e+37 0 0 empty empty empty 0 -8 0 10
-262144 -1 -1 0 256;
#X obj 523 186 hradio 15 1 0 8 empty empty hradio 8 -8 0 10 -262130
-13330 -1 5;
#X floatatom 523 150 5 0 0 0 - - -, f 5;
#X floatatom 523 219 5 0 0 0 - - -, f 5;
#X floatatom 451 57 5 0 0 0 - - -, f 5;
#X floatatom 451 231 5 0 0 0 - - -, f 5;
#X obj 451 92 vradio 15 1 0 8 empty empty vradio 8 -8 0 10 -261682
-128992 -1 0;
#X obj 686 115 vu 20 160 empty vu_meter -1 -10 0 12 -191407 -13381
1 0;
#X floatatom 685 46 5 0 0 0 - - -, f 5;
#X floatatom 700 72 5 0 0 0 - - -, f 5;
#X floatatom 700 293 5 0 0 0 - - -, f 5;
#X floatatom 685 317 5 0 0 0 - - -, f 5;
#X text 17 14 layout and object sizing test patch;
#X msg 283 239 bang;
#N canvas 0 23 450 300 gop 0;
#X floatatom 141 118 5 0 0 0 - - -, f 5;
#X symbolatom 107 139 10 0 0 0 - - -, f 10;
#X obj 107 117 bng 18 250 50 0 empty empty empty 17 7 0 10 -262144
-1 -1;
#X obj 62 40 loadbang;
#X msg 62 70 set foobar;
#X connect 3 0 4 0;
#X connect 4 0 1 0;
#X coords 0 -1 1 1 85 60 1 100 100;
#X restore 165 277 pd gop;
#X obj 138 68 pointer;
#N canvas 0 22 450 278 (subpatch) 0;
#X array array1 100 float 3;
#A 0 0 0 0.0285714 0.0571416 0.0857118 0.0857118 0.114282 0.128567
0.142852 0.171422 0.199992 0.228563 0.228563 0.257133 0.285703 0.285703
0.285703 0.285703 0.285703 0.285703 0.285703 0.257133 0.171422 0.142852
0.0571416 1.2517e-06 -0.0571391 -0.114279 -0.14285 -0.19999 -0.25713
-0.271415 -0.285701 -0.314271 -0.342841 -0.342841 -0.342841 -0.371411
-0.371411 -0.399981 -0.399981 -0.399981 -0.399981 -0.399981 -0.399981
-0.399981 -0.371411 -0.342841 -0.285701 -0.25713 -0.22856 -0.17142
-0.14285 -0.114279 -0.0857093 -0.0571391 1.2517e-06 0.0285714 0.0285714
0.0571416 0.0857118 0.114282 0.114282 0.142852 0.142852 0.171422 0.171422
0.171422 0.171422 0.171422 0.171422 0.171422 0.171422 0.142852 0.114282
0.0571416 0.0285714 1.2517e-06 -0.0571391 -0.0857093 -0.114279 -0.114279
-0.14285 -0.14285 -0.14285 -0.14285 -0.14285 -0.14285 -0.14285 -0.14285
-0.114279 -0.0857093 -0.0857093 -0.0571391 -0.0285689 1.2517e-06 0.0285714
0.0571416 0.0571416 0;
#X coords 0 1 100 -1 100 70 1 0 0;
#X restore 375 276 graph;
#X connect 1 0 3 0;
#X connect 2 0 4 0;
#X connect 5 0 6 0;
#X connect 7 0 5 0;
#X connect 8 0 2 0;
#X connect 11 0 1 0;
#X connect 12 0 13 0;
#X connect 12 1 14 0;
#X connect 12 2 15 0;
#X connect 12 3 16 0;
#X connect 21 0 22 0;
#X connect 24 0 25 0;
#X connect 25 0 23 0;
#X connect 26 0 12 0;
#X connect 27 0 29 0;
#X connect 28 0 27 0;
#X connect 31 0 33 0;
#X connect 32 0 31 0;
#X connect 34 0 36 0;
#X connect 36 0 35 0;
#X connect 37 0 41 0;
#X connect 37 1 40 0;
#X connect 38 0 37 0;
#X connect 39 0 37 1;
#X connect 43 0 21 0;
| Pure Data | 3 | mxa/pure-data | doc/7.stuff/tools/sizingtest.pd | [
"TCL"
] |
#%RAML 1.0
title: Advanced Rest Client
version: v2
baseUri: https://api.advancedrestclient.com/{version}
description: |
A backend API for Advanced Rest Client APP.
The API is based on Google Cloud Endpoinds. Therefore OAuth2 authentication using Google account is required.
All request are restricted to the authorized user. Valid Bearer token in the Authorization header is required.
documentation:
- title: Gettng started
content: !include docs/gettings-started.md
mediaType: application/json
protocols: HTTPS
types:
RequestListSchema: !include schemas/requestlist.schema
RequestSchema: !include schemas/request.schema
PermissionSchema: !include schemas/permission.schema
PermissionListSchema: !include schemas/permissionlist.schema
HarSchema: !include schemas/har/log.json
ProjectSchema: !include schemas/project.schema
ProjectListSchema: !include schemas/projectlist.schema
AppResponse:
type: object
description: |
App response is a base response object from the server.
Every other response from the server must extend this base object.
SessionState:
type: object
description: |
Object represents relevant information about the user.
properties:
consent:
type: boolean
description: |
This will be set to true if the user consent to terms and conditions.
It also means that there is a UserObject entity in the datastore which may only be created when the user consent to data storing agreement.
There is no actuall `consent` field in the datastore.
New API users will have it set to false even if they have stored data in the backed. In old API there were no consent screen. The app must inform the user that the data will be deleted if he won't consent to the terms (when newApi set to false).
newApi:
type: boolean
description: |
This will be true if the user is using new API. It is only valid for the first API created for the app. It will be set to false if the user has data stored on the server and the data hasn't been migrated to new API.
Google Cloud endpoints has version management included so ony other API upgrade will be performed automatically in the Endpoints API.
If set to false it also means that the user will be informaed about data migration and will be transformed to new structure on demand.
Use of old data is not possible with the new API thought but this step is required to migrate the data since the user has `appId` parameter stored locally in the browser that will idenify user data.
New API uses Google's user id that can't be changed by the user (unlike email) and will unambiguously identify app user.
ResponseError:
type: AppResponse
description: |
Representation of the response for errored request.
properties:
error:
type: boolean
default: true
required: true
description: A flag set to response indicating that this is error message.
code:
type: number
required: true
description: Error code ID.
message?:
type: string
description: Optional message explaining the error.
RequestListResponse:
displayName: OK list response
description: The response when the server resulted with the list of requests (or empty list if the user do not have saved responses).
schema: RequestListSchema
RequestResponse:
displayName: OK request data response.
description: A response representing single saved request
schema: RequestSchema
HarResponse:
displayName: OK HAR response
description: A response with HAR object
schema: HarSchema
PutResponse:
type: AppResponse
displayName: OK insert response
description: |
A response for saved request put request.
This is different from any other put resposnes due to minimize network usage and limit number of bytes transfered by the call. Other fields are known to the app anyway.
This response will contain any other auto-generated values that were not present to the original request.
For example if `created` field wans't available with the request the server create new value at the moment of insertion to the datastore. This value will be returned by the request. It will not if it was previously in the request.
properties:
kind:
type: string
required: true
default: ARC#request
key:
type: string
required: true
description: AppEnding database key
PermissionRequestResponse:
displayName: OK permission
description: A response with granted permission or request with the permission to grant.
schema: PermissionSchema
PermissionListResponse:
displayName: OK response
description: OK response for permission list request
schema: PermissionListSchema
ProjectListResponse:
displayName: OK response
description: OK response for projects list request
schema: ProjectListSchema
ProjectRequestResponse:
displayName: OK response
description: OK response for project data request
schema: ProjectSchema
securitySchemes:
oauth_2_0: !include security-schemes/oauth_2_0.raml
securedBy: [ oauth_2_0: {scopes: [PROFILE, EMAIL]}]
traits:
paged: !include traits/paged.raml
projected: !include traits/projected.raml
secured: !include traits/secured.raml
/session:
description: An information about current user session.
is: [secured]
get:
responses:
200:
body:
application/json:
type: SessionState
/request:
description: |
An endpoint manipulate request objects in the datastore.
Request object have 0 to 1 related project object and a least 0 HAR objects.
It's not however required for the RequestObject to contain a HAR object. HAR are history of responses to one particular endpoint. RequestObject consist with the edpoint definition itself.
get:
description: |
Reads a list of requests available to the user.
This may include requests shared with the user by other users. The information about sharing level is available in permission field.
is: [paged, projected, secured]
responses:
200:
body:
application/json:
type: RequestListResponse
put:
description: |
Stores a new RequestObject in the datastore.
This enpoint do not require to put an HAR object in the same request.
body:
application/json:
schema: RequestSchema
responses:
200:
body:
application/json:
type: PutResponse
401:
body:
application/json:
type: ResponseError
description: The user is not authorized
/{requestId}:
description: |
Endpoint represent a data related to the stored request.
By default this endpoint will return a RequestObject with all HARs associated with it. Use projection without 'har' property included to retreive only the main definition of the request (body, method, url, payload) without requests history.
get:
description: Retreives single saved request definition.
is: [projected, secured]
responses:
200:
body:
application/json:
type: RequestResponse
401:
body:
application/json:
type: ResponseError
description: The user is not authorized
delete:
description: Removes user endpoint.
responses:
204:
description: The data has been deleted. No response body required.
post:
description: Updates user endpoint. The request must contain RequestObject properties. Only those available in the request will be changed.
body:
application/json:
type: RequestSchema
responses:
200:
body:
application/json:
type: PutResponse
/har:
description: Endpoint for manipulate HAR data associated with the saved request object.
get:
description: Retreives a list of HAR objects related to the request
is: [paged, projected, secured]
responses:
200:
body:
application/json:
type: HarResponse
delete:
description: Deletes all HAR data for selected endpoint
responses:
204:
description: The data has been deleted. No response body required.
/{harId}:
post:
description: Updates a HAR data.
body:
application/json:
type: HarSchema
responses:
200:
body:
application/json:
type: HarResponse
delete:
is: [secured]
description: Deletes particular HAR object definition.
responses:
204:
description: The data has been deleted. No response body required.
get:
is: [secured, projected]
description: Gets data for HAR object.
responses:
200:
body:
application/json:
type: HarResponse
/permissions:
description: |
An endpoint representing permission objects for the request.
To change a permission use /permission/{permissionId} endpoint
get:
description: Get a list of permissions associated with the request.
is: [paged, projected, secured]
responses:
200:
body:
type: PermissionListResponse
put:
is: [secured]
description: Add new permission to the request.
body:
application/json:
type: PutResponse
/project:
description: And endpoint to manipulate project related data.
get:
is: [paged, projected, secured]
description: Gets a list of projects that are accessible to the user.
responses:
200:
description: |
Returns a list of projects available to the user.
This method will result with project data only. It will not include permissions and requests filed until projection parameter contain request or permissions values.
body:
application/json:
type: ProjectListResponse
put:
is: [secured]
description: Add new project to the request.
body:
application/json:
type: ProjectRequestResponse
responses:
200:
description: Returns a list of projects available to the user.
body:
application/json:
type: PutResponse
/{projectId}:
get:
is: [secured, projected]
responses:
200:
body:
application/json:
type: ProjectRequestResponse
delete:
is: [secured]
description: |
Removes project frm the datastore.
responses:
204:
description: The data has been deleted. No response body required.
post:
is: [secured]
description: |
Change project.
Only name is allowed to change.
body:
application/json:
type: ProjectRequestResponse
responses:
200:
body:
application/json:
type: ProjectRequestResponse
/permissions:
description: |
An endpoint representing permission objects for the project.
Permissions granted on a request level override permissions on project level.
For example when the user has write access to the project but a request associated with the project has been share with the same user on "read" level finally user will have only "read" permission for the RequestObject.
To change a permission use /permission/{permissionId} endpoint
get:
description: Returns a list of permissions associated with the project.
is: [paged, projected, secured]
responses:
200:
body:
type: PermissionListResponse
put:
is: [secured]
description: Add new permission to the project.
body:
application/json:
type: PutResponse
/permission:
description: |
An endpoint to manipulate permissions.
Permissions are attached to an object internally and there's no need to point the connection using this endpoinds.
To create a permission use /{object}/permission endpoint for particular object.
/{permissionId}:
get:
description: Returns a permission definition.
is: [secured, projected]
responses:
200:
body:
application/json:
type: PermissionRequestResponse
delete:
is: [secured]
description: |
Removes granted permission.
It is possible to remove "owner" type permission only if another owner is in the list for particular object. Otherwise error will be returned.
Only an owner can change a permission to an object.
responses:
204:
description: The data has been deleted. No response body required.
400:
displayName: Bad Request
body:
application/json:
type: ResponseError
description: |
Returned when trying to remove permission of an object thet the user is not an owner or when an owner will try to remove his permission without setting a new owner.
post:
is: [secured]
description: |
Change a permission level.
Only "type" is allowed to change. It is possible to degrade "owner" to lower level only if other owner is in permission list.
body:
application/json:
type: PermissionSchema
responses:
200:
body:
application/json:
type: PermissionRequestResponse
400:
displayName: Bad Request
body:
application/json:
type: ResponseError
description: |
Returned when a user who is trying to change a permission is not an owner.
Also when an owner is trying to reduce his permission without promoting another user to be an owner.
| RAML | 5 | Acidburn0zzz/ChromeRestClient | Server API/api.raml | [
"Apache-2.0"
] |
<%= link(SharedHelpers.domain_name(@item.url), to: SharedHelpers.domain_url(@item.url), title: @author.name, rel: "external") %>
| HTML+EEX | 2 | gustavoarmoa/changelog.com | lib/changelog_web/templates/news_item/source/_name_author.html.eex | [
"MIT"
] |
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {browser, by, element} from 'protractor';
import {verifyNoBrowserErrors} from '../../../test-utils';
describe('SW `SwPush` example', () => {
const pageUrl = '/push';
const appElem = element(by.css('example-app'));
afterEach(verifyNoBrowserErrors);
it('should be enabled', () => {
browser.get(pageUrl);
expect(appElem.getText()).toBe('SW enabled: true');
});
});
| TypeScript | 4 | raghavendramohan/angular | packages/examples/service-worker/push/e2e_test/push_spec.ts | [
"MIT"
] |
fun showList l = case l of
[] => "[]"
| h :: t => strcat (strcat (show h) " :: ") (showList t)
fun rpcFunc l : transaction string =
case l of h :: _ => return (showList h) | [] => return "[]"
fun main () : transaction page = return <xml><body>
<button onclick={
s <- rpc (rpcFunc (("foo" :: []) :: []));
alert s
}/>
</body></xml>
| UrWeb | 4 | apple314159/urweb | tests/rpcList2.ur | [
"BSD-3-Clause"
] |
grammar t058rewriteAST42;
options {language=JavaScript;output=AST;}
a : type ID (',' ID)* ';' -> ^(type ID)+ ;
type : 'int' ;
ID : 'a'..'z'+ ;
WS : (' '|'\n') {$channel=HIDDEN;} ; | G-code | 4 | DanielMabadeje/Artificial-Intelligence-Deep-Learning-Machine-Learning-Tutorials | java/java2py/antlr-3.1.3/runtime/JavaScript/tests/functional/t058rewriteAST42.g | [
"Apache-2.0"
] |
.minimap-container
.scroll-wrapper
width 320px
height 180px
overflow hidden
.scroll-content
width 1920px
height 1080px
.scroll-indicator
margin-top 15px
width 320px
height 180px
position relative
.scroll-indicator-bg
position absolute
width 100%
height 100%
.scroll-indicator-handle
position absolute
border 1px solid white
box-shadow 0 0 5px white
width 64px
height 36px
z-index 1
background-color rgba(255, 255, 255, 0.3)
.parallax-scroll-container
height 100%
.parallax-scroll-box
position relative
width 100%
height 100%
box-sizing border-box
border 1px solid #fe0
.scroll-wrapper
position absolute
z-index 3
top 0
right 0
bottom 0
left 0
overflow hidden
.scroll-content
width 100%
height 4000px
background: url('./components/galaxies1.png')
.scroll-indicator
position absolute
top 0
right 0
bottom 0
left 0
overflow hidden
&.stars1
z-index 2
&.stars2
z-index 1
.star1-bg
height 3000px
background: url('./components/galaxies2.png')
.star2-bg
height 2000px
background: url('./components/stars.jpg')
| Stylus | 3 | cym2050/better-scroll | packages/react-examples/src/pages/indicators/index.styl | [
"MIT"
] |
describe Supply do
describe Supply::Client do
let(:service_account_file) { File.read(fixture_file("sample-service-account.json")) }
before do
stub_request(:post, "https://www.googleapis.com/oauth2/v4/token").
to_return(status: 200, body: '{}', headers: { 'Content-Type' => 'application/json' })
stub_request(:post, "https://androidpublisher.googleapis.com/androidpublisher/v3/applications/test-app/edits").
to_return(status: 200, body: '{}', headers: { 'Content-Type' => 'application/json' })
end
it "displays error messages from the API" do
stub_request(:post, "https://androidpublisher.googleapis.com/upload/androidpublisher/v3/applications/test-app/edits/1/listings/en-US/icon").
to_return(status: 403, body: '{"error":{"message":"Ensure project settings are enabled."}}', headers: { 'Content-Type' => 'application/json' })
expect(UI).to receive(:user_error!).with("Google Api Error: Invalid request - Ensure project settings are enabled.")
current_edit = double
allow(current_edit).to receive(:id).and_return(1)
client = Supply::Client.new(service_account_json: StringIO.new(service_account_file), params: { timeout: 1 })
allow(client).to receive(:ensure_active_edit!)
allow(client).to receive(:current_edit).and_return(current_edit)
client.begin_edit(package_name: 'test-app')
client.upload_image(image_path: fixture_file("playstore-icon.png"),
image_type: "icon",
language: "en-US")
end
describe "AndroidPublisher" do
let(:subject) { AndroidPublisher::AndroidPublisherService.new }
# Verify that the Google API client has all the expected methods we use.
it "has all the expected Google API methods" do
expect(subject.class.method_defined?(:insert_edit)).to eq(true)
expect(subject.class.method_defined?(:delete_edit)).to eq(true)
expect(subject.class.method_defined?(:validate_edit)).to eq(true)
expect(subject.class.method_defined?(:commit_edit)).to eq(true)
expect(subject.class.method_defined?(:list_edit_listings)).to eq(true)
expect(subject.class.method_defined?(:get_edit_listing)).to eq(true)
expect(subject.class.method_defined?(:list_edit_apks)).to eq(true)
expect(subject.class.method_defined?(:list_edit_bundles)).to eq(true)
expect(subject.class.method_defined?(:update_edit_listing)).to eq(true)
expect(subject.class.method_defined?(:upload_edit_apk)).to eq(true)
expect(subject.class.method_defined?(:upload_edit_deobfuscationfile)).to eq(true)
expect(subject.class.method_defined?(:upload_edit_bundle)).to eq(true)
expect(subject.class.method_defined?(:list_edit_tracks)).to eq(true)
expect(subject.class.method_defined?(:update_edit_track)).to eq(true)
expect(subject.class.method_defined?(:get_edit_track)).to eq(true)
expect(subject.class.method_defined?(:update_edit_track)).to eq(true)
expect(subject.class.method_defined?(:update_edit_expansionfile)).to eq(true)
expect(subject.class.method_defined?(:list_edit_images)).to eq(true)
expect(subject.class.method_defined?(:upload_edit_image)).to eq(true)
expect(subject.class.method_defined?(:deleteall_edit_image)).to eq(true)
expect(subject.class.method_defined?(:upload_edit_expansionfile)).to eq(true)
expect(subject.class.method_defined?(:uploadapk_internalappsharingartifact)).to eq(true)
expect(subject.class.method_defined?(:uploadbundle_internalappsharingartifact)).to eq(true)
end
end
end
end
| Ruby | 4 | flufff42/fastlane | supply/spec/client_spec.rb | [
"MIT"
] |
/* Copyright 2021 The TensorFlow 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.
==============================================================================*/
#include "tensorflow/compiler/mlir/tensorflow/utils/session_utils.h"
#include "absl/status/status.h"
#include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/StringRef.h"
#include "tensorflow/compiler/mlir/utils/string_container_utils.h"
#include "tensorflow/core/common_runtime/device_mgr.h"
#include "tensorflow/core/framework/device.h"
#include "tensorflow/core/framework/resource_var.h"
namespace mlir {
namespace tf_saved_model {
std::string GetVariableName(TF::VarHandleOp var_handle_op) {
// In some cases the shared_name attribute doesn't have the same
// tensor name in the model, so we first try to use the location
// then fallback to shared_name attribute.
if (auto loc = var_handle_op->getLoc().dyn_cast<NameLoc>())
return loc.getName().str();
return var_handle_op.shared_name().str();
}
std::vector<std::string> GetVariableNames(
llvm::ArrayRef<TF::VarHandleOp> var_handle_ops) {
std::vector<std::string> names;
names.reserve(var_handle_ops.size());
for (auto var_handle_op : var_handle_ops)
names.push_back(GetVariableName(var_handle_op));
return names;
}
tensorflow::Var* GetVariableFromSession(mlir::TF::VarHandleOp var_handle_op,
llvm::StringRef device_name,
const tensorflow::DeviceMgr* mgr) {
tensorflow::Device* device = nullptr;
if (!mgr || !mgr->LookupDevice(StringRefToView(device_name), &device).ok())
return nullptr;
tensorflow::Var* var_ptr = nullptr;
const auto& container = var_handle_op.container().str();
auto status = device->resource_manager()->Lookup(
(container.empty() ? device->resource_manager()->default_container()
: container),
var_handle_op.shared_name().str(), &var_ptr);
if (!device || !status.ok()) return nullptr;
return var_ptr;
}
absl::StatusOr<std::vector<tensorflow::Tensor>> GetResourcesFromSession(
llvm::ArrayRef<TF::VarHandleOp> var_handle_ops,
tensorflow::Session* session) {
if (!session)
return absl::Status(absl::StatusCode::kInvalidArgument,
"Null Session provided.");
std::vector<tensorflow::Tensor> resource_tensors;
auto variable_names = GetVariableNames(var_handle_ops);
if (variable_names.empty()) return resource_tensors;
auto status = session->Run({}, variable_names, {}, &resource_tensors);
if (!status.ok())
return absl::Status(absl::StatusCode::kInternal, status.error_message());
return resource_tensors;
}
} // namespace tf_saved_model
} // namespace mlir
| C++ | 5 | EricRemmerswaal/tensorflow | tensorflow/compiler/mlir/tensorflow/utils/session_utils.cc | [
"Apache-2.0"
] |
%%{
machine conf_lexer;
line_sane = ( '\n' ) >{ ctx->line++; };
line_weird = ( '\r' ) >{ ctx->line++; };
line_insane = ( '\r' ( '\n' >{ ctx->line--; } ) );
line = ( line_sane | line_weird | line_insane );
ws = ( '\t' | ' ' );
comment = ( '#' (any - line)* line );
noise = ( ws | line | comment );
dliteralChar = [^`"\\] | ( '\\' any );
main := |*
[1-9][0-9]* { ID() };
/listen/i { KEYWORD(TK_LISTEN) };
/store/i { KEYWORD(TK_STORE) };
/log/i { KEYWORD(TK_LOG) };
/primary/i { KEYWORD(TK_BUFFER_TYPE) };
/secondary/i { KEYWORD(TK_BUFFER_TYPE) };
'{' { SYMBOL(TK_LP) };
'}' { SYMBOL(TK_RP) };
';' { SYMBOL(TK_SEMICOLON) };
'"' (dliteralChar | "'")* '"' { ID() };
"'" (dliteralChar | '"')* "'" { ID() };
(print - noise - [,<>=;{}])+ { ID() };
comment;
noise;
*|;
}%%
%% write data;
ParseContext *ParseConfig(std::string str) {
char *p = const_cast<char*>(str.c_str());
char *pe = p + str.length();
char *eof = pe;
int cs, act;
char *ts, *te;
ParseContext *ctx = new ParseContext();
if (str.empty()) {
ctx->success = false;
snprintf(ctx->error, 1024, ERR_BAD_CONF_FILE);
return ctx;
}
Token *tk = NULL;
void *parser = ParseAlloc(malloc);
%% write init;
%% write exec;
if (cs < conf_lexer_first_final) {
snprintf(ctx->error, 1024, "%s(line: %d)", ERR_SYNTAX, ctx->line);
ctx->success = false;
} else {
Parse(parser, 0, 0, ctx);
}
ParseFree(parser, free);
if (ctx->success) {
CheckKidsConfig(ctx->conf, ctx);
}
return ctx;
}
| Ragel in Ruby Host | 3 | liyichao/kids | src/lexer.rl | [
"BSD-3-Clause"
] |
// https://drafts.csswg.org/cssom/#linkstyle
interface mixin LinkStyle {
readonly attribute StyleSheet? sheet;
};
| WebIDL | 4 | wkh237/jsdom | lib/jsdom/living/nodes/LinkStyle.webidl | [
"MIT"
] |
<?xml version="1.0" encoding="utf-8"?>
<Session>
<CoreClrProfilerReport name="SystemSettings_UnitTest.log" path="./" />
<Proc name="proc.log" path="./" />
<Time value="1546414214607.83" />
<ProjectName value="SystemSettings_UnitTest" />
<ProfilingType value="CPU Sampling" />
<DeviceName value="W-5.0-circle-x86" />
<ProfilingOptions COMPlusEnableeventlog="1" COMPlusARMEnabled="1" ProfCollectMethod="Sampling" ProfSamplingTimeout="10" ProfCpu_traceTimeout="10" ProfExecutionTrace="1" ProfCpuTrace="1" ProfCpuTraceProc="1" ProfCpuTraceThread="1" ProfMemoryTrace="0" ProfLineTrace="0" ProfHighGran="1" ProfStackTrack="0" ProfDelayedStart="0" ProfTraceGarbageCollection="0" CperfHostCode="fe80686c3674c7f7500112" Sleep="0" />
</Session>
| Component Pascal | 3 | yoowonyoung/TizenFX | test/Tizen.System.SystemSettings.UnitTest/SystemSettings.UnitTest/TizenProfiler/DotNET-20190102-163018/Session.cps | [
"Apache-2.0"
] |
%%
%unicode 5.1
%public
%class UnicodeGeneralCategoryAliases1_5_1
%type int
%standalone
%include ../../resources/common-unicode-all-enumerated-property-java
%%
<<EOF>> { printOutput(); return 1; }
\p{General_Category:Cc} { setCurCharPropertyValue("Cc"); }
\p{General_Category:Cf} { setCurCharPropertyValue("Cf"); }
\p{General_Category:Cn} { setCurCharPropertyValue("Cn"); }
\p{General_Category:Co} { setCurCharPropertyValue("Co"); }
\p{General_Category:Ll} { setCurCharPropertyValue("Ll"); }
\p{General_Category:Lm} { setCurCharPropertyValue("Lm"); }
\p{General_Category:Lo} { setCurCharPropertyValue("Lo"); }
\p{General_Category:Lt} { setCurCharPropertyValue("Lt"); }
\p{General_Category:Lu} { setCurCharPropertyValue("Lu"); }
\p{General_Category:Mc} { setCurCharPropertyValue("Mc"); }
\p{General_Category:Me} { setCurCharPropertyValue("Me"); }
\p{General_Category:Mn} { setCurCharPropertyValue("Mn"); }
\p{General_Category:Nd} { setCurCharPropertyValue("Nd"); }
\p{General_Category:Nl} { setCurCharPropertyValue("Nl"); }
\p{General_Category:No} { setCurCharPropertyValue("No"); }
\p{General_Category:Pc} { setCurCharPropertyValue("Pc"); }
\p{General_Category:Pd} { setCurCharPropertyValue("Pd"); }
\p{General_Category:Pe} { setCurCharPropertyValue("Pe"); }
\p{General_Category:Pf} { setCurCharPropertyValue("Pf"); }
\p{General_Category:Pi} { setCurCharPropertyValue("Pi"); }
\p{General_Category:Po} { setCurCharPropertyValue("Po"); }
\p{General_Category:Ps} { setCurCharPropertyValue("Ps"); }
\p{General_Category:Sc} { setCurCharPropertyValue("Sc"); }
\p{General_Category:Sk} { setCurCharPropertyValue("Sk"); }
\p{General_Category:Sm} { setCurCharPropertyValue("Sm"); }
\p{General_Category:So} { setCurCharPropertyValue("So"); }
\p{General_Category:Zl} { setCurCharPropertyValue("Zl"); }
\p{General_Category:Zp} { setCurCharPropertyValue("Zp"); }
\p{General_Category:Zs} { setCurCharPropertyValue("Zs"); }
| JFlex | 3 | Mivik/jflex | testsuite/testcases/src/test/cases/unicode-general-category/UnicodeGeneralCategoryAliases1_5_1.flex | [
"BSD-3-Clause"
] |
/// <reference path='fourslash.ts'/>
////declare function f<T>(x: T, y: (p: T) => T, z: (p: T) => T): T;
////var /*1*/result = /*2*/f(0, /*3*/x => null, /*4*/x => x.blahblah);
verify.quickInfos({
1: "var result: number",
2: "function f<number>(x: number, y: (p: number) => number, z: (p: number) => number): number",
3: "(parameter) x: number",
4: "(parameter) x: number"
});
| TypeScript | 4 | nilamjadhav/TypeScript | tests/cases/fourslash/fixingTypeParametersQuickInfo.ts | [
"Apache-2.0"
] |
@import "ui-variables";
@import "ui-mixins";
input[type="text"],
input[type="email"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"] {
width: 100%;
padding-left: @padding-xs-horizontal;
padding-right: @padding-xs-horizontal;
line-height: @line-height-computed;
font-weight:400;
background: @input-bg;
color: @text-color;
border-radius: @border-radius-base;
border: 1px solid @input-border-color;
&:disabled {
background: rgba(0,0,0,0.02);
opacity: 0.7;
}
}
.search-bar .menu .header-container input,
textarea,
input[type="text"],
input[type="email"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"] {
&:focus {
border: 1px solid @accent-primary;
box-shadow: 0 0 1.5px @accent-primary;
}
}
body.platform-win32 {
input[type="text"],
input[type="email"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"] {
border: 0;
border-radius: 0;
box-shadow: 0 0 0 2px @input-border-color;
&:focus {
border: 0;
border-radius: 0;
box-shadow: 0 0 0 2px darken(@input-border-color, 20%);
}
}
}
| Less | 3 | cnheider/nylas-mail | packages/client-app/static/inputs.less | [
"MIT"
] |
//
// Copyright (C) 1999-2005 Google, Inc.
//
#include "rdb_protocol/geo/s2/strings/strutil.h"
#include <ctype.h>
#include <errno.h>
#include <float.h> // for DBL_DIG and FLT_DIG
#include <math.h> // for HUGE_VAL
#include <pthread.h> // for gmtime_r (on Windows)
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <unordered_map>
#include <unordered_set>
#include <iterator>
#include <limits>
#include <set>
#include <string>
#include <vector>
#include "errors.hpp"
#include "rdb_protocol/geo/s2/base/logging.h"
#include "rdb_protocol/geo/s2/base/scoped_ptr.h"
//#include "rdb_protocol/geo/s2/strutil-inl.h"
//#include "rdb_protocol/geo/s2/third_party/utf/utf.h" // for runetochar
//#include "rdb_protocol/geo/s2/util/gtl/stl_util-inl.h" // for string_as_array
//#include "rdb_protocol/geo/s2/util/hash/hash.h"
#include "rdb_protocol/geo/s2/strings/split.h"
#ifdef OS_WINDOWS
#include <pthread.h> // for gmtime_r
#ifdef min // windows.h defines this to something silly
#undef min
#endif
#endif
namespace geo {
using std::min;
using std::max;
using std::swap;
using std::reverse;
using std::unordered_map;
using std::unordered_set;
using std::numeric_limits;
using std::set;
using std::multiset;
using std::vector;
// ----------------------------------------------------------------------
// FpToString()
// FloatToString()
// IntToString()
// Convert various types to their string representation. These
// all do the obvious, trivial thing.
// ----------------------------------------------------------------------
std::string FpToString(Fprint fp) {
char buf[17];
snprintf(buf, sizeof(buf), "%016llx", fp);
return std::string(buf);
}
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-nonliteral"
#endif
std::string FloatToString(float f, const char* format) {
char buf[80];
snprintf(buf, sizeof(buf), format, f);
return std::string(buf);
}
std::string IntToString(int i, const char* format) {
char buf[80];
snprintf(buf, sizeof(buf), format, i);
return std::string(buf);
}
std::string Int64ToString(int64 i64, const char* format) {
char buf[80];
snprintf(buf, sizeof(buf), format, i64);
return std::string(buf);
}
std::string UInt64ToString(uint64 ui64, const char* format) {
char buf[80];
snprintf(buf, sizeof(buf), format, ui64);
return std::string(buf);
}
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
// Default arguments
std::string FloatToString(float f) { return FloatToString(f, "%7f"); }
std::string IntToString(int i) { return IntToString(i, "%7d"); }
std::string Int64ToString(int64 i64) {
return Int64ToString(i64, "%7" GG_LL_FORMAT "d");
}
std::string UInt64ToString(uint64 ui64) {
return UInt64ToString(ui64, "%7" GG_LL_FORMAT "u");
}
// ----------------------------------------------------------------------
// FastHexToBuffer()
// FastHex64ToBuffer()
// FastHex32ToBuffer()
// These are intended for speed. FastHexToBuffer() assumes the
// integer is non-negative. FastHexToBuffer() puts output in
// hex rather than decimal.
//
// FastHex64ToBuffer() puts a 64-bit unsigned value in hex-format,
// padded to exactly 16 bytes (plus one byte for '\0')
//
// FastHex32ToBuffer() puts a 32-bit unsigned value in hex-format,
// padded to exactly 8 bytes (plus one byte for '\0')
//
// All functions take the output buffer as an arg. FastInt()
// uses at most 22 bytes.
// They all return a pointer to the beginning of the output,
// which may not be the beginning of the input buffer.
// ----------------------------------------------------------------------
char *FastHexToBuffer(int i, char* buffer) {
CHECK(i >= 0) << "FastHexToBuffer() wants non-negative integers, not " << i;
static const char *hexdigits = "0123456789abcdef";
char *p = buffer + 21;
*p-- = '\0';
do {
*p-- = hexdigits[i & 15]; // mod by 16
i >>= 4; // divide by 16
} while (i > 0);
return p + 1;
}
char *InternalFastHexToBuffer(uint64 value, char* buffer, int num_byte) {
static const char *hexdigits = "0123456789abcdef";
buffer[num_byte] = '\0';
for (int i = num_byte - 1; i >= 0; i--) {
buffer[i] = hexdigits[uint32(value) & 0xf];
value >>= 4;
}
return buffer;
}
char *FastHex64ToBuffer(uint64 value, char* buffer) {
return InternalFastHexToBuffer(value, buffer, 16);
}
char *FastHex32ToBuffer(uint32 value, char* buffer) {
return InternalFastHexToBuffer(value, buffer, 8);
}
// ----------------------------------------------------------------------
// ParseLeadingUInt64Value
// ParseLeadingInt64Value
// ParseLeadingHex64Value
// A simple parser for long long values. Returns the parsed value if a
// valid integer is found; else returns deflt
// UInt64 and Int64 cannot handle decimal numbers with leading 0s.
// --------------------------------------------------------------------
uint64 ParseLeadingUInt64Value(const char *str, uint64 deflt) {
char *error = NULL;
const uint64 value = strtoull(str, &error, 0);
return (error == str) ? deflt : value;
}
int64 ParseLeadingInt64Value(const char *str, int64 deflt) {
char *error = NULL;
const int64 value = strtoll(str, &error, 0);
return (error == str) ? deflt : value;
}
uint64 ParseLeadingHex64Value(const char *str, uint64 deflt) {
char *error = NULL;
const uint64 value = strtoull(str, &error, 16);
return (error == str) ? deflt : value;
}
// ----------------------------------------------------------------------
// ParseLeadingDec64Value
// ParseLeadingUDec64Value
// A simple parser for [u]int64 values. Returns the parsed value
// if a valid value is found; else returns deflt
// The string passed in is treated as *10 based*.
// This can handle strings with leading 0s.
// --------------------------------------------------------------------
int64 ParseLeadingDec64Value(const char *str, int64 deflt) {
char *error = NULL;
const int64 value = strtoll(str, &error, 10);
return (error == str) ? deflt : value;
}
uint64 ParseLeadingUDec64Value(const char *str, uint64 deflt) {
char *error = NULL;
const uint64 value = strtoull(str, &error, 10);
return (error == str) ? deflt : value;
}
bool DictionaryParse(const std::string& encoded_str,
vector<pair<std::string, std::string> >* items) {
vector<std::string> entries;
SplitStringUsing(encoded_str, ",", &entries);
for (size_t i = 0; i < entries.size(); ++i) {
vector<std::string> fields;
SplitStringAllowEmpty(entries[i], ":", &fields);
if (fields.size() != 2) // parsing error
return false;
items->push_back(make_pair(fields[0], fields[1]));
}
return true;
}
} // namespace geo
| C++ | 4 | zadcha/rethinkdb | src/rdb_protocol/geo/s2/strings/strutil.cc | [
"Apache-2.0"
] |
/*
* All data present in IS2Location can be accessed like so:
*
* var thingYouWant = IS2Location.<insert_thing_here>();
*
* You will need to setup IS2Location with a function to call whenever data is updated by InfoStats 2.
* To do so, in the first function that you've defined at either <body onload="firstFunction()"> or at
* the bottom of your <body> tag before </body>, you'll want to call the following function:
*
* IS2Location.init(<function_to_call_when_data_updates>, <distance_interval>, <update_accuracy>);
*
* Where <function_to_call_when_data_updates> is typed without the usual () following it.
* In addition, <distance_interval> can one of the following values:
* 1 - Update every 10 meters moved (walking or cycling)
* 2 - Update every 100 meters (driving or other such transport)
* 3 - Update every 500 meters
* 4 - Update every 1 kilometer (best for weather data)
*
* And <update_accuracy> is one of the following values:
* 1 - Satellite navigation quality (GPS and additional sensors)
* 2 - Satellite navigation quality (GPS only)
* 3 - Within 10 meters of the user
* 4 - Within 100 meters
* 5 - Within 1 kilometer
* 6 - Within 3 kilometers
*
* For further documentation on the data provided here, make sure to check the IS2 documentation found at
* http://incendo.ws/projects/InfoStats2/Classes/IS2Location.html
* Each IS2 function used in this script is documented there.
*/
var IS2Location = {
////////////////////////////////////////////////////////////////////////////////////////////////////////
// Setup
init: function(locationDataCallback, distanceInterval, updateAccuracy) {
[IS2Location registerForLocationNotificationsWithIdentifier:widgetIdentifier andCallback:^ void () {
locationDataCallback();
}];
[IS2Location setLocationUpdateDistanceInterval:distanceInterval forRequester:widgetIdentifier];
[IS2Location setLocationUpdateAccuracy:updateAccuracy forRequester:widgetIdentifier];
},
// Don't call this manually unless you know really what you're doing!
onunload: function() {
[IS2Location unregisterForNotificationsWithIdentifier:widgetIdentifier];
[IS2Location removeRequesterForLocationDistanceInterval:widgetIdentifier];
[IS2Location removeRequesterForLocationAccuracy:widgetIdentifier];
},
// Force a manual refresh of location data. This shouldn't be needed, but is present in the event it is.
forceManualRefreshOfData: function() {
[IS2Location requestUpdateToLocationData];
},
////////////////////////////////////////////////////////////////////////////////////////////////////////
// Data Access.
getIsLocationServicesEnabled: function() {
return [IS2Location isLocationServicesEnabled];
},
getLatitude: function() {
return [IS2Location currentLatitude];
},
getLongitude: function() {
return [IS2Location currentLongitude];
},
getHouseNumber: function() {
return [IS2Location houseNumberForCurrentLocation];
},
getStreet: function() {
return [IS2Location streetForCurrentLocation];
},
getPostCode: function() {
return [IS2Location postCodeForCurrentLocation];
},
getNeighbourhood: function() {
return [IS2Location neighbourhoodForCurrentLocation];
},
getCity: function() {
return [IS2Location cityForCurrentLocation];
},
getCounty: function() {
return [IS2Location countyForCurrentLocation];
},
getState: function() {
return [IS2Location stateForCurrentLocation];
},
getCountry: function() {
return [IS2Location countryForCurrentLocation];
},
getCountryISOCode: function() {
return [IS2Location ISOCountryCodeForCurrentLocation];
}
}; | Cycript | 4 | Matchstic/InfoStats2 | Scripts/Location/IS2Location.cy | [
"BSD-2-Clause"
] |
module Hasura.SQL.GeoJSON
( Position (..),
Point (..),
MultiPoint (..),
LineString (..),
LinearRing (..),
MultiLineString (..),
Polygon (..),
MultiPolygon (..),
Geometry (..),
GeometryCollection (..),
GeometryWithCRS (..),
)
where
import Control.Monad
import Data.Aeson qualified as J
import Data.Aeson.Casing qualified as J
import Data.Aeson.TH qualified as J
import Data.Aeson.Types qualified as J
import Data.Vector qualified as V
import Hasura.Prelude
data Position
= Position !Double !Double !(Maybe Double)
deriving (Show, Eq)
withParsedArray ::
(J.FromJSON a) =>
String ->
(V.Vector a -> J.Parser b) ->
J.Value ->
J.Parser b
withParsedArray s fn =
J.withArray s (mapM J.parseJSON >=> fn)
instance J.FromJSON Position where
parseJSON = withParsedArray "Position" $ \arr ->
if V.length arr < 2
then fail "A Position needs at least 2 elements"
else -- here we are ignoring anything past 3 elements
return $
Position
(arr `V.unsafeIndex` 0)
(arr `V.unsafeIndex` 1)
(arr V.!? 2)
instance J.ToJSON Position where
toJSON (Position a b c) =
J.toJSON $ a : b : maybeToList c
newtype Point = Point {unPoint :: Position}
deriving (Show, Eq, J.ToJSON, J.FromJSON)
newtype MultiPoint = MultiPoint {unMultiPoint :: [Position]}
deriving (Show, Eq, J.ToJSON, J.FromJSON)
data LineString = LineString
{ _lsFirst :: !Position,
_lsSecond :: !Position,
_lsRest :: ![Position]
}
deriving (Show, Eq)
instance J.ToJSON LineString where
toJSON (LineString a b rest) =
J.toJSON $ a : b : rest
instance J.FromJSON LineString where
parseJSON = withParsedArray "LineString" $ \arr ->
if V.length arr < 2
then fail "A LineString needs at least 2 Positions"
else -- here we are ignoring anything past 3 elements
let fstPos = arr `V.unsafeIndex` 0
sndPos = arr `V.unsafeIndex` 1
rest = V.toList $ V.drop 2 arr
in return $ LineString fstPos sndPos rest
newtype MultiLineString = MultiLineString {unMultiLineString :: [LineString]}
deriving (Show, Eq, J.ToJSON, J.FromJSON)
newtype GeometryCollection = GeometryCollection {unGeometryCollection :: [GeometryWithCRS]}
deriving (Show, Eq, J.ToJSON, J.FromJSON)
data LinearRing = LinearRing
{ _pFirst :: !Position,
_pSecond :: !Position,
_pThird :: !Position,
_pRest :: ![Position]
}
deriving (Show, Eq)
instance J.FromJSON LinearRing where
parseJSON = withParsedArray "LinearRing" $ \arr ->
if V.length arr < 4
then fail "A LinearRing needs at least 4 Positions"
else -- here we are ignoring anything past 3 elements
do
let fstPos = arr `V.unsafeIndex` 0
sndPos = arr `V.unsafeIndex` 1
thrPos = arr `V.unsafeIndex` 2
rest = V.drop 3 arr
let lastPos = V.last rest
unless (fstPos == lastPos) $
fail "the first and last locations have to be equal for a LinearRing"
return $ LinearRing fstPos sndPos thrPos $ V.toList $ V.init rest
instance J.ToJSON LinearRing where
toJSON (LinearRing a b c rest) =
J.toJSON $ (V.fromList [a, b, c] <> V.fromList rest) `V.snoc` a
newtype Polygon = Polygon {unPolygon :: [LinearRing]}
deriving (Show, Eq, J.ToJSON, J.FromJSON)
newtype MultiPolygon = MultiPolygon {unMultiPolygon :: [Polygon]}
deriving (Show, Eq, J.ToJSON, J.FromJSON)
data Geometry
= GPoint !Point
| GMultiPoint !MultiPoint
| GLineString !LineString
| GMultiLineString !MultiLineString
| GPolygon !Polygon
| GMultiPolygon !MultiPolygon
| GGeometryCollection !GeometryCollection
deriving (Show, Eq)
data GeometryWithCRS = GeometryWithCRS
{ _gwcGeom :: !Geometry,
_gwcCrs :: !(Maybe CRS)
}
deriving (Show, Eq)
encToCoords :: (J.ToJSON a) => Text -> a -> Maybe CRS -> J.Value
encToCoords ty a Nothing =
J.object ["type" J..= ty, "coordinates" J..= a]
encToCoords ty a (Just crs) =
J.object ["type" J..= ty, "coordinates" J..= a, "crs" J..= crs]
instance J.ToJSON GeometryWithCRS where
toJSON (GeometryWithCRS geom crsM) = case geom of
GPoint o -> encToCoords "Point" o crsM
GMultiPoint o -> encToCoords "MultiPoint" o crsM
GLineString o -> encToCoords "LineString" o crsM
GMultiLineString o -> encToCoords "MultiLineString" o crsM
GPolygon o -> encToCoords "Polygon" o crsM
GMultiPolygon o -> encToCoords "MultiPolygon" o crsM
GGeometryCollection o ->
J.object
[ "type" J..= ("GeometryCollection" :: Text),
"geometries" J..= o
]
instance J.FromJSON GeometryWithCRS where
parseJSON = J.withObject "Geometry" $ \o -> do
ty <- o J..: "type"
geom <- case ty of
"Point" -> GPoint <$> o J..: "coordinates"
"MultiPoint" -> GMultiPoint <$> o J..: "coordinates"
"LineString" -> GLineString <$> o J..: "coordinates"
"MultiLineString" -> GMultiLineString <$> o J..: "coordinates"
"Polygon" -> GPolygon <$> o J..: "coordinates"
"MultiPolygon" -> GMultiPolygon <$> o J..: "coordinates"
"GeometryCollection" -> GGeometryCollection <$> o J..: "geometries"
_ -> fail $ "unexpected geometry type: " <> ty
crsM <- o J..:? "crs"
return $ GeometryWithCRS geom crsM
data CRSNameProps = CRSNameProps
{ _cnpName :: !Text
}
deriving (Show, Eq)
data CRSLinkProps = CRSLinkProps
{ _clpHref :: !Text,
_clpType :: !(Maybe Text)
}
deriving (Show, Eq)
data CRS
= CRSName !CRSNameProps
| CRSLink !CRSLinkProps
deriving (Show, Eq)
$(J.deriveJSON (J.aesonPrefix J.camelCase) ''CRSNameProps)
$(J.deriveJSON (J.aesonPrefix J.camelCase) ''CRSLinkProps)
$( J.deriveJSON
J.defaultOptions
{ J.constructorTagModifier = J.camelCase . drop 3,
J.sumEncoding = J.TaggedObject "type" "properties"
}
''CRS
)
| Haskell | 5 | eazyfin/graphql-engine | server/src-lib/Hasura/SQL/GeoJSON.hs | [
"Apache-2.0",
"MIT"
] |
---
prev: collections.textile
next: type-basics.textile
title: 패턴 매치와 함수 합성
layout: post
---
이번 강좌에서 다루는 내용은 다음과 같다.
* "함수 합성":#composition
** compose
** andThen
* "커링과 부분 적용 비교":#curryvspartial
* "PartialFunction(부분 함수 클래스)":#PartialFunction
** 치역과 정의역
** orElse로 합성하기
* "case 문이란 무엇인가?":#case
h2(#composition). 함수 합성
다음 두 함수가 유용하다고 가정하자.
<pre>
scala> def addUmm(x: String) = x + " umm"
addUmm: (x: String)String
scala> def addAhem(x: String) = x + " ahem"
addAhem: (x: String)String
</pre>
h3. compose
<code>f compose g</code>를 하면 두 함수를 <code>f(g(x))</code>과 같이 합성한다.
<pre>
scala> val ummThenAhem = addAhem _ compose addUmm _
ummThenAhem: (String) => String = <function1>
scala> ummThenAhem("well")
res0: String = well umm ahem
</pre>
h3. andThen
<code>andThen</code>도 <code>compose</code>와 비슷하지만, 처음 오는 함수를 먼저 호출한 다음, 두번째 함수를 호출한다. 즉, <code>f andThen g</code>는 <code>g(f(x))</code>
<pre>
scala> val ahemThenUmm = addAhem _ andThen addUmm _
ahemThenUmm: (String) => String = <function1>
scala> ahemThenUmm("well")
res1: String = well ahem umm
</pre>
h2(#curryvspartial). 커링과 부분 적용의 비교
h3. 케이스 문
h4. 케이스 문은 도대체 무엇인가?
케이스 문은 PartialFunction이라 불리는 함수의 하위 클래스이다.
h4. 케이스 문을 여러개 사용하는 것은 무엇인가?
여러 PartialFunction들이 서로 compose된 것이다.
h2(#PartialFunction). PartialFunction
함수는 정의된 모든 인자 값에 대해 동작한다. 다른식으로 말하자면, (Int) => String 타입으로 정의된 함수는 모든 Int에 대해 어떤 String을 반환한다. 즉, 어떤 정수이건 그에 대응하는 String이 있기 마련이다.
하지만 부분 함수는 인자 타입의 값 중 일부에 대해서만 정의되어 있다. (Int) => String 타입의 부분함수는 일부 Int는 취급하지 않을 것이다.
<code>isDefinedAt</code>은 PartialFunction에 정의되어 있는 메소드로, 해당 PartialFunction이 주어진 인자를 받을 수 있는지를 알려준다.
__Note__ <code>PartialFunction</code>은 앞에서 본 부분 적용된 함수와는 전혀 관계가 없다.
*See Also* 효율적 스칼라에도 <a href="https://twitter.github.com/effectivescala/#Functional programming-Partial functions">부분함수</a>에 대한 내용이 있다.
<pre>
scala> val one: PartialFunction[Int, String] = { case 1 => "one" }
one: PartialFunction[Int,String] = <function1>
scala> one.isDefinedAt(1)
res0: Boolean = true
scala> one.isDefinedAt(2)
res1: Boolean = false
</pre>
부분 함수도 함수처럼 적용이 가능하다.
<pre>
scala> one(1)
res2: String = one
</pre>
PartialFunction들은 orElse라 불리는 다른 함수를 사용해 합성이 가능하다. orElse는 각 PartialFunction이 인자 값에 대해 정의되어 있는지 여부에 따라 적절한 최종 값을 반환한다.
<pre>
scala> val two: PartialFunction[Int, String] = { case 2 => "two" }
two: PartialFunction[Int,String] = <function1>
scala> val three: PartialFunction[Int, String] = { case 3 => "three" }
three: PartialFunction[Int,String] = <function1>
scala> val wildcard: PartialFunction[Int, String] = { case _ => "something else" }
wildcard: PartialFunction[Int,String] = <function1>
scala> val partial = one orElse two orElse three orElse wildcard
partial: PartialFunction[Int,String] = <function1>
scala> partial(5)
res24: String = something else
scala> partial(3)
res25: String = three
scala> partial(2)
res26: String = two
scala> partial(1)
res27: String = one
scala> partial(0)
res28: String = something else
</pre>
h3(#case). 케이스 문의 신비
지난 강의에서 무언가 이상한 부분이 있었다. 즉, 케이스 문을 함수가 필요한 위치에 사용하는 것을 보았다.
<pre>
scala> case class PhoneExt(name: String, ext: Int)
defined class PhoneExt
scala> val extensions = List(PhoneExt("steve", 100), PhoneExt("robey", 200))
extensions: List[PhoneExt] = List(PhoneExt(steve,100), PhoneExt(robey,200))
scala> extensions.filter { case PhoneExt(name, extension) => extension < 200 }
res0: List[PhoneExt] = List(PhoneExt(steve,100))
</pre>
어떻게 이런 일이 가능할까?
필터는 함수를 받는다. 위 코드에서 필터가 받아야 하는 함수는 (PhoneExt) => Boolean 타입이다.
PartialFunction은 Function의 하위타입이므로 필터는 PartialFunction도 받을 수 있다!
| Textile | 5 | AstronomiaDev/scala_school | web/ko/pattern-matching-and-functional-composition.textile | [
"Apache-2.0"
] |
// @module: commonjs
// @Filename: foo_0.ts
class Foo<T>{
test: T;
}
export = Foo;
// @Filename: foo_1.ts
import foo = require("./foo_0");
var x = new foo<number>();
var y:number = x.test;
| TypeScript | 4 | nilamjadhav/TypeScript | tests/cases/conformance/externalModules/exportAssignmentGenericType.ts | [
"Apache-2.0"
] |
//
// This file is part of the Simutrans project under the Artistic License.
// (see LICENSE.txt)
//
//
// Tests for depots
//
function test_depot_build_invalid_params()
{
local pl = player_x(0)
local public_pl = player_x(1)
// invalid default_param
{
local error_caught = false
try {
ASSERT_EQUAL(command_x(tool_build_depot).work(pl, coord3d(0, 0, 0), null), "")
}
catch (e) {
error_caught = true;
ASSERT_EQUAL(e, "Error during initializing tool")
}
local error_caught = false
try {
ASSERT_EQUAL(command_x(tool_build_depot).work(pl, coord3d(0, 0, 0), ""), "")
}
catch (e) {
error_caught = true;
ASSERT_EQUAL(e, "Error during initializing tool")
}
local error_caught = false
try {
ASSERT_EQUAL(command_x(tool_build_depot).work(pl, coord3d(0, 0, 0), "nonexistent"), "")
}
catch (e) {
error_caught = true;
ASSERT_EQUAL(e, "Error during initializing tool")
}
}
// build as public player
{
local error_caught = false
try {
command_x.build_depot(public_pl, coord3d(0, 0, 0), get_depot_by_wt(wt_road))
}
catch (e) {
error_caught = true;
ASSERT_EQUAL(e, "Error during initializing tool")
}
ASSERT_TRUE(error_caught)
ASSERT_EQUAL(depot_x.get_depot_list(pl, wt_road).len(), 0)
}
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_build_invalid_pos()
{
local pl = player_x(0)
local public_pl = player_x(1)
local road_depot = get_depot_by_wt(wt_road)
local hangar = get_depot_by_wt(wt_air)
local shipyard = get_depot_by_wt(wt_water)
local runway_desc = way_desc_x.get_available_ways(wt_air, st_elevated)[0]
local station_desc = building_desc_x.get_available_stations(building_desc_x.station, wt_road, good_desc_x.passenger)[0]
local road_descs = way_desc_x.get_available_ways(wt_road, st_flat)
local rail_descs = way_desc_x.get_available_ways(wt_rail, st_flat)
road_descs.sort(@(a, b) a.get_topspeed() <=> b.get_topspeed())
rail_descs.sort(@(a, b) a.get_topspeed() <=> b.get_topspeed())
local road_desc = road_descs[0]
local rail_desc = rail_descs[0]
ASSERT_TRUE(runway_desc != null)
ASSERT_TRUE(road_desc != null)
ASSERT_TRUE(rail_desc != null)
// invalid pos
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(-1, -1, 0), road_depot), "")
}
// no shipyards on land
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), shipyard), "Cannot built depot here!")
}
// no land depots on water
{
ASSERT_EQUAL(command_x(tool_set_climate).work(pl, coord3d(4, 2, 0), coord3d(4, 2, 0), "" + cl_water), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), hangar), "Cannot built depot here!")
ASSERT_EQUAL(command_x(tool_set_climate).work(pl, coord3d(4, 2, 0), coord3d(4, 2, 0), "" + cl_mediterran), null)
}
// no hangars on runways
{
ASSERT_EQUAL(command_x.build_way(pl, coord3d(5, 5, 0), coord3d(5, 7, 0), runway_desc, true), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(5, 5, 0), hangar), "Cannot built depot here!")
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(5, 5, 0), coord3d(5, 7, 0), "" + wt_air), null)
}
ASSERT_EQUAL(command_x.build_way(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), road_desc, true), null)
// no depot in the middle of a road
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 3, 0), road_depot), "Cannot built depot here!")
}
// no depot over a stop
{
ASSERT_EQUAL(command_x.build_station(pl, coord3d(4, 2, 0), station_desc, 0), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), road_depot), "Cannot built depot here!")
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 2, 0)), null)
}
// do not replace existing depots
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), road_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), road_depot), "Cannot built depot here!")
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 2, 0)), null)
}
ASSERT_EQUAL(command_x.build_way(pl, coord3d(3, 3, 0), coord3d(5, 3, 0), road_desc, true), null)
// no depot on road-road crossings
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 3, 0), road_depot), "Cannot built depot here!")
}
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(3, 3, 0), coord3d(5, 3, 0), "" + wt_road), null)
ASSERT_EQUAL(command_x.build_way(pl, coord3d(3, 3, 0), coord3d(5, 3, 0), rail_desc, true), null)
// no depot on road-rail crossings
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 3, 0), road_depot), "Cannot built depot here!")
}
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(3, 3, 0), coord3d(5, 3, 0), "" + wt_rail), null)
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), "" + wt_road), null)
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_build_road()
{
local pl = player_x(0)
local public_pl = player_x(1)
local default_depot = get_depot_by_wt(wt_road)
local way_desc = way_desc_x.get_available_ways(wt_road, st_flat)[0]
// preconditions
ASSERT_TRUE(default_depot != null)
ASSERT_EQUAL(depot_x.get_depot_list(pl, wt_road).len(), 0)
ASSERT_TRUE(way_desc != null)
ASSERT_EQUAL(command_x.build_way(public_pl, coord3d(4, 2, 0), coord3d(4, 4, 0), way_desc, true), null)
ASSERT_EQUAL(command_x.build_way(public_pl, coord3d(3, 3, 0), coord3d(5, 3, 0), way_desc, true), null)
// build depot as normal player, all 4 directions
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(5, 3, 0), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 4, 0), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(3, 3, 0), default_depot), null)
ASSERT_EQUAL(depot_x.get_depot_list(player_x(0), wt_road).len(), 4)
ASSERT_TRUE(depot_x(4, 2, 0).is_valid())
ASSERT_TRUE(depot_x(5, 3, 0).is_valid())
ASSERT_TRUE(depot_x(4, 4, 0).is_valid())
ASSERT_TRUE(depot_x(3, 3, 0).is_valid())
}
// clean up
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 2, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(5, 3, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 4, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(3, 3, 0)), null)
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), "" + wt_road), null)
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(3, 3, 0), coord3d(5, 3, 0), "" + wt_road), null)
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_build_road_on_tram_crossing()
{
local pl = player_x(0)
local public_pl = player_x(1)
local default_depot = get_depot_by_wt(wt_road)
local way_desc = way_desc_x.get_available_ways(wt_road, st_flat)[0]
local tramtrack = way_desc_x.get_available_ways(wt_rail, st_tram)[0]
ASSERT_EQUAL(command_x.build_way(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), way_desc, true), null)
ASSERT_EQUAL(command_x.build_way(pl, coord3d(3, 2, 0), coord3d(4, 2, 0), tramtrack, true), null)
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), default_depot), "Cannot built depot here!")
}
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), "" + wt_road), null)
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(3, 2, 0), coord3d(4, 2, 0), "" + wt_rail), null)
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_build_water()
{
local pl = player_x(0)
local public_pl = player_x(1)
local default_depot = get_depot_by_wt(wt_water)
// preconditions
ASSERT_TRUE(default_depot != null)
ASSERT_EQUAL(depot_x.get_depot_list(pl, wt_water).len(), 0)
ASSERT_EQUAL(command_x(tool_set_climate).work(pl, coord3d(4, 2, 0), coord3d(4, 2, 0), "" + cl_water), null)
// build depot as normal player
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), default_depot), null)
ASSERT_EQUAL(depot_x.get_depot_list(player_x(0), wt_water).len(), 1)
ASSERT_TRUE(depot_x(4, 2, 0).is_valid())
}
// clean up
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 2, 0)), null)
ASSERT_EQUAL(command_x(tool_set_climate).work(pl, coord3d(4, 2, 0), coord3d(4, 2, 0), "" + cl_mediterran), null)
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_build_monorail()
{
local pl = player_x(0)
local public_pl = player_x(1)
local default_depot = get_depot_by_wt(wt_monorail)
local way_desc = way_desc_x.get_available_ways(wt_monorail, st_flat)[0]
local elevated_monorail = way_desc_x.get_available_ways(wt_monorail, st_elevated)[0]
// preconditions
ASSERT_TRUE(default_depot != null)
ASSERT_EQUAL(depot_x.get_depot_list(pl, wt_monorail).len(), 0)
ASSERT_TRUE(way_desc != null)
ASSERT_EQUAL(command_x.build_way(public_pl, coord3d(4, 2, 0), coord3d(4, 4, 0), way_desc, true), null)
ASSERT_EQUAL(command_x.build_way(public_pl, coord3d(3, 3, 0), coord3d(5, 3, 0), way_desc, true), null)
// build depot as normal player, all 4 directions
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(5, 3, 0), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 4, 0), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(3, 3, 0), default_depot), null)
ASSERT_EQUAL(depot_x.get_depot_list(player_x(0), wt_monorail).len(), 4)
ASSERT_TRUE(depot_x(4, 2, 0).is_valid())
ASSERT_TRUE(depot_x(5, 3, 0).is_valid())
ASSERT_TRUE(depot_x(4, 4, 0).is_valid())
ASSERT_TRUE(depot_x(3, 3, 0).is_valid())
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 2, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(5, 3, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 4, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(3, 3, 0)), null)
}
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), "" + wt_monorail), null)
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(3, 3, 0), coord3d(5, 3, 0), "" + wt_monorail), null)
ASSERT_EQUAL(command_x.build_way(public_pl, coord3d(4, 2, 0), coord3d(4, 4, 0), elevated_monorail, true), null)
ASSERT_EQUAL(command_x.build_way(public_pl, coord3d(3, 3, 0), coord3d(5, 3, 0), elevated_monorail, true), null)
// build elevated monorail depot, with foundation, all 4 directions
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 1), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(5, 3, 1), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 4, 1), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(3, 3, 1), default_depot), null)
ASSERT_EQUAL(depot_x.get_depot_list(player_x(0), wt_monorail).len(), 4)
ASSERT_TRUE(depot_x(4, 2, 1).is_valid())
ASSERT_TRUE(depot_x(5, 3, 1).is_valid())
ASSERT_TRUE(depot_x(4, 4, 1).is_valid())
ASSERT_TRUE(depot_x(3, 3, 1).is_valid())
ASSERT_FALSE(square_x(4, 2).get_tile_at_height(0).is_empty())
ASSERT_FALSE(square_x(5, 3).get_tile_at_height(0).is_empty())
ASSERT_FALSE(square_x(4, 4).get_tile_at_height(0).is_empty())
ASSERT_FALSE(square_x(3, 3).get_tile_at_height(0).is_empty())
// This leaves behind the depot foundations
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 2, 1)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(5, 3, 1)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 4, 1)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(3, 3, 1)), null)
}
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(4, 2, 1), coord3d(4, 4, 1), "" + wt_monorail), null)
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(3, 3, 1), coord3d(5, 3, 1), "" + wt_monorail), null)
ASSERT_FALSE(square_x(4, 2).get_tile_at_height(0).is_empty())
ASSERT_FALSE(square_x(5, 3).get_tile_at_height(0).is_empty())
ASSERT_FALSE(square_x(4, 4).get_tile_at_height(0).is_empty())
ASSERT_FALSE(square_x(3, 3).get_tile_at_height(0).is_empty())
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 2, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(5, 3, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 4, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(3, 3, 0)), null)
// clean up
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_build_tram()
{
local pl = player_x(0)
local public_pl = player_x(1)
local default_depot = get_depot_by_wt(wt_tram)
local way_desc = way_desc_x.get_available_ways(wt_rail, st_tram)[0]
// preconditions
ASSERT_TRUE(default_depot != null)
ASSERT_EQUAL(depot_x.get_depot_list(pl, wt_tram).len(), 0)
ASSERT_TRUE(way_desc != null)
ASSERT_EQUAL(command_x.build_way(public_pl, coord3d(4, 2, 0), coord3d(4, 4, 0), way_desc, true), null)
ASSERT_EQUAL(command_x.build_way(public_pl, coord3d(3, 3, 0), coord3d(5, 3, 0), way_desc, true), null)
// build depot as normal player, all 4 directions
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(5, 3, 0), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 4, 0), default_depot), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(3, 3, 0), default_depot), null)
ASSERT_EQUAL(depot_x.get_depot_list(player_x(0), wt_tram).len(), 4)
ASSERT_TRUE(depot_x(4, 2, 0).is_valid())
ASSERT_TRUE(depot_x(5, 3, 0).is_valid())
ASSERT_TRUE(depot_x(4, 4, 0).is_valid())
ASSERT_TRUE(depot_x(3, 3, 0).is_valid())
}
// clean up
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 2, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(5, 3, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 4, 0)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(3, 3, 0)), null)
// note: wt_tram does not work
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), "" + wt_rail), null)
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(3, 3, 0), coord3d(5, 3, 0), "" + wt_rail), null)
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_build_sloped()
{
local pl = player_x(0)
local setslope = command_x(tool_setslope)
local road = way_desc_x.get_available_ways(wt_road, st_flat)[0]
local wayremover = command_x(tool_remove_way)
local pos = coord3d(4, 3, 0)
{
for (local sl = slope.flat+1; sl < slope.raised; ++sl) {
ASSERT_EQUAL(setslope.work(pl, pos, "" + sl), null)
local d = slope.to_dir(sl)
if (d != dir.none) { // only consider slopes we can build roads on
RESET_ALL_PLAYER_FUNDS()
local c = dir.to_coord(dir.backward(d))
local adjacent = pos + coord3d(c.x, c.y, 0)
ASSERT_EQUAL(command_x.build_way(pl, adjacent, pos, road, true), null)
local old_maintenance = pl.get_current_maintenance()
ASSERT_EQUAL(command_x.build_depot(pl, pos, get_depot_by_wt(wt_road)), "Cannot built depot here!") // sic!
ASSERT_EQUAL(pl.get_current_maintenance(), old_maintenance)
ASSERT_EQUAL(tile_x(pos.x, pos.y, pos.z).find_object(mo_building), null)
ASSERT_EQUAL(wayremover.work(pl, pos, adjacent, "" + wt_road), null)
}
}
}
// clean up
ASSERT_EQUAL(setslope.work(pl, pos, "" + slope.flat), null)
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_build_on_tunnel_entrance()
{
local pl = player_x(0)
local rail_tunnel = tunnel_desc_x.get_available_tunnels(wt_rail)[0]
local raise = command_x(tool_raise_land)
local lower = command_x(tool_lower_land)
ASSERT_EQUAL(raise.work(pl, coord3d(4, 2, 0)), null)
ASSERT_EQUAL(raise.work(pl, coord3d(4, 3, 0)), null)
ASSERT_EQUAL(raise.work(pl, coord3d(5, 2, 0)), null)
ASSERT_EQUAL(raise.work(pl, coord3d(5, 3, 0)), null)
ASSERT_EQUAL(command_x(tool_build_tunnel).work(pl, coord3d(4, 1, 0), rail_tunnel.get_name()), null)
ASSERT_EQUAL(command_x(tool_build_tunnel).work(pl, coord3d(3, 2, 0), rail_tunnel.get_name()), null)
ASSERT_EQUAL(command_x(tool_build_tunnel).work(pl, coord3d(5, 2, 0), rail_tunnel.get_name()), null)
// Building depots on tunnel entrance works (contrary to stations)
{
for (local d = dir.north; d < dir.all; d = d*2) {
local p = coord3d(4, 2, 0) + dir.to_coord(d)
ASSERT_EQUAL(command_x.build_depot(pl, p, get_depot_by_wt(wt_rail)), null)
}
}
local remover = command_x(tool_remover)
remover.set_flags(2)
ASSERT_EQUAL(remover.work(pl, coord3d(4, 1, 0)), null)
ASSERT_EQUAL(remover.work(pl, coord3d(4, 1, 0)), null)
ASSERT_EQUAL(remover.work(pl, coord3d(5, 2, 0)), null)
ASSERT_EQUAL(remover.work(pl, coord3d(4, 3, 0)), null)
ASSERT_EQUAL(remover.work(pl, coord3d(3, 2, 0)), null)
ASSERT_EQUAL(lower.work(pl, coord3d(4, 2, 0)), null)
ASSERT_EQUAL(lower.work(pl, coord3d(4, 3, 0)), null)
ASSERT_EQUAL(lower.work(pl, coord3d(5, 2, 0)), null)
ASSERT_EQUAL(lower.work(pl, coord3d(5, 3, 0)), null)
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_build_on_bridge_end()
{
local pl = player_x(0)
local rail_bridge = bridge_desc_x.get_available_bridges(wt_rail)[0]
local setslope = command_x(tool_setslope)
// north-south direction
{
ASSERT_EQUAL(setslope.work(pl, coord3d(4, 2, 0), "" + slope.south), null)
ASSERT_EQUAL(setslope.work(pl, coord3d(4, 4, 0), "" + slope.north), null)
ASSERT_EQUAL(command_x(tool_build_bridge).work(pl, coord3d(4, 2, 0), rail_bridge.get_name()), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), get_depot_by_wt(wt_rail)), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 4, 0), get_depot_by_wt(wt_rail)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 2, 0)), null)
ASSERT_EQUAL(setslope.work(pl, coord3d(4, 2, 0), "" + slope.flat), null)
ASSERT_EQUAL(setslope.work(pl, coord3d(4, 4, 0), "" + slope.flat), null)
}
// east-west direction
{
ASSERT_EQUAL(setslope.work(pl, coord3d(3, 3, 0), "" + slope.east), null)
ASSERT_EQUAL(setslope.work(pl, coord3d(5, 3, 0), "" + slope.west), null)
ASSERT_EQUAL(command_x(tool_build_bridge).work(pl, coord3d(3, 3, 0), rail_bridge.get_name()), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(3, 3, 0), get_depot_by_wt(wt_rail)), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(5, 3, 0), get_depot_by_wt(wt_rail)), null)
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(3, 3, 0)), null)
ASSERT_EQUAL(setslope.work(pl, coord3d(3, 3, 0), "" + slope.flat), null)
ASSERT_EQUAL(setslope.work(pl, coord3d(5, 3, 0), "" + slope.flat), null)
}
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_build_on_halt()
{
local pl = player_x(0)
local rail_desc = way_desc_x.get_available_ways(wt_rail, st_flat)[0]
local station_desc = building_desc_x.get_available_stations(building_desc_x.station, wt_rail, good_desc_x.passenger)[0]
local depot = get_depot_by_wt(wt_rail)
ASSERT_EQUAL(command_x.build_way(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), rail_desc, true), null)
ASSERT_EQUAL(command_x.build_station(pl, coord3d(4, 2, 0), station_desc), null)
{
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), depot), "Cannot built depot here!")
}
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), "" + wt_rail), null)
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_convoy_add_normal()
{
// build depot
local pl = player_x(0)
local public_pl = player_x(1)
local way_desc = way_desc_x.get_available_ways(wt_road, st_flat)[0]
ASSERT_EQUAL(command_x.build_way(public_pl, coord3d(0, 0, 0), coord3d(0, 1, 0), way_desc, true), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(0, 0, 0), get_depot_by_wt(wt_road)), null)
ASSERT_EQUAL(depot_x.get_depot_list(pl, wt_road).len(), 1)
local the_depot = depot_x.get_depot_list(pl, wt_road)[0]
ASSERT_EQUAL(the_depot.get_convoy_list().len(), 0)
local vehicle_desc = vehicle_desc_x.get_available_vehicles(wt_road)[0]
ASSERT_TRUE(vehicle_desc != null)
{
ASSERT_TRUE(the_depot.append_vehicle(pl, convoy_x(0), vehicle_desc))
ASSERT_EQUAL(the_depot.get_convoy_list().len(), 1)
local cnv = the_depot.get_convoy_list()[0]
ASSERT_EQUAL(cnv.get_vehicles().len(), 1)
ASSERT_EQUAL(cnv.get_pos().tostring(), coord3d(0, 0, 0).tostring())
ASSERT_EQUAL(cnv.get_pos().tostring(), cnv.get_home_depot().tostring())
ASSERT_EQUAL(cnv.get_speed(), 0)
ASSERT_EQUAL(cnv.get_traveled_distance()[0], 0)
ASSERT_EQUAL(cnv.get_distance_traveled_total(), 0)
ASSERT_TRUE(cnv.is_in_depot())
ASSERT_FALSE(cnv.is_waiting())
ASSERT_EQUAL(cnv.get_line(), null)
ASSERT_TRUE(cnv.destroy(player_x(0)))
ASSERT_EQUAL(the_depot.get_convoy_list().len(), 0)
}
// clean up
local remover = command_x(tool_remover)
ASSERT_EQUAL(remover.work(player_x(1), tile_x(0, 0, 0)), null)
ASSERT_EQUAL(remover.work(player_x(1), tile_x(0, 0, 0)), null)
ASSERT_EQUAL(remover.work(player_x(1), tile_x(0, 1, 0)), null)
RESET_ALL_PLAYER_FUNDS()
}
function test_depot_convoy_add_nonelectrified()
{
local pl = player_x(0)
local way_desc = way_desc_x.get_available_ways(wt_rail, st_flat)[0]
local electro_loco = vehicle_desc_x.get_available_vehicles(wt_rail).filter(@(idx, v) ( v.needs_electrification() && v.can_be_first() ))[0]
ASSERT_EQUAL(command_x.build_way(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), way_desc, true), null)
ASSERT_EQUAL(command_x.build_depot(pl, coord3d(4, 2, 0), get_depot_by_wt(wt_rail)), null)
local the_depot = depot_x(4, 2, 0)
{
ASSERT_TRUE(the_depot.append_vehicle(pl, convoy_x(0), electro_loco)) // can add loco via script even if depot is not electrified
ASSERT_EQUAL(the_depot.get_convoy_list().len(), 1)
local cnv = the_depot.get_convoy_list()[0]
ASSERT_EQUAL(cnv.get_vehicles().len(), 1)
ASSERT_EQUAL(cnv.get_pos().tostring(), coord3d(4, 2, 0).tostring())
ASSERT_TRUE(cnv.destroy(pl))
}
ASSERT_EQUAL(command_x(tool_remover).work(pl, coord3d(4, 2, 0)), null)
ASSERT_EQUAL(command_x(tool_remove_way).work(pl, coord3d(4, 2, 0), coord3d(4, 4, 0), "" + wt_rail), null)
RESET_ALL_PLAYER_FUNDS()
}
| Squirrel | 4 | Andarix/simutrans_nightly | tests/tests/test_depot.nut | [
"Artistic-1.0"
] |
// (c) Copyright 1995-2019 Xilinx, Inc. All rights reserved.
//
// This file contains confidential and proprietary information
// of Xilinx, Inc. and is protected under U.S. and
// international copyright and other intellectual property
// laws.
//
// DISCLAIMER
// This disclaimer is not a license and does not grant any
// rights to the materials distributed herewith. Except as
// otherwise provided in a valid license issued to you by
// Xilinx, and to the maximum extent permitted by applicable
// law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND
// WITH ALL FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES
// AND CONDITIONS, EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
// BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, NON-
// INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE; and
// (2) Xilinx shall not be liable (whether in contract or tort,
// including negligence, or under any other theory of
// liability) for any loss or damage of any kind or nature
// related to, arising under or in connection with these
// materials, including for any direct, or any indirect,
// special, incidental, or consequential loss or damage
// (including loss of data, profits, goodwill, or any type of
// loss or damage suffered as a result of any action brought
// by a third party) even if such damage or loss was
// reasonably foreseeable or Xilinx had been advised of the
// possibility of the same.
//
// CRITICAL APPLICATIONS
// Xilinx products are not designed or intended to be fail-
// safe, or for use in any application requiring fail-safe
// performance, such as life-support or safety devices or
// systems, Class III medical devices, nuclear facilities,
// applications related to the deployment of airbags, or any
// other applications that could lead to death, personal
// injury, or severe property or environmental damage
// (individually and collectively, "Critical
// Applications"). Customer assumes the sole risk and
// liability of any use of Xilinx products in Critical
// Applications, subject only to applicable laws and
// regulations governing limitations on product liability.
//
// THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS
// PART OF THIS FILE AT ALL TIMES.
//
// DO NOT MODIFY THIS FILE.
// IP VLNV: xilinx.com:ip:axis_interconnect:1.1
// IP Revision: 16
// The following must be inserted into your Verilog file for this
// core to be instantiated. Change the instance name and port connections
// (in parentheses) to your own signal names.
//----------- Begin Cut here for INSTANTIATION Template ---// INST_TAG
axis_interconnect_3to1 your_instance_name (
.ACLK(ACLK), // input wire ACLK
.ARESETN(ARESETN), // input wire ARESETN
.S00_AXIS_ACLK(S00_AXIS_ACLK), // input wire S00_AXIS_ACLK
.S01_AXIS_ACLK(S01_AXIS_ACLK), // input wire S01_AXIS_ACLK
.S02_AXIS_ACLK(S02_AXIS_ACLK), // input wire S02_AXIS_ACLK
.S00_AXIS_ARESETN(S00_AXIS_ARESETN), // input wire S00_AXIS_ARESETN
.S01_AXIS_ARESETN(S01_AXIS_ARESETN), // input wire S01_AXIS_ARESETN
.S02_AXIS_ARESETN(S02_AXIS_ARESETN), // input wire S02_AXIS_ARESETN
.S00_AXIS_TVALID(S00_AXIS_TVALID), // input wire S00_AXIS_TVALID
.S01_AXIS_TVALID(S01_AXIS_TVALID), // input wire S01_AXIS_TVALID
.S02_AXIS_TVALID(S02_AXIS_TVALID), // input wire S02_AXIS_TVALID
.S00_AXIS_TREADY(S00_AXIS_TREADY), // output wire S00_AXIS_TREADY
.S01_AXIS_TREADY(S01_AXIS_TREADY), // output wire S01_AXIS_TREADY
.S02_AXIS_TREADY(S02_AXIS_TREADY), // output wire S02_AXIS_TREADY
.S00_AXIS_TDATA(S00_AXIS_TDATA), // input wire [63 : 0] S00_AXIS_TDATA
.S01_AXIS_TDATA(S01_AXIS_TDATA), // input wire [63 : 0] S01_AXIS_TDATA
.S02_AXIS_TDATA(S02_AXIS_TDATA), // input wire [63 : 0] S02_AXIS_TDATA
.S00_AXIS_TKEEP(S00_AXIS_TKEEP), // input wire [7 : 0] S00_AXIS_TKEEP
.S01_AXIS_TKEEP(S01_AXIS_TKEEP), // input wire [7 : 0] S01_AXIS_TKEEP
.S02_AXIS_TKEEP(S02_AXIS_TKEEP), // input wire [7 : 0] S02_AXIS_TKEEP
.S00_AXIS_TLAST(S00_AXIS_TLAST), // input wire S00_AXIS_TLAST
.S01_AXIS_TLAST(S01_AXIS_TLAST), // input wire S01_AXIS_TLAST
.S02_AXIS_TLAST(S02_AXIS_TLAST), // input wire S02_AXIS_TLAST
.M00_AXIS_ACLK(M00_AXIS_ACLK), // input wire M00_AXIS_ACLK
.M00_AXIS_ARESETN(M00_AXIS_ARESETN), // input wire M00_AXIS_ARESETN
.M00_AXIS_TVALID(M00_AXIS_TVALID), // output wire M00_AXIS_TVALID
.M00_AXIS_TREADY(M00_AXIS_TREADY), // input wire M00_AXIS_TREADY
.M00_AXIS_TDATA(M00_AXIS_TDATA), // output wire [63 : 0] M00_AXIS_TDATA
.M00_AXIS_TKEEP(M00_AXIS_TKEEP), // output wire [7 : 0] M00_AXIS_TKEEP
.M00_AXIS_TLAST(M00_AXIS_TLAST), // output wire M00_AXIS_TLAST
.S00_ARB_REQ_SUPPRESS(S00_ARB_REQ_SUPPRESS), // input wire S00_ARB_REQ_SUPPRESS
.S01_ARB_REQ_SUPPRESS(S01_ARB_REQ_SUPPRESS), // input wire S01_ARB_REQ_SUPPRESS
.S02_ARB_REQ_SUPPRESS(S02_ARB_REQ_SUPPRESS) // input wire S02_ARB_REQ_SUPPRESS
);
// INST_TAG_END ------ End INSTANTIATION Template ---------
// You must compile the wrapper file axis_interconnect_3to1.v when simulating
// the core, axis_interconnect_3to1. When compiling the wrapper file, be sure to
// reference the Verilog simulation library.
| Verilog | 4 | JKHHai/galapagos | shells/shell_ips/tcp/repo/tcp_ip_0/tcp_ip.srcs/sources_1/ip/axis_interconnect_3to1/axis_interconnect_3to1.veo | [
"MIT"
] |
[[documentation.first-steps]]
== First Steps
If you are getting started with Spring Boot or 'Spring' in general, start with <<getting-started#getting-started, the following topics>>:
* *From scratch:* <<getting-started#getting-started.introducing-spring-boot, Overview>> | <<getting-started#getting-started.system-requirements, Requirements>> | <<getting-started#getting-started.installing, Installation>>
* *Tutorial:* <<getting-started#getting-started.first-application, Part 1>> | <<getting-started#getting-started.first-application.code, Part 2>>
* *Running your example:* <<getting-started#getting-started.first-application.run, Part 1>> | <<getting-started#getting-started.first-application.executable-jar, Part 2>>
| AsciiDoc | 3 | techAi007/spring-boot | spring-boot-project/spring-boot-docs/src/docs/asciidoc/documentation/first-steps.adoc | [
"Apache-2.0"
] |
package DefaultValue ;
// Default Value package
// This package has been moved to the Prelude
endpackage
| Bluespec | 0 | sarman1998/vscode-verilog-hdl-support | syntaxes/bsc-lib/DefaultValue.bsv | [
"MIT"
] |
within ModelicaByExample.Subsystems.Pendula;
model Pendulum "A single individual pendulum"
import Modelica.Mechanics.MultiBody.Parts;
import Modelica.Mechanics.MultiBody.Joints;
parameter Modelica.SIunits.Position x;
parameter Modelica.SIunits.Mass m "Mass of mass point";
parameter Modelica.SIunits.Angle phi "Initial angle";
parameter Modelica.SIunits.Length L "String length";
parameter Modelica.SIunits.Diameter d=0.01;
Parts.Fixed ground(r={0,0,x}, animation=false)
annotation (Placement(
transformation(
extent={{-10,-10},{10,10}},
rotation=270, origin={0,60})));
Parts.PointMass ball(m=m, sphereDiameter=5*d)
annotation (Placement(transformation(extent={{-10,-90},{10,-70}})));
Parts.BodyCylinder string(density=0, r={0,L,0}, diameter=d)
annotation (Placement(transformation(
extent={{-10,-10},{10,10}},
rotation=90,
origin={0,-30})));
Joints.Revolute revolute(phi(fixed=true, start=phi),
cylinderDiameter=d/2, animation=false)
annotation (Placement(
transformation(
extent={{-10,-10},{10,10}},
rotation=90,
origin={0,20})));
equation
connect(string.frame_a, ball.frame_a) annotation (Line(
points={{0,-40},{0,-40},{0,-80}},
color={95,95,95},
thickness=0.5,
smooth=Smooth.None));
connect(revolute.frame_b, ground.frame_b) annotation (Line(
points={{0,30},{0,40},{0,40},{0,50}},
color={95,95,95},
thickness=0.5,
smooth=Smooth.None));
connect(revolute.frame_a, string.frame_b) annotation (Line(
points={{0,10},{0,10},{0,-20},{0,-20}},
color={95,95,95},
thickness=0.5,
smooth=Smooth.None));
end Pendulum;
| Modelica | 4 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/Modelica/Pendulum.mo | [
"MIT"
] |
body {
background-color: #333;
color: whitesmoke;
transition: all 0.5s;
} | CSS | 3 | Theo-Steiner/svelte | site/static/tutorial/dark-theme.css | [
"MIT"
] |
/* Copyright 2019 The TensorFlow 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.
==============================================================================*/
#include "absl/strings/str_cat.h"
#include "tensorflow/c/eager/c_api.h"
#include "tensorflow/c/eager/c_api_experimental.h"
#include "tensorflow/c/eager/c_api_internal.h"
#include "tensorflow/c/eager/c_api_remote_test_util.h"
#include "tensorflow/c/eager/c_api_test_util.h"
#include "tensorflow/c/eager/tfe_tensorhandle_internal.h"
#include "tensorflow/core/common_runtime/eager/eager_operation.h"
#include "tensorflow/core/common_runtime/function_optimization_registry.h"
#include "tensorflow/core/distributed_runtime/rpc/grpc_server_lib.h"
#include "tensorflow/core/framework/function.h"
#include "tensorflow/core/graph/graph.h"
#include "tensorflow/core/platform/casts.h"
#include "tensorflow/core/platform/errors.h"
#include "tensorflow/core/platform/protobuf.h"
#include "tensorflow/core/platform/test.h"
#include "tensorflow/core/protobuf/cluster.pb.h"
#include "tensorflow/core/protobuf/config.pb.h"
#include "tensorflow/core/protobuf/tensorflow_server.pb.h"
namespace {
using ::tensorflow::string;
void TestRemoteExecute(bool async) {
tensorflow::ServerDef server_def = GetServerDef(2);
// This server def has the task index set to 0.
string serialized = server_def.SerializeAsString();
server_def.set_task_index(1);
std::unique_ptr<tensorflow::GrpcServer> worker_server;
ASSERT_TRUE(tensorflow::GrpcServer::Create(
server_def, tensorflow::Env::Default(), &worker_server)
.ok());
ASSERT_TRUE(worker_server->Start().ok());
TF_Status* status = TF_NewStatus();
TFE_ContextOptions* opts = TFE_NewContextOptions();
TFE_ContextOptionsSetAsync(opts, static_cast<unsigned char>(async));
TFE_ContextOptionsSetDevicePlacementPolicy(opts,
TFE_DEVICE_PLACEMENT_EXPLICIT);
TFE_Context* ctx = TFE_NewContext(opts, status);
EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
TFE_DeleteContextOptions(opts);
TFE_ContextSetServerDef(ctx, 0, serialized.data(), serialized.size(), status);
EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
TFE_TensorHandle* h0_task0 = TestMatrixTensorHandle(ctx);
TFE_TensorHandle* h1_task0 = TestMatrixTensorHandle(ctx);
const char remote_device_name[] =
"/job:localhost/replica:0/task:1/device:CPU:0";
auto* h0_task1 =
TFE_TensorHandleCopyToDevice(h0_task0, ctx, remote_device_name, status);
ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
auto* h1_task1 =
TFE_TensorHandleCopyToDevice(h1_task0, ctx, remote_device_name, status);
ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
TFE_Op* matmul = MatMulOp(ctx, h0_task1, h1_task1);
TFE_OpSetDevice(matmul, remote_device_name, status);
EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
TFE_TensorHandle* retvals[1];
int num_retvals = 1;
TFE_Execute(matmul, &retvals[0], &num_retvals, status);
EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
TF_Tensor* t = TFE_TensorHandleResolve(retvals[0], status);
ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
float product[4] = {0};
EXPECT_EQ(sizeof(product), TF_TensorByteSize(t));
memcpy(&product[0], TF_TensorData(t), TF_TensorByteSize(t));
TF_DeleteTensor(t);
EXPECT_EQ(7, product[0]);
EXPECT_EQ(10, product[1]);
EXPECT_EQ(15, product[2]);
EXPECT_EQ(22, product[3]);
TFE_DeleteTensorHandle(h0_task0);
TFE_DeleteTensorHandle(h1_task0);
TFE_DeleteTensorHandle(h0_task1);
TFE_DeleteTensorHandle(h1_task1);
TFE_DeleteTensorHandle(retvals[0]);
TFE_DeleteOp(matmul);
TFE_Executor* executor = TFE_ContextGetExecutorForThread(ctx);
TFE_ExecutorWaitForAllPendingNodes(executor, status);
ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
TFE_DeleteExecutor(executor);
TFE_DeleteContext(ctx);
TF_DeleteStatus(status);
// TODO(b/136478427): Figure out how to correctly shut the server down.
worker_server.release();
}
TEST(CAPI, RemoteExecute) { TestRemoteExecute(false); }
TEST(CAPI, RemoteExecuteAsync) { TestRemoteExecute(true); }
void TestRemoteExecuteSilentCopiesOp(bool async, bool remote,
bool remote_func_outputs = false) {
return TestRemoteExecuteSilentCopies(async, remote, /*func=*/false,
/*heavy_load_on_streaming_rpc=*/false,
remote_func_outputs);
}
TEST(CAPI, RemoteExecuteSilentCopies) {
TestRemoteExecuteSilentCopiesOp(/*async=*/false, /*remote=*/true);
}
TEST(CAPI, RemoteExecuteSilentCopiesAsync) {
TestRemoteExecuteSilentCopiesOp(/*async=*/true, /*remote=*/true);
}
TEST(CAPI, RemoteExecuteSilentCopiesLocal) {
TestRemoteExecuteSilentCopiesOp(/*async=*/false, /*remote=*/false);
}
TEST(CAPI, RemoteExecuteSilentCopiesLocalAsync) {
TestRemoteExecuteSilentCopiesOp(/*async=*/true, /*remote=*/false);
}
} // namespace
| C++ | 4 | EricRemmerswaal/tensorflow | tensorflow/c/eager/c_api_remote_test.cc | [
"Apache-2.0"
] |
{
"version" : "v1_0_21",
"payload" : {
"payloadName" : "SubscribePayload",
"payloadClass" : "ru.fix.completable.reactor.example.chain.SubscribePayload",
"payloadDoc" : [ ]
},
"startPoint" : {
"coordinates" : {
"x" : 680,
"y" : 60
},
"coordinatesSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 297
},
"builderPayloadSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 267
},
"processingItems" : [ {
"type" : "PROCESSOR",
"className" : "ServiceInfoProcessor",
"name" : "gSubscribeServiceInfo"
}, {
"type" : "PROCESSOR",
"className" : "UserProfileService",
"name" : "gUserProfile"
} ]
},
"processors" : [ {
"identity" : {
"type" : "PROCESSOR",
"className" : "BankProcessor",
"name" : "gBankSubsribe"
},
"coordinates" : {
"x" : 410,
"y" : 440
},
"coordinatesSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 298
},
"processorDoc" : [ "Withdraw money from Bank account ", "for given user." ],
"handlerTitle" : "withdrawMoney",
"handlerDoc" : [ "Withdraw money from account and print it to stdout", "If there is no money on account no withdrawing would be applied", "so account balance will always stay positive." ],
"withHandlerSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 126
}
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "NotificationProcessor",
"name" : "gNotification"
},
"coordinates" : {
"x" : 889,
"y" : 465
},
"coordinatesSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 299
},
"processorDoc" : [ "Send notifications to external system", "Notification about events like purchase.", "We do not need to wait result of notification action for building correct response.", "So we attach notification completable future to async task manager and continue without waiting for its result" ],
"handlerTitle" : "sendPurchaseNotification",
"handlerDoc" : [ "Send notification about purchase event" ],
"withHandlerSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 87
}
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "ServiceInfoProcessor",
"name" : "gSubscribeServiceInfo"
},
"coordinates" : {
"x" : 480,
"y" : 120
},
"coordinatesSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 300
},
"processorDoc" : [ "Service information processor load data for given service from database.", "Service could be not active. In that case purchase request will be denied." ],
"handlerTitle" : "loadServiceInformation",
"handlerDoc" : [ "Load service information from database." ],
"withHandlerSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 227
}
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "TransactionLogProcessor",
"name" : "gTxLog"
},
"coordinates" : {
"x" : 420,
"y" : 650
},
"coordinatesSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 301
},
"processorDoc" : [ "Store information about transactions.", "Each transaction have user id and money amount" ],
"handlerTitle" : "logTransactioin",
"handlerDoc" : null,
"withHandlerSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 70
}
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "UserLogProcessor",
"name" : "gUserLog"
},
"coordinates" : {
"x" : 680,
"y" : 820
},
"coordinatesSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 302
},
"processorDoc" : [ "Logs information about usres actions.", "Log contains user id" ],
"handlerTitle" : "logAction",
"handlerDoc" : null,
"withHandlerSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 79
}
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "UserProfileService",
"name" : "gUserProfile"
},
"coordinates" : {
"x" : 770,
"y" : 120
},
"coordinatesSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 303
},
"processorDoc" : [ "UserProfileServices loads information about user from remote database.", "User profile contains information whether user is blocked or not." ],
"handlerTitle" : "loadUserProfileById",
"handlerDoc" : [ "Load user profile from database by user id." ],
"withHandlerSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 43
}
} ],
"subgraphs" : [ ],
"mergePoints" : [ {
"identity" : {
"type" : "PROCESSOR",
"className" : "UserProfileService",
"name" : "gUserProfile"
},
"coordinates" : {
"x" : 830,
"y" : 250
},
"coordinatesSource" : null,
"mergeSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 44
},
"mergerTitle" : "updateUserProfile",
"mergerDocs" : [ ],
"transitions" : [ {
"mergeStatuses" : [ "STOP" ],
"isOnAny" : false,
"isComplete" : true,
"mergeProcessingItem" : null,
"handleByProcessingItem" : null,
"completeCoordinates" : {
"x" : 920,
"y" : 300
},
"completeCoordinatesSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 312
},
"completeSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 272
},
"transitionsDoc" : [ {
"mergeStatus" : "STOP",
"docs" : [ "Stop processing" ]
} ],
"transitionOnAnySource" : null,
"transitionOnStatusSource" : {
"STOP" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 272
}
},
"mergeStatusSources" : {
"STOP" : {
"className" : "ru.fix.completable.reactor.example.MergeStatus",
"fileName" : null,
"fileNameLine" : null
}
},
"complete" : true,
"onAny" : false
}, {
"mergeStatuses" : [ "CONTINUE" ],
"isOnAny" : false,
"isComplete" : false,
"mergeProcessingItem" : {
"type" : "PROCESSOR",
"className" : "ServiceInfoProcessor",
"name" : "gSubscribeServiceInfo"
},
"handleByProcessingItem" : null,
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : null,
"transitionsDoc" : [ {
"mergeStatus" : "CONTINUE",
"docs" : [ "Continue processing" ]
} ],
"transitionOnAnySource" : null,
"transitionOnStatusSource" : {
"CONTINUE" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 273
}
},
"mergeStatusSources" : {
"CONTINUE" : {
"className" : "ru.fix.completable.reactor.example.MergeStatus",
"fileName" : null,
"fileNameLine" : null
}
},
"complete" : false,
"onAny" : false
} ]
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "ServiceInfoProcessor",
"name" : "gSubscribeServiceInfo"
},
"coordinates" : {
"x" : 640,
"y" : 280
},
"coordinatesSource" : null,
"mergeSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 228
},
"mergerTitle" : "updateServiceInfo",
"mergerDocs" : [ ],
"transitions" : [ {
"mergeStatuses" : [ "CONTINUE" ],
"isOnAny" : false,
"isComplete" : false,
"mergeProcessingItem" : {
"type" : "MERGE_POINT",
"className" : null,
"name" : "trialPeriodCheck"
},
"handleByProcessingItem" : null,
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : null,
"transitionsDoc" : [ {
"mergeStatus" : "CONTINUE",
"docs" : [ "Continue processing" ]
} ],
"transitionOnAnySource" : null,
"transitionOnStatusSource" : {
"CONTINUE" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 276
}
},
"mergeStatusSources" : {
"CONTINUE" : {
"className" : "ru.fix.completable.reactor.example.MergeStatus",
"fileName" : null,
"fileNameLine" : null
}
},
"complete" : false,
"onAny" : false
}, {
"mergeStatuses" : [ "STOP" ],
"isOnAny" : false,
"isComplete" : true,
"mergeProcessingItem" : null,
"handleByProcessingItem" : null,
"completeCoordinates" : {
"x" : 480,
"y" : 310
},
"completeCoordinatesSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 310
},
"completeSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 277
},
"transitionsDoc" : [ {
"mergeStatus" : "STOP",
"docs" : [ "Stop processing" ]
} ],
"transitionOnAnySource" : null,
"transitionOnStatusSource" : {
"STOP" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 277
}
},
"mergeStatusSources" : {
"STOP" : {
"className" : "ru.fix.completable.reactor.example.MergeStatus",
"fileName" : null,
"fileNameLine" : null
}
},
"complete" : true,
"onAny" : false
} ]
}, {
"identity" : {
"type" : "MERGE_POINT",
"className" : null,
"name" : "trialPeriodCheck"
},
"coordinates" : {
"x" : 702,
"y" : 363
},
"coordinatesSource" : null,
"mergeSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 253
},
"mergerTitle" : "checkTrialPeriod",
"mergerDocs" : [ "Checks whether service supports trial period" ],
"transitions" : [ {
"mergeStatuses" : [ "WITHDRAWAL" ],
"isOnAny" : false,
"isComplete" : false,
"mergeProcessingItem" : null,
"handleByProcessingItem" : {
"type" : "PROCESSOR",
"className" : "BankProcessor",
"name" : "gBankSubsribe"
},
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : null,
"transitionsDoc" : [ {
"mergeStatus" : "WITHDRAWAL",
"docs" : [ "Withdraw money required" ]
} ],
"transitionOnAnySource" : null,
"transitionOnStatusSource" : {
"WITHDRAWAL" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 280
}
},
"mergeStatusSources" : {
"WITHDRAWAL" : {
"className" : "ru.fix.completable.reactor.example.MergeStatus",
"fileName" : null,
"fileNameLine" : null
}
},
"complete" : false,
"onAny" : false
}, {
"mergeStatuses" : [ "NO_WITHDRAWAL" ],
"isOnAny" : false,
"isComplete" : false,
"mergeProcessingItem" : null,
"handleByProcessingItem" : {
"type" : "PROCESSOR",
"className" : "UserLogProcessor",
"name" : "gUserLog"
},
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : null,
"transitionsDoc" : [ {
"mergeStatus" : "NO_WITHDRAWAL",
"docs" : [ "No withdrawal required" ]
} ],
"transitionOnAnySource" : null,
"transitionOnStatusSource" : {
"NO_WITHDRAWAL" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 281
}
},
"mergeStatusSources" : {
"NO_WITHDRAWAL" : {
"className" : "ru.fix.completable.reactor.example.MergeStatus",
"fileName" : null,
"fileNameLine" : null
}
},
"complete" : false,
"onAny" : false
}, {
"mergeStatuses" : [ "NO_WITHDRAWAL" ],
"isOnAny" : false,
"isComplete" : false,
"mergeProcessingItem" : null,
"handleByProcessingItem" : {
"type" : "PROCESSOR",
"className" : "NotificationProcessor",
"name" : "gNotification"
},
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : null,
"transitionsDoc" : [ {
"mergeStatus" : "NO_WITHDRAWAL",
"docs" : [ "No withdrawal required" ]
} ],
"transitionOnAnySource" : null,
"transitionOnStatusSource" : {
"NO_WITHDRAWAL" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 282
}
},
"mergeStatusSources" : {
"NO_WITHDRAWAL" : {
"className" : "ru.fix.completable.reactor.example.MergeStatus",
"fileName" : null,
"fileNameLine" : null
}
},
"complete" : false,
"onAny" : false
} ]
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "BankProcessor",
"name" : "gBankSubsribe"
},
"coordinates" : {
"x" : 480,
"y" : 550
},
"coordinatesSource" : null,
"mergeSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 127
},
"mergerTitle" : "updateNewAmount",
"mergerDocs" : [ ],
"transitions" : [ {
"mergeStatuses" : [ ],
"isOnAny" : true,
"isComplete" : false,
"mergeProcessingItem" : null,
"handleByProcessingItem" : {
"type" : "PROCESSOR",
"className" : "TransactionLogProcessor",
"name" : "gTxLog"
},
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : null,
"transitionsDoc" : [ ],
"transitionOnAnySource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 285
},
"transitionOnStatusSource" : { },
"mergeStatusSources" : { },
"complete" : false,
"onAny" : true
} ]
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "TransactionLogProcessor",
"name" : "gTxLog"
},
"coordinates" : {
"x" : 530,
"y" : 770
},
"coordinatesSource" : null,
"mergeSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 71
},
"mergerTitle" : null,
"mergerDocs" : [ ],
"transitions" : [ {
"mergeStatuses" : [ ],
"isOnAny" : true,
"isComplete" : false,
"mergeProcessingItem" : null,
"handleByProcessingItem" : {
"type" : "PROCESSOR",
"className" : "UserLogProcessor",
"name" : "gUserLog"
},
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : null,
"transitionsDoc" : [ ],
"transitionOnAnySource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 289
},
"transitionOnStatusSource" : { },
"mergeStatusSources" : { },
"complete" : false,
"onAny" : true
} ]
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "UserLogProcessor",
"name" : "gUserLog"
},
"coordinates" : {
"x" : 760,
"y" : 930
},
"coordinatesSource" : null,
"mergeSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 80
},
"mergerTitle" : null,
"mergerDocs" : [ ],
"transitions" : [ {
"mergeStatuses" : [ ],
"isOnAny" : true,
"isComplete" : true,
"mergeProcessingItem" : null,
"handleByProcessingItem" : null,
"completeCoordinates" : {
"x" : 740,
"y" : 1020
},
"completeCoordinatesSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 311
},
"completeSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 294
},
"transitionsDoc" : [ ],
"transitionOnAnySource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 293
},
"transitionOnStatusSource" : { },
"mergeStatusSources" : { },
"complete" : true,
"onAny" : true
} ]
} ],
"serializationPointSource" : {
"className" : "ru.fix.completable.reactor.example.ConfigurationTest",
"fileName" : "ConfigurationTest.java",
"fileNameLine" : 29
},
"coordinatesSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 296
},
"buildGraphSource" : {
"className" : "ru.fix.completable.reactor.example.Configuration",
"fileName" : "Configuration.java",
"fileNameLine" : 314
}
} | Rouge | 5 | fix-ru/completable-reactor | completable-reactor-graph-viewer/src/test/resources/SubscribePayload.rg | [
"MIT"
] |
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/nw/src/browser/browser_view_layout.h"
#include "content/nw/src/common/shell_switches.h"
#include "base/logging.h"
using views::View;
namespace nw {
BrowserViewLayout::BrowserViewLayout()
: menu_bar_(NULL), web_view_(NULL), tool_bar_(NULL)
{
}
BrowserViewLayout::~BrowserViewLayout() {}
void BrowserViewLayout::Layout(View* host) {
if (host->children().empty())
return;
int y = 0;
gfx::Size host_size = host->GetContentsBounds().size();
if (menu_bar_) {
menu_bar_->SetBounds(0, y, host_size.width(), kMenuHeight);
y += kMenuHeight;
}
if (tool_bar_) {
int height = tool_bar_->GetPreferredSize().height();
tool_bar_->SetBounds(0, y, host_size.width(), height);
y += height;
}
web_view_->SetBounds(0, y, host_size.width(), host_size.height() - y);
}
gfx::Size BrowserViewLayout::GetPreferredSize(const View* host) const {
if (host->children().empty())
return gfx::Size();
gfx::Rect rect(web_view_->GetPreferredSize());
rect.Inset(-host->GetInsets());
if (menu_bar_)
rect.Inset(0, 0, 0, -kMenuHeight);
if (tool_bar_)
rect.Inset(0, 0, 0, -tool_bar_->GetPreferredSize().height());
return rect.size();
}
int BrowserViewLayout::GetPreferredHeightForWidth(const View* host, int width) const {
if (host->children().empty())
return 0;
const gfx::Insets insets = host->GetInsets();
int ret = web_view_->GetHeightForWidth(width - insets.width()) +
insets.height();
if (menu_bar_)
ret += kMenuHeight;
if (tool_bar_)
ret += tool_bar_->GetHeightForWidth(width - insets.width());
return ret;
}
} // namespace views
| C++ | 4 | frank-dspeed/nw.js | src/browser/browser_view_layout.cc | [
"MIT"
] |
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
LastClass=CHostProcDlg
LastTemplate=CDialog
NewFileInclude1=#include "stdafx.h"
NewFileInclude2=#include "HostProc.h"
ClassCount=4
Class1=CHostProcApp
Class2=CHostProcDlg
Class3=CAboutDlg
ResourceCount=3
Resource1=IDD_ABOUTBOX
Resource2=IDR_MAINFRAME
Resource3=IDD_HOSTPROC_DIALOG
[CLS:CHostProcApp]
Type=0
HeaderFile=HostProc.h
ImplementationFile=HostProc.cpp
Filter=N
[CLS:CHostProcDlg]
Type=0
HeaderFile=HostProcDlg.h
ImplementationFile=HostProcDlg.cpp
Filter=D
[CLS:CAboutDlg]
Type=0
HeaderFile=HostProcDlg.h
ImplementationFile=HostProcDlg.cpp
Filter=D
[DLG:IDD_ABOUTBOX]
Type=1
Class=CAboutDlg
ControlCount=4
Control1=IDC_STATIC,static,1342177283
Control2=IDC_STATIC,static,1342308480
Control3=IDC_STATIC,static,1342308352
Control4=IDOK,button,1342373889
[DLG:IDD_HOSTPROC_DIALOG]
Type=1
Class=CHostProcDlg
ControlCount=3
Control1=IDOK,button,1342242817
Control2=IDCANCEL,button,1342242816
Control3=IDC_STATIC,static,1342308352
| Clarion | 2 | gxw1/review_the_national_post-graduate_entrance_examination | books_and_notes/professional_courses/Security/sources/extra_books/加密与解密第四版光盘资料/chap12/1.HostProc/HostProc.clw | [
"MIT"
] |
#!/bin/sh
gource -1920x1080 -c 4 -s 0.75 -b 000000 --colour-images --padding 1.2 --hide filenames,mouse,progress --bloom-multiplier 0.75 --bloom-intensity 1.5 --logo ccxt-logo-white.svg --highlight-users -o - | ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i - -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 gource.mp4 | Shell | 3 | ngugcx/ccxt | gource.sh | [
"MIT"
] |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
param(
[string] $SigningXmlPath = (Join-Path -Path $PSScriptRoot -ChildPath 'signing.xml'),
[switch] $SkipPwshExe
)
# Script for use in VSTS to update signing.xml
if ($SkipPwshExe) {
## This is required for fxdependent package as no .exe is generated.
$xmlContent = Get-Content $SigningXmlPath | Where-Object { $_ -notmatch '__INPATHROOT__\\pwsh.exe' }
} else {
## We skip the global tool shim assembly for regular builds.
$xmlContent = Get-Content $signingXmlPath | Where-Object { $_ -notmatch '__INPATHROOT__\\Microsoft.PowerShell.GlobalTool.Shim.dll' }
}
# Parse the signing xml
$signingXml = [xml] $xmlContent
# Get any variables to updating 'signType' in the XML
# Define a varabile named `<signTypeInXml>SignType' in VSTS to updating that signing type
# Example: $env:AuthenticodeSignType='newvalue'
# will cause all files with the 'Authenticode' signtype to be updated with the 'newvalue' signtype
$signTypes = @{}
Get-ChildItem -Path env:/*SignType | ForEach-Object -Process {
$signType = $_.Name.ToUpperInvariant().Replace('SIGNTYPE','')
Write-Host "Found SigningType $signType with value $($_.value)"
$signTypes[$signType] = $_.Value
}
# examine each job in the xml
$signingXml.SignConfigXML.job | ForEach-Object -Process {
# examine each file in the job
$_.file | ForEach-Object -Process {
# if the sign type is one of the variables we found, update it to the new value
$signType = $_.SignType.ToUpperInvariant()
if($signTypes.ContainsKey($signType))
{
$newSignType = $signTypes[$signType]
Write-Host "Updating $($_.src) to $newSignType"
$_.signType = $newSignType
}
}
}
$signingXml.Save($signingXmlPath)
| PowerShell | 4 | rdtechie/PowerShell | tools/releaseBuild/updateSigning.ps1 | [
"MIT"
] |
# Copyright (C) 2007-2012, Parrot Foundation.
=pod
=head1 DESCRIPTION
A tutorial lesson about Parrot's continuations.
=head1 CONTINUATIONS
Continuations are tricky and amazing things. Parrot uses continuations for
all sorts of things internally and you can use them too if you want. A
continuation is like a snapshot of the current execution environment.
If you invoke a continuation like a subroutine, it returns you to the
point where you created the continuation. Also, you can set the address
in the continuation to any label, so you can return to any arbitrary
point in your code that you want by invoking it.
=cut
.sub main :main
.local pmc cont
cont = new ['Continuation']
set_addr cont, continued
test_call(4, cont)
say "should never be printed"
continued:
say "continuation called"
.end
.sub test_call
.param pmc argument
.param pmc cont
print "got argument: "
say argument
cont()
.end
# Local Variables:
# mode: pir
# fill-column: 100
# End:
# vim: expandtab shiftwidth=4 ft=pir:
| Parrot Internal Representation | 4 | winnit-myself/Wifie | examples/tutorial/81_continuation.pir | [
"Artistic-2.0"
] |
function export.GetGlobalInfo()
return {
Version = { #{VER_MAJOR}, #{VER_MINOR}, #{VER_MICRO}, 0 },
MinFarVersion = #{MINFARVERSION},
Guid = win.Uuid("a745761d-42b5-4e67-83da-f07af367ae86"),
Title = "LuaFAR History",
Description = "History of commands, files and folders",
Author = "Shmuel Zeigerman",
}
end
| MAXScript | 4 | shmuz/far_plugins | plugins/luafarhistory/_globalinfo.lua.mcr | [
"MIT"
] |
TotalCommander:
global TCPath
global TCDir
global TCIni
global TCMarkIni
global ini
global TC64Bit
TCPath := ini.TotalCommander_Config.TCPath
TCIni := ini.TotalCommander_Config.TCIni
Splitpath, TCPath, , TCDir
TCMarkIni := TCDir "\TCMark.ini"
if (!FileExist(TCPath) || !FileExist(TCIni)) {
MsgBox, 请在配置文件中设置正确的 TotalCommander 地址
return
}
if (InStr(TCPath, "totalcmd64.exe")) {
TC64Bit := true
global TCListBox := "LCLListBox"
; 64 位的下方命令编辑框的 id 不固定,可能是 Edit1 或者 Edit2
global TCEdit := "Edit1"
global TInEdit := "Edit1"
global TCPanel1 := "Window1"
global TCPanel2 := "Window11"
global TCPathPanel := "Window8"
global TCPathPanelRight := "Window13"
} else {
; 左右面板
global TCListBox := "TMyListBox"
; 底下命令编辑框
global TCEdit := "Edit1"
; 重命名文件编辑框
global TInEdit := "TInEdit1"
; 纵向分隔
global TCPanel1 := "TPanel1"
; 横向分隔
global TCPanel2 := "TMyPanel8"
; 左地址栏
global TCPathPanel := "TPathPanel1"
; 右地址栏
global TCPathPanelRight := "TPathPanel2"
}
global Mark := []
global SaveMark := ini.TotalCommander_Config.SaveMark
if (SaveMark != 0) {
IniRead, all_marks, %TCMarkIni%, mark, ms
all_marks := StrReplace(all_marks, "ERROR", "")
if (all_marks != "") {
Mark["ms"] := all_marks
Loop, Parse, all_marks
{
IniRead, new_mark, %TCMarkIni%, mark, %A_LoopField%
Mark[A_LoopField] := new_mark
Menu, MarkMenu, Add, %new_mark%, AddMark
}
}
}
global NewFiles := []
Gosub, TCCommand
vim.Comment("<TC_NormalMode>", "返回正常模式")
vim.Comment("<TC_InsertMode>", "进入插入模式")
vim.Comment("<TC_ToggleTC>", "打开/激活TC")
vim.Comment("<TC_FocusTC>", "激活 TC")
vim.Comment("<TC_FocusTCCmd>", "激活 TC,并定位到命令行")
vim.Comment("<TC_AZHistory>", "a-z历史导航")
vim.Comment("<TC_DownSelect>", "向下选择")
vim.Comment("<TC_UpSelect>", "向上选择")
vim.Comment("<TC_Mark>", "标记功能")
vim.Comment("<TC_ForceDelete>", "强制删除")
vim.Comment("<TC_ListMark>", "显示标记")
vim.Comment("<TC_Toggle_50_100Percent>", "切换当前窗口显示状态 50% ~ 100%")
vim.Comment("<TC_Toggle_50_100Percent_V>", "切换当前(纵向)窗口显示状态 50% ~ 100%")
vim.Comment("<TC_WinMaxLeft>", "最大化左侧窗口")
vim.Comment("<TC_WinMaxRight>", "最大化右侧窗口")
vim.Comment("<TC_GoLastTab>", "切换到最后一个标签")
vim.Comment("<TC_CopyNameOnly>", "只复制文件名,不含扩展名")
vim.Comment("<TC_GotoLine>", "移动到 [count] 行,默认第一行")
vim.Comment("<TC_LastLine>", "移动到 [count] 行,默认最后一行")
vim.Comment("<TC_Half>", "移动到窗口中间行")
vim.Comment("<TC_CreateNewFile>", "从模板创建文件")
vim.Comment("<TC_GoToParentEx>", "返回到上层文件夹,可返回到我的电脑")
vim.Comment("<TC_AlwayOnTop>", "设置 TC 顶置")
vim.Comment("<TC_OpenDriveThis>", "打开驱动器列表:本侧")
vim.Comment("<TC_OpenDriveThat>", "打开驱动器列表:另侧")
vim.Comment("<TC_MoveDirectoryHotlist>", "移动到常用文件夹")
vim.Comment("<TC_CopyDirectoryHotlist>", "复制到常用文件夹")
vim.Comment("<TC_GotoPreviousDirOther>", "后退另一侧")
vim.Comment("<TC_GotoNextDirOther>", "前进另一侧")
vim.Comment("<TC_SearchMode>", "连续搜索")
vim.Comment("<TC_CopyUseQueues>", "无需确认,使用队列拷贝文件至另一窗口")
vim.Comment("<TC_MoveUseQueues>", "无需确认,使用队列移动文件至另一窗口")
vim.Comment("<TC_ViewFileUnderCursor>", "使用查看器打开光标所在文件(shift + f3)")
vim.Comment("<TC_OpenWithAlternateViewer>", "使用外部查看器打开(alt + f3)")
vim.Comment("<TC_ToggleShowInfo>", "显示/隐藏: 按键提示")
vim.Comment("<TC_ToggleMenu>", "显示/隐藏: 菜单栏")
vim.Comment("<TC_SuperReturn>", "同回车键,但定位到第一个文件")
vim.Comment("<TC_FileCopyForBak>", "将当前光标下的文件复制一份作为作为备份")
vim.Comment("<TC_FileMoveForBak>", "将当前光标下的文件重命名为备份")
vim.Comment("<TC_MultiFilePersistOpen>", "多个文件一次性连续打开")
vim.Comment("<TC_CopyFileContents>", "不打开文件就复制文件内容")
vim.Comment("<TC_OpenDirAndPaste>", "不打开目录,直接把复制的文件贴进去")
vim.Comment("<TC_MoveSelectedFilesToPrevFolder>", "将当前文件夹下的选定文件移动到上层目录中")
vim.Comment("<TC_MoveAllFilesToPrevFolder>", "将当前文件夹下的全部文件移动到上层目录中")
vim.Comment("<TC_SrcQuickViewAndTab>", "预览文件时,光标自动移到对侧窗口里")
vim.Comment("<TC_CreateFileShortcut>", "创建当前光标下文件的快捷方式")
vim.Comment("<TC_CreateFileShortcutToDesktop>", "创建当前光标下文件的快捷方式并发送到桌面")
vim.Comment("<TC_CreateFileShortcutToStartup>", "创建当前光标下文件的快捷方式并发送到启动文件里")
vim.Comment("<TC_FilterSearchFNsuffix_exe>", "在当前目录里快速过滤 exe 扩展名的文件")
vim.Comment("<TC_TwoFileExchangeName>", "两个文件互换文件名")
vim.Comment("<TC_SelectCmd>", "选择命令来执行")
vim.Comment("<TC_MarkFile>", "标记文件,将文件注释改成m")
vim.Comment("<TC_UnMarkFile>", "取消文件标记,将文件注释清空")
vim.Comment("<TC_ClearTitle>", "将 TC 标题栏字符串设置为空")
vim.Comment("<TC_ReOpenTab>", "重新打开之前关闭的标签页")
vim.Comment("<TC_OpenDirsInFile>", "将光标所在的文件内容中的文件夹在新标签页依次打开")
vim.Comment("<TC_CreateBlankFile>", "创建空文件")
vim.Comment("<TC_CreateBlankFileNoExt>", "创建无扩展名空文件")
vim.Comment("<TC_PasteFileEx>", "粘贴文件,如果光标下为目录则粘贴进该目录")
vim.Comment("<TC_ThumbsView>", "缩略图试图,并且修改 h 和 l 为方向键")
vim.Comment("<TC_Restart>", "重启 TC")
vim.Comment("<TC_PreviousParallelDir>", "切换到上一个同级目录")
vim.Comment("<TC_NextParallelDir>", "切换到下一个同级目录")
vim.SetWin("TCQuickSearch", "TQUICKSEARCH")
vim.Mode("normal", "TCQuickSearch")
vim.Map("J", "<Down>", "TCQuickSearch")
vim.Map("K", "<Up>", "TCQuickSearch")
vim.Mode("insert", "TTOTAL_CMD")
vim.SetTimeOut(800, "TTOTAL_CMD")
vim.Map("<esc>", "<TC_NormalMode>", "TTOTAL_CMD")
vim.Mode("search", "TTOTAL_CMD")
vim.Map("<esc>", "<TC_NormalMode>", "TTOTAL_CMD")
vim.Mode("normal", "TTOTAL_CMD")
vim.Map("fc", "<cm_CopyOtherpanel>", "TTOTAL_CMD")
vim.Map("fx", "<cm_MoveOnly>", "TTOTAL_CMD")
vim.Map("fqc", "<TC_CopyUseQueues>", "TTOTAL_CMD")
vim.Map("fqx", "<TC_MoveUseQueues>", "TTOTAL_CMD")
vim.Map("ff", "<cm_CopyToClipboard>", "TTOTAL_CMD")
vim.Map("fz", "<cm_CutToClipboard>", "TTOTAL_CMD")
vim.Map("fv", "<cm_PasteFromClipboard>", "TTOTAL_CMD")
vim.Map("fb", "<TC_CopyDirectoryHotlist>", "TTOTAL_CMD")
vim.Map("fd", "<TC_MoveDirectoryHotlist>", "TTOTAL_CMD")
vim.Map("fg", "<cm_CopySrcPathToClip>", "TTOTAL_CMD")
vim.Map("ft", "<cm_SyncChangeDir>", "TTOTAL_CMD")
vim.Map("F", "<TC_SearchMode>", "TTOTAL_CMD")
vim.Map("gh", "<TC_GotoPreviousDirOther>", "TTOTAL_CMD")
vim.Map("gl", "<TC_GotoNextDirOther>", "TTOTAL_CMD")
vim.Map("Vh", "<cm_SwitchIgnoreList>", "TTOTAL_CMD")
vim.Map("0", "<0>", "TTOTAL_CMD")
vim.Map("1", "<1>", "TTOTAL_CMD")
vim.Map("2", "<2>", "TTOTAL_CMD")
vim.Map("3", "<3>", "TTOTAL_CMD")
vim.Map("4", "<4>", "TTOTAL_CMD")
vim.Map("5", "<5>", "TTOTAL_CMD")
vim.Map("6", "<6>", "TTOTAL_CMD")
vim.Map("7", "<7>", "TTOTAL_CMD")
vim.Map("8", "<8>", "TTOTAL_CMD")
vim.Map("9", "<9>", "TTOTAL_CMD")
vim.Map("k", "<up>", "TTOTAL_CMD")
vim.Map("K", "<TC_UpSelect>", "TTOTAL_CMD")
vim.Map("j", "<down>", "TTOTAL_CMD")
vim.Map("J", "<TC_DownSelect>", "TTOTAL_CMD")
vim.Map("h", "<left>", "TTOTAL_CMD")
vim.Map("H", "<cm_GotoPreviousDir>", "TTOTAL_CMD")
vim.Map("l", "<right>", "TTOTAL_CMD")
vim.Map("L", "<cm_GotoNextDir>", "TTOTAL_CMD")
vim.Map("I", "<TC_CreateNewFile>", "TTOTAL_CMD")
vim.Map("i", "<TC_InsertMode>", "TTOTAL_CMD")
vim.Map("d", "<cm_DirectoryHotlist>", "TTOTAL_CMD")
vim.Map("D", "<cm_OpenDesktop>", "TTOTAL_CMD")
vim.Map("e", "<cm_ContextMenu>", "TTOTAL_CMD")
vim.Map("E", "<cm_ExecuteDOS>", "TTOTAL_CMD")
vim.Map("n", "<TC_AZHistory>", "TTOTAL_CMD")
vim.Map("m", "<TC_Mark>", "TTOTAL_CMD")
vim.Map("M", "<TC_Half>", "TTOTAL_CMD")
vim.Map("'", "<TC_ListMark>", "TTOTAL_CMD")
vim.Map("u", "<TC_GoToParentEx>", "TTOTAL_CMD")
vim.Map("U", "<cm_GoToRoot>", "TTOTAL_CMD")
vim.Map("o", "<cm_LeftOpenDrives>", "TTOTAL_CMD")
vim.Map("O", "<cm_RightOpenDrives>", "TTOTAL_CMD")
vim.Map("q", "<cm_SrcQuickView>", "TTOTAL_CMD")
vim.Map("r", "<cm_RenameOnly>", "TTOTAL_CMD")
vim.Map("R", "<cm_MultiRenameFiles>", "TTOTAL_CMD")
vim.Map("x", "<cm_Delete>", "TTOTAL_CMD")
vim.Map("X", "<TC_ForceDelete>", "TTOTAL_CMD")
vim.Map("w", "<cm_List>", "TTOTAL_CMD")
vim.Map("y", "<cm_CopyNamesToClip>", "TTOTAL_CMD")
vim.Map("Y", "<cm_CopyFullNamesToClip>", "TTOTAL_CMD")
vim.Map("P", "<cm_PackFiles>", "TTOTAL_CMD")
vim.Map("p", "<cm_UnpackFiles>", "TTOTAL_CMD")
vim.Map("t", "<cm_OpenNewTab>", "TTOTAL_CMD")
vim.Map("T", "<cm_OpenNewTabBg>", "TTOTAL_CMD")
vim.Map("/", "<cm_ShowQuickSearch>", "TTOTAL_CMD")
vim.Map("?", "<cm_SearchFor>", "TTOTAL_CMD")
vim.Map("[", "<cm_SelectCurrentName>", "TTOTAL_CMD")
vim.Map("{", "<cm_UnselectCurrentName>", "TTOTAL_CMD")
vim.Map("]", "<cm_SelectCurrentExtension>", "TTOTAL_CMD")
vim.Map("}", "<cm_UnSelectCurrentExtension>", "TTOTAL_CMD")
vim.Map("\", "<cm_ExchangeSelection>", "TTOTAL_CMD")
vim.Map("|", "<cm_ClearAll>", "TTOTAL_CMD")
vim.Map("-", "<cm_SwitchSeparateTree>", "TTOTAL_CMD")
vim.Map("=", "<cm_MatchSrc>", "TTOTAL_CMD")
vim.Map(",", "<cm_SrcThumbs>", "TTOTAL_CMD")
vim.Map(";", "<cm_DirectoryHotlist>", "TTOTAL_CMD")
vim.Map(":", "<cm_FocusCmdLine>", "TTOTAL_CMD")
vim.Map("~", "<cm_SysInfo>", "TTOTAL_CMD")
vim.Map("``", "<TC_ToggleShowInfo>", "TTOTAL_CMD")
vim.Map("G", "<TC_LastLine>", "TTOTAL_CMD")
vim.Map("ga", "<cm_CloseAllTabs>", "TTOTAL_CMD")
vim.Map("gg", "<TC_GoToLine>", "TTOTAL_CMD")
vim.Map("g$", "<TC_LastLine>", "TTOTAL_CMD")
vim.Map("gt", "<cm_SwitchToNextTab>", "TTOTAL_CMD")
vim.Map("gT", "<cm_SwitchToPreviousTab>", "TTOTAL_CMD")
vim.Map("gc", "<cm_CloseCurrentTab>", "TTOTAL_CMD")
vim.Map("gb", "<cm_OpenDirInNewTabOther>", "TTOTAL_CMD")
vim.Map("ge", "<cm_Exchange>", "TTOTAL_CMD")
vim.Map("gr", "<TC_ReOpenTab>", "TTOTAL_CMD")
vim.Map("gw", "<cm_ExchangeWithTabs>", "TTOTAL_CMD")
vim.Map("g1", "<cm_SrcActivateTab1>", "TTOTAL_CMD")
vim.Map("g2", "<cm_SrcActivateTab2>", "TTOTAL_CMD")
vim.Map("g3", "<cm_SrcActivateTab3>", "TTOTAL_CMD")
vim.Map("g4", "<cm_SrcActivateTab4>", "TTOTAL_CMD")
vim.Map("g5", "<cm_SrcActivateTab5>", "TTOTAL_CMD")
vim.Map("g6", "<cm_SrcActivateTab6>", "TTOTAL_CMD")
vim.Map("g7", "<cm_SrcActivateTab7>", "TTOTAL_CMD")
vim.Map("g8", "<cm_SrcActivateTab8>", "TTOTAL_CMD")
vim.Map("g9", "<cm_SrcActivateTab9>", "TTOTAL_CMD")
vim.Map("g0", "<TC_GoLastTab>", "TTOTAL_CMD")
vim.Map("sn", "<cm_SrcByName>", "TTOTAL_CMD")
vim.Map("se", "<cm_SrcByExt>", "TTOTAL_CMD")
vim.Map("ss", "<cm_SrcBySize>", "TTOTAL_CMD")
vim.Map("sd", "<cm_SrcByDateTime>", "TTOTAL_CMD")
vim.Map("sr", "<cm_SrcNegOrder>", "TTOTAL_CMD")
vim.Map("s1", "<cm_SrcSortByCol1>", "TTOTAL_CMD")
vim.Map("s2", "<cm_SrcSortByCol2>", "TTOTAL_CMD")
vim.Map("s3", "<cm_SrcSortByCol3>", "TTOTAL_CMD")
vim.Map("s4", "<cm_SrcSortByCol4>", "TTOTAL_CMD")
vim.Map("s5", "<cm_SrcSortByCol5>", "TTOTAL_CMD")
vim.Map("s6", "<cm_SrcSortByCol6>", "TTOTAL_CMD")
vim.Map("s7", "<cm_SrcSortByCol7>", "TTOTAL_CMD")
vim.Map("s8", "<cm_SrcSortByCol8>", "TTOTAL_CMD")
vim.Map("s9", "<cm_SrcSortByCol9>", "TTOTAL_CMD")
vim.Map("s0", "<cm_SrcUnsorted>", "TTOTAL_CMD")
vim.Map("v", "<cm_SrcCustomViewMenu>", "TTOTAL_CMD")
vim.Map("Vb", "<cm_VisButtonbar>", "TTOTAL_CMD")
vim.Map("Vm", "<TC_ToggleMenu>", "TTOTAL_CMD")
vim.Map("Vd", "<cm_VisDriveButtons>", "TTOTAL_CMD")
vim.Map("Vo", "<cm_VisTwoDriveButtons>", "TTOTAL_CMD")
vim.Map("Vr", "<cm_VisDriveCombo>", "TTOTAL_CMD")
vim.Map("Vc", "<cm_VisDriveCombo>", "TTOTAL_CMD")
vim.Map("Vt", "<cm_VisTabHeader>", "TTOTAL_CMD")
vim.Map("Vs", "<cm_VisStatusbar>", "TTOTAL_CMD")
vim.Map("Vn", "<cm_VisCmdLine>", "TTOTAL_CMD")
vim.Map("Vf", "<cm_VisKeyButtons>", "TTOTAL_CMD")
vim.Map("Vw", "<cm_VisDirTabs>", "TTOTAL_CMD")
vim.Map("Ve", "<cm_CommandBrowser>", "TTOTAL_CMD")
vim.Map("zz", "<TC_Toggle_50_100Percent>", "TTOTAL_CMD")
vim.Map("zh", "<TC_Toggle_50_100Percent_V>", "TTOTAL_CMD")
vim.Map("zi", "<TC_WinMaxLeft>", "TTOTAL_CMD")
vim.Map("zo", "<TC_WinMaxRight>", "TTOTAL_CMD")
vim.Map("zt", "<TC_AlwayOnTop>", "TTOTAL_CMD")
vim.Map("zn", "<cm_Minimize>", "TTOTAL_CMD")
vim.Map("zm", "<cm_Maximize>", "TTOTAL_CMD")
vim.Map("zr", "<cm_Restore>", "TTOTAL_CMD")
vim.Map("zv", "<cm_VerticalPanels>", "TTOTAL_CMD")
vim.BeforeActionDo("TC_BeforeActionDo", "TTOTAL_CMD")
return
TC_BeforeActionDo() {
WinGet, MenuID, ID, ahk_class #32768
if MenuID
return true
ControlGetFocus, ctrl, ahk_class TTOTAL_CMD
Ifinstring, ctrl, %TCListBox%
return false
return true
}
<TC_NormalMode>:
Send, {Esc}
Gosub, <SwitchToEngIME>
vim.Mode("normal", "TTOTAL_CMD")
return
<TC_SearchMode>:
vim.Mode("search", "TTOTAL_CMD")
return
<TC_InsertMode>:
vim.Mode("insert", "TTOTAL_CMD")
return
<TC_ToggleTC>:
IfWinExist, ahk_class TTOTAL_CMD
{
WinGet, AC, MinMax, ahk_class TTOTAL_CMD
if Ac = -1
Winactivate, ahk_class TTOTAL_CMD
else {
Ifwinnotactive, ahk_class TTOTAL_CMD
Winactivate, ahk_class TTOTAL_CMD
else
Winminimize, ahk_class TTOTAL_CMD
}
} else {
Run, %TCPath%
WinWait, ahk_class TTOTAL_CMD
IfWinNotActive, ahk_class TTOTAL_CMD
WinActivate, ahk_class TTOTAL_CMD
}
return
<TC_FocusTC>:
IfWinExist, ahk_class TTOTAL_CMD
Winactivate, ahk_class TTOTAL_CMD
else {
Run, %TCPath%
WinWait, ahk_class TTOTAL_CMD
IfWinNotActive, ahk_class TTOTAL_CMD
WinActivate, ahk_class TTOTAL_CMD
}
return
<TC_FocusTCCmd>:
Gosub, <TC_FocusTC>
SendPos(4003)
return
<TC_AZHistory>:
Gosub, <cm_ConfigSaveDirHistory>
Sleep, 200
history := ""
if Mod(LeftRight(), 2) {
f := ini.redirect.LeftHistory
if FileExist(f)
IniRead, history, %f%, LeftHistory
else
IniRead, history, %TCIni%, LeftHistory
if RegExMatch(history, "RedirectSection=(.+)", HistoryRedirect) {
StringReplace, HistoryRedirect1, HistoryRedirect1, `%COMMANDER_PATH`%, %TCPath%\..
IniRead, history, %HistoryRedirect1%, LeftHistory
}
} else {
f := ini.redirect.RightHistory
if FileExist(f)
IniRead, history, %f%, RightHistory
else
IniRead, history, %TCIni%, RightHistory
if RegExMatch(history, "RedirectSection=(.+)", HistoryRedirect) {
StringReplace, HistoryRedirect1, HistoryRedirect1, `%COMMANDER_PATH`%, %TCPath%\..
IniRead, history, %HistoryRedirect1%, RightHistory
}
}
history_obj := []
global history_name_obj := []
count := 0
Loop, Parse, history, `n
{
idx := RegExReplace(A_LoopField, "=.*$")
value := RegExReplace(A_LoopField, "^\d\d?=")
; 避免&被识别成快捷键
name := StrReplace(value, "&", ":&:")
if (InStr(value, "::") == 1) {
if (InStr(value, "::|") == 1) {
name := StrReplace(value, "::|")
value := 2121
} else if (InStr(value, "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}|") == 1) {
name := StrReplace(value, "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}|")
value := 2122
} else if (InStr(value, "::{21EC2020-3AEA-1069-A2DD-08002B30309D}\::{2227A280-3AEA-1069-A2DE-08002B30309D}|") == 1) {
name := StrReplace(value, "::{21EC2020-3AEA-1069-A2DD-08002B30309D}\::{2227A280-3AEA-1069-A2DE-08002B30309D}|")
value := 2126
} else if (InStr(value, "::{208D2C60-3AEA-1069-A2D7-08002B30309D}|") == 1) {
; NothingIsBig 的是 XP 系统,网上邻居是这个调整
name := StrReplace(value, "::{208D2C60-3AEA-1069-A2D7-08002B30309D}|")
value := 2125
} else if (InStr(value, "::{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}|") == 1) {
name := StrReplace(value, "::{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}|")
value := 2125
} else if (InStr(value, "::{26EE0668-A00A-44D7-9371-BEB064C98683}\0|") == 1) {
name := StrReplace(value, "::{26EE0668-A00A-44D7-9371-BEB064C98683}\0|")
value := 2123
} else if (InStr(value, "::{645FF040-5081-101B-9F08-00AA002F954E}|") == 1) {
name := StrReplace(value, "::{645FF040-5081-101B-9F08-00AA002F954E}|")
value := 2127
}
}
name := RegExReplace(name, "`t#.*$") A_Tab "[&" chr(idx+65) "]"
history_obj[idx] := name
history_name_obj[name] := value
if (++count >= 26) {
break
}
}
Menu, az, UseErrorLevel
Menu, az, add
Menu, az, deleteall
size := TCConfig.GetValue("TotalCommander_Config", "MenuIconSize")
if not size
size := 20
Loop, %count% {
idx := A_Index - 1
name := history_obj[idx]
Menu, az, Add, %name%, AZHistorySelect
Menu, az, icon, %name%, %A_ScriptDir%\plugins\TotalCommander\a-zhistory.icl, %A_Index%, %size%
}
ControlGetFocus, TLB, ahk_class TTOTAL_CMD
ControlGetPos, xn, yn, wn, , %TLB%, ahk_class TTOTAL_CMD
Menu, az, show, %xn%, %yn%
return
AZHistorySelect:
global history_name_obj
if (InStr(A_ThisMenuItem, "\\") == 1) {
if (history_name_obj[A_ThisMenuItem] == 2121)
Gosub, <cm_OpenDesktop>
else if (history_name_obj[A_ThisMenuItem] == 2122)
Gosub, <cm_OpenDrives>
else if (history_name_obj[A_ThisMenuItem] == 2123)
Gosub, <cm_OpenControls>
else if (history_name_obj[A_ThisMenuItem] == 2125)
Gosub, <cm_OpenNetwork>
else if (history_name_obj[A_ThisMenuItem] == 2126)
Gosub, <cm_OpenPrinters>
else if (history_name_obj[A_ThisMenuItem] == 2127)
Gosub, <cm_OpenRecycled>
else {
MsgBox, 打开 %A_ThisMenuItem% 失败
return
}
} else {
ThisMenuItem := RegExReplace(A_ThisMenuItem, "\t.*$")
ThisMenuItem := StrReplace(ThisMenuItem, ":&:", "&")
FixTCEditId()
ControlSetText, %TCEdit%, cd %ThisMenuItem%, ahk_class TTOTAL_CMD
ControlSend, %TCEdit%, {enter}, ahk_class TTOTAL_CMD
ControlGetFocus, Ctrl, ahk_class TTOTAL_CMD
Postmessage, 0x19E, 1, 1, %Ctrl%, ahk_class TTOTAL_CMD
}
return
<TC_DownSelect>:
Send +{Down}
return
<TC_UpSelect>:
Send +{Up}
return
<TC_WinMaxLeft>:
WinMaxLR(true)
return
<TC_WinMaxRight>:
WinMaxLR(false)
return
WinMaxLR(lr)
{
if lr {
ControlGetPos, x, y, w, h, %TCPanel2%, ahk_class TTOTAL_CMD
ControlGetPos, tm1x, tm1y, tm1W, tm1H, %TCPanel1%, ahk_class TTOTAL_CMD
if (tm1w < tm1h) ; 判断纵向还是横向 Ture为竖 false为横
{
ControlMove, %TCPanel1%, x+w, , , , ahk_class TTOTAL_CMD
}
else
ControlMove, %TCPanel1%, 0, y+h, , , ahk_class TTOTAL_CMD
ControlClick, %TCPanel1%, ahk_class TTOTAL_CMD
WinActivate ahk_class TTOTAL_CMD
} else {
ControlMove, %TCPanel1%, 0, 0, , , ahk_class TTOTAL_CMD
ControlClick, %TCPanel1%, ahk_class TTOTAL_CMD
WinActivate ahk_class TTOTAL_CMD
}
}
<TC_GoLastTab>:
Gosub, <cm_SrcActivateTab1>
Gosub, <cm_SwitchToPreviousTab>
return
<TC_CopyNameOnly>:
Clipboard :=
Gosub, <cm_CopyNamesToClip>
ClipWait
if (InStr(Clipboard, "\") == StrLen(Clipboard)) {
Clipboard := SubStr(Clipboard, 1, -1)
} else if (InStr(Clipboard, ".")) {
Clipboard := RegExReplace(Clipboard, "m)\.[^.]*$")
}
return
<TC_ForceDelete>:
Send +{Delete}
return
; 转到 [count] 行, 缺省第一行
<TC_GotoLine>:
if (count := vim.GetCount("TTOTAL_CMD") > 1)
TC_GotoLine(count)
else
TC_GotoLine(1)
return
; 转到 [count] 行, 最后一行
<TC_LastLine>:
if (count := vim.GetCount("TTOTAL_CMD") > 1)
TC_GotoLine(count)
else
TC_GotoLine(0)
return
TC_GotoLine(Index) {
Vim_HotKeyCount := 0
ControlGetFocus, Ctrl, ahk_class TTOTAL_CMD
if Index {
ControlGet, text, List, , %ctrl%, ahk_class TTOTAL_CMD
Stringsplit, T, Text, `n
Last := T0 - 1
if Index > %Last%
Index := Last
Postmessage, 0x19E, %Index%, 1, %Ctrl%, ahk_class TTOTAL_CMD
} else {
ControlGet, text, List, , %ctrl%, ahk_class TTOTAL_CMD
Stringsplit, T, Text, `n
Last := T0 - 1
PostMessage, 0x19E, %Last% , 1 , %CTRL%, ahk_class TTOTAL_CMD
}
}
; 移动到窗口中间
<TC_Half>:
winget, tid, id, ahk_class TTOTAL_CMD
controlgetfocus, ctrl, ahk_id %tid%
controlget, cid, hwnd, , %ctrl%, ahk_id %tid%
controlgetpos, x1, y1, w1, h1, THeaderClick2, ahk_id %tid%
controlgetpos, x, y, w, h, %ctrl%, ahk_id %tid%
SendMessage, 0x01A1, 1, 0, , ahk_id %cid%
Hight := ErrorLevel
SendMessage, 0x018E, 0, 0, , ahk_id %cid%
Top := ErrorLevel
HalfLine := Ceil(((h - h1) / Hight) / 2 ) + Top
PostMessage, 0x19E, %HalfLine%, 1, , AHK_id %cid%
return
; 标记功能
<TC_Mark>:
vim.Mode("insert")
Gosub, <cm_FocusCmdLine>
ControlGet, EditId, Hwnd, , ahk_class TTOTAL_CMD
FixTCEditId()
ControlSetText, %TCEdit%, m, ahk_class TTOTAL_CMD
Postmessage, 0xB1, 2, 2, %TCEdit%, ahk_class TTOTAL_CMD
SetTimer, MarkTimer, 100
return
MarkTimer:
ControlGetFocus, ThisControl, ahk_class TTOTAL_CMD
FixTCEditId()
ControlGetText, OutVar, %TCEdit%, ahk_class TTOTAL_CMD
Match_TCEdit := "i)^" . TCEdit . "$"
if Not RegExMatch(ThisControl, Match_TCEdit) OR Not RegExMatch(Outvar, "i)^m.?") {
vim.Mode("normal")
Settimer, MarkTimer, Off
return
}
if RegExMatch(OutVar, "i)^m.+") {
vim.Mode("normal")
SetTimer, MarkTimer, off
ControlSetText, %TCEdit%, , ahk_class TTOTAL_CMD
ControlSend, %TCEdit%, {Esc}, ahk_class TTOTAL_CMD
ClipSaved := ClipboardAll
Clipboard := ""
Postmessage 1075, 2029, 0, , ahk_class TTOTAL_CMD
ClipWait
Path := Clipboard
Clipboard := ClipSaved
ClipSaved := ""
if (StrLen(Path) > 80) {
SplitPath, Path, , PathDir
Path1 := SubStr(Path, 1, 15)
Path2 := SubStr(Path, RegExMatch(Path, "\\[^\\]*$")-Strlen(Path))
Path := Path1 . "..." . SubStr(Path2, 1, 65) "..."
}
m := SubStr(OutVar, 2, 1)
mPath := "&" . m . " >> " . Path
if RegExMatch(Mark["ms"], m) {
DelM := Mark[m]
Menu, MarkMenu, Delete, %DelM%
Menu, MarkMenu, Add, %mPath%, AddMark
Mark[m] := mPath
if (SaveMark != 0) {
IniWrite, %mPath%, %TCMarkIni%, mark, %m%
}
} else {
Menu, MarkMenu, Add, %mPath%, AddMark
marks := Mark["ms"] . m
Mark["ms"] := marks
Mark[m] := mPath
if (SaveMark != 0) {
IniWrite, %marks%, %TCMarkIni%, mark, ms
IniWrite, %mPath%, %TCMarkIni%, mark, %m%
}
}
}
return
AddMark:
; &x >> dir
; &x >> run cmd
ThisMenuItem := SubStr(A_ThisMenuItem, 7)
if (InStr(ThisMenuItem, "run ") == 1) {
Run, % SubStr(ThisMenuItem, 5)
return
} else if (InStr(ThisMenuItem, "\\") == 1) {
if (ThisMenuItem == "\\桌面") {
Postmessage 1075, 2121, 0, , ahk_class TTOTAL_CMD
return
} else if (ThisMenuItem == "\\计算机") {
Postmessage 1075, 2122, 0, , ahk_class TTOTAL_CMD
return
} else if (ThisMenuItem == "\\所有控制面板项") {
Postmessage 1075, 2123, 0, , ahk_class TTOTAL_CMD
return
} else if (ThisMenuItem = "\\Fonts") {
Postmessage 1075, 2124, 0, , ahk_class TTOTAL_CMD
return
} else if (ThisMenuItem == "\\网络") {
Postmessage 1075, 2125, 0, , ahk_class TTOTAL_CMD
return
} else if (ThisMenuItem == "\\打印机") {
Postmessage 1075, 2126, 0, , ahk_class TTOTAL_CMD
return
} else if (ThisMenuItem == "\\回收站") {
Postmessage 1075, 2127, 0, , ahk_class TTOTAL_CMD
return
}
}
FixTCEditId()
; 先跳转到回收站,避免在 FTP 等目录中中无法正常跳转
; 当回收站文件较多时会异常,不再使用
; Postmessage 1075, 2127, 0, , ahk_class TTOTAL_CMD
ControlSetText, %TCEdit%, cd %ThisMenuItem%, ahk_class TTOTAL_CMD
ControlSend, %TCEdit%, {Enter}, ahk_class TTOTAL_CMD
ControlGetFocus, Ctrl, ahk_class TTOTAL_CMD
Postmessage, 0x19E, 1, 1, %Ctrl%, ahk_class TTOTAL_CMD
return
; 显示标记
<TC_ListMark>:
if Not Mark["ms"]
return
ControlGetFocus, TLB, ahk_class TTOTAL_CMD
ControlGetPos, xn, yn, , , %TLB%, ahk_class TTOTAL_CMD
Menu, MarkMenu, Show, %xn%, %yn%
return
<TC_CreateNewFile>:
ControlGetFocus, TLB, ahk_class TTOTAL_CMD
ControlGetPos, xn, yn, , , %TLB%, ahk_class TTOTAL_CMD
Menu, FileTemp, Add
Menu, FileTemp, DeleteAll
Menu, FileTemp, Add , F >> 文件夹, <cm_Mkdir>
Menu, FileTemp, Icon, F >> 文件夹, %A_WinDir%\system32\Shell32.dll, 4
Menu, FileTemp, Add , S >> 快捷方式, <cm_CreateShortcut>
if A_OSVersion in WIN_2000, WIN_XP
Menu, FileTemp, Icon, S >> 快捷方式, %A_WinDir%\system32\Shell32.dll, 30 ; 我测试 xp 下必须是 30
else
Menu, FileTemp, Icon, S >> 快捷方式, %A_WinDir%\system32\Shell32.dll, 264 ; 原来是 264,xp 下反正是有问题
FileTempMenuCheck()
Menu, FileTemp, Show, %xn%, %yn%
return
; 检查文件模板功能
FileTempMenuCheck() {
global TCDir
blankico := false
if FileExist(TCDir "\ShellNew\blankico") {
blankico := true
}
Loop, %TCDir%\ShellNew\*.* {
if A_Index = 1
Menu, FileTemp, Add
ft := SubStr(A_LoopFileName, 1, 1) . " >> " . A_LoopFileName
Menu, FileTemp, Add, %ft%, FileTempNew
if (blankico) {
Menu, FileTemp, Icon, %ft%, %A_WinDir%\system32\Shell32.dll, 1 ;-152
continue
} else if FileExist(TCDir "\ShellNew\icons\" A_LoopFileExt ".ico") {
Menu, FileTemp, Icon, %ft%, % TCDir "\ShellNew\icons\" A_LoopFileExt ".ico"
continue
}
Ext := "." . A_LoopFileExt
IconFile := RegGetNewFileIcon(Ext)
IconFile := StrReplace(IconFile, "%systemroot%", A_WinDir)
IconFilePath := RegExReplace(IconFile, ",-?\d*", "")
StringReplace, IconFilePath, IconFilePath, ", , A
IconFileIndex := RegExReplace(IconFile, ".*,", "")
IconFileIndex := IconFileIndex >= 0 ? IconFileIndex + 1 : IconFileIndex
MsgBox, %Ext% %IconFile% %IconFilePath% %IconFileIndex%
if Not FileExist(IconFilePath)
Menu, FileTemp, Icon, %ft%, %A_WinDir%\system32\Shell32.dll, 1 ;-152
else
Menu, FileTemp, Icon, %ft%, %IconFilePath%, %IconFileIndex%
}
}
; 新建文件模板
FileTempNew:
NewFile(RegExReplace(A_ThisMenuItem, ".\s>>\s", RegExReplace(TCPath, "\\[^\\]*$", "\ShellNew\")))
return
; 新建文件
NewFile(File = "", Blank := false, Ext := "txt") {
global NewFile
if Not File
File := RegExReplace(NewFiles[A_ThisMenuItemPos], "(.*\[|\]$)", "")
if (Blank) {
FileName := "New"
FileNameNoExt := "New"
FileExt := Ext
if (Ext != "") {
FileName .= "." Ext
}
} else if Not FileExist(File) {
RegRead, ShellNewDir, HKEY_USERS, .default\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
if Not ShellNewDir
ShellNewDir := "C:\windows\ShellNew"
File := ShellNewDir . "\" file
if (SubStr(file, -7) = "NullFile") {
FileExt := RegExReplace(NewFiles[A_ThisMenuItemPos], "(.*\(|\).*)")
File := "New" . FileExt
FileName := "New" . FileExt
FileNameNoExt := "New"
}
}
else
Splitpath, file, filename, , FileExt, filenamenoext
Gui, Destroy
Gui, Add, Text, x12 y20 w50 h20 +Center, 模板源
Gui, Add, Edit, x72 y20 w300 h20 Disabled, %file%
Gui, Add, Text, x12 y50 w50 h20 +Center, 新建文件
Gui, Add, Edit, x72 y50 w300 h20 , %filename%
Gui, Add, Button, x162 y80 w90 h30 gNewFileOk default, 确认(&S)
Gui, Add, Button, x282 y80 w90 h30 gNewFileClose , 取消(&C)
Gui, Show, w400 h120, 新建文件
if FileExt {
Controlget, nf, hwnd, , edit2, A
PostMessage, 0x0B1, 0, Strlen(filenamenoext), Edit2, A
}
return
GuiEscape:
Gui, Destroy
return
}
; 关闭新建文件窗口
NewFileClose:
Gui, Destroy
return
; 确认新建文件
NewFileOK:
GuiControlGet, SrcPath, , Edit1
GuiControlGet, NewFileName, , Edit2
ClipSaved := ClipboardAll
Clipboard :=
Gosub, <cm_CopySrcPathToClip>
ClipWait, 2
DstPath := Clipboard
Clipboard := ClipSaved
ClipSaved := ""
if (DstPath == "") {
return
}
if (InStr(DstPath, "\\") == 1) {
if (RegExMatch(DstPath, "^\\\\(计算机|所有控制面板项|Fonts|网络|打印机|回收站)$")) {
MsgBox, 0, 提示, 无法在此处创建新文件
Gui, Destroy
return
} else if (DstPath == "\\桌面") {
DstPath := A_Desktop
}
}
NewFile := DstPath . "\" . NewFileName
if FileExist(NewFile) {
MsgBox, 4, 新建文件, 新建文件已存在,是否覆盖?
IfMsgBox No
{
return
}
}
if FileExist(SrcPath) {
FileCopy, %SrcPath%, %NewFile%, 1
} else {
Run, fsutil file createnew "%NewFile%" 0, , Hide
}
Gui, Destroy
WinActivate, ahk_class TTOTAL_CMD
ControlGetFocus, FocusCtrl, ahk_class TTOTAL_CMD
if (InStr(FocusCtrl, TCListBox) == 1) {
Gosub, <cm_RereadSource>
ControlGet, Text, List, , %FocusCtrl%, ahk_class TTOTAL_CMD
Loop, Parse, Text, `n
{
if (InStr(A_LoopField, NewFileName) == 1) {
Postmessage, 0x19E, % A_Index - 1, 1, %FocusCtrl%, ahk_class TTOTAL_CMD
break
}
}
}
return
; 获取新建文件的源
; reg 为后缀
RegGetNewFilePath(reg) {
RegRead, GetRegPath, HKEY_CLASSES_ROOT, %Reg%, FileName
IF Not ErrorLevel
return GetRegPath
RegRead, GetRegPath, HKEY_CLASSES_ROOT, %Reg%, NullFile
IF Not ErrorLevel
return "NullFile"
}
; 获取新建文件类型名
; reg 为后缀
RegGetNewFileType(reg) {
RegRead, FileType, HKEY_CLASSES_ROOT, %Reg%
if Not ErrorLevel
return FileType
}
; 获取文件描述
; reg 为后缀
RegGetNewFileDescribe(reg) {
FileType := RegGetNewFileType(reg)
RegRead, FileDesc, HKEY_CLASSES_ROOT, %FileType%
if Not ErrorLevel
return FileDesc
}
; 获取文件对应的图标
; reg 为后缀
RegGetNewFileIcon(reg) {
IconPath := RegGetNewFileType(reg) . "\DefaultIcon"
RegRead, FileIcon, HKEY_CLASSES_ROOT, %IconPath%
if Not ErrorLevel
return FileIcon
}
<TC_GoToParentEx>:
ClipSaved := ClipboardAll
Clipboard :=
Gosub, <cm_CopySrcPathToClip>
ClipWait, 1
Path := Clipboard
Clipboard := ClipSaved
ClipSaved := ""
if RegExMatch(Path, "^.:\\$") {
Gosub, <cm_OpenDrives>
Path := "i)" . RegExReplace(Path, "\\", "")
ControlGetFocus, focus_control, ahk_class TTOTAL_CMD
ControlGet, outvar, list, , %focus_control%, ahk_class TTOTAL_CMD
Loop, Parse, Outvar, `n
{
if Not A_LoopField
break
if RegExMatch(A_LoopField, Path) {
Focus := A_Index - 1
break
}
}
PostMessage, 0x19E, %Focus%, 1, %focus_control%, ahk_class TTOTAL_CMD
} else {
Gosub, <cm_GoToParent>
}
return
<TC_AlwayOnTop>:
WinGet, ExStyle, ExStyle, ahk_class TTOTAL_CMD
if (ExStyle & 0x8)
WinSet, AlwaysOnTop, off, ahk_class TTOTAL_CMD
else
WinSet, AlwaysOnTop, on, ahk_class TTOTAL_CMD
return
LeftRight() {
location := 0
ControlGetPos, x1, y1, , , %TCPanel1%, ahk_class TTOTAL_CMD
if x1 > %y1%
location += 2
ControlGetFocus, TLB, ahk_class TTOTAL_CMD
ControlGetPos, x2, y2, wn, , %TLB%, ahk_class TTOTAL_CMD
if (location) {
if x1 > %x2%
location += 1
} else {
if y1 > %y2%
location += 1
}
return location
}
; 增强命令 By 流彩
; 常用文件夹:另一侧
<DirectoryHotlistother>:
ControlGetFocus, CurrentFocus, ahk_class TTOTAL_CMD
if CurrentFocus not in %TCListBox%2, %TCListBox%1
return
if CurrentFocus in %TCListBox%2
otherlist = %TCListBox%1
else
otherlist = %TCListBox%2
ControlFocus, %otherlist% , ahk_class TTOTAL_CMD
SendPos(526)
SetTimer WaitMenuPop3
return
WaitMenuPop3:
winget, menupop, , ahk_class #32768
if menupop {
SetTimer, WaitMenuPop3, Off
SetTimer, WaitMenuOff3
}
return
WaitMenuOff3:
winget, menupop, , ahk_class #32768
if not menupop {
SetTimer, WaitMenuOff3, off
goto, goonhot
}
return
goonhot:
ControlFocus, %CurrentFocus% , ahk_class TTOTAL_CMD
return
;<TC_CopyDirectoryHotlist>: >>复制到常用文件夹{{{2
<TC_CopyDirectoryHotlist>:
ControlGetFocus, CurrentFocus, ahk_class TTOTAL_CMD
if CurrentFocus not in %TCListBox%2, %TCListBox%1
return
if CurrentFocus in %TCListBox%2
otherlist = %TCListBox%1
else
otherlist = %TCListBox%2
ControlFocus, %otherlist% , ahk_class TTOTAL_CMD
SendPos(526)
SetTimer WaitMenuPop1
return
WaitMenuPop1:
winget, menupop, , ahk_class #32768
if menupop
{
SetTimer, WaitMenuPop1 , Off
SetTimer, WaitMenuOff1
}
return
WaitMenuOff1:
winget, menupop, , ahk_class #32768
if not menupop {
SetTimer, WaitMenuOff1, off
goto, gooncopy
}
return
gooncopy:
ControlFocus, %CurrentFocus% , ahk_class TTOTAL_CMD
SendPos(3101)
return
<TC_CopyUseQueues>:
Send {F5}
Send {F2}
return
<TC_MoveUseQueues>:
Send {F6}
Send {F2}
return
<TC_MoveDirectoryHotlist>:
if SendPos(0)
ControlGetFocus, CurrentFocus, ahk_class TTOTAL_CMD
if CurrentFocus not in %TCListBox%2, %TCListBox%1
return
if CurrentFocus in %TCListBox%2
otherlist = %TCListBox%1
else
otherlist = %TCListBox%2
ControlFocus, %otherlist% , ahk_class TTOTAL_CMD
SendPos(526)
SetTimer WaitMenuPop2
return
WaitMenuPop2:
winget, menupop, , ahk_class #32768
if menupop {
SetTimer, WaitMenuPop2 , Off
SetTimer, WaitMenuOff2
}
return
WaitMenuOff2:
winget, menupop, , ahk_class #32768
if not menupop {
SetTimer, WaitMenuOff2, off
goto, GoonMove
}
return
GoonMove:
ControlFocus, %CurrentFocus%, ahk_class TTOTAL_CMD
SendPos(1005)
return
<TC_GotoPreviousDirOther>:
Send {Tab}
SendPos(570)
Send {Tab}
return
<TC_GotoNextDirOther>:
Send {Tab}
SendPos(571)
Send {Tab}
return
<TC_Toggle_50_100Percent>:
ControlGetPos, , , wp, hp, %TCPanel1%, ahk_class TTOTAL_CMD
ControlGetPos, , , w1, h1, %TCListBox%1, ahk_class TTOTAL_CMD
ControlGetPos, , , w2, h2, %TCListBox%2, ahk_class TTOTAL_CMD
if (wp < hp) {
;纵向
if (abs(w1 - w2) > 2)
SendPos(909)
else
SendPos(910)
} else {
;横向
if (abs(h1 - h2) > 2)
SendPos(909)
else
SendPos(910)
}
return
; 横向分割的窗口使用 TC_Toggle_50_100Percent 即可
<TC_Toggle_50_100Percent_V>:
ControlGetPos, , , wp, hp, %TCPanel1%, ahk_class TTOTAL_CMD
ControlGetPos, , , w1, h1, %TCListBox%1, ahk_class TTOTAL_CMD
ControlGetPos, , , w2, h2, %TCListBox%2, ahk_class TTOTAL_CMD
ControlGetPos, , , w3, h3, %TCListBox%3, ahk_class TTOTAL_CMD
; msgbox % "wp " wp " hp " hp " w1 " w1 " h1 " h1 " w2 " w2 " h2 " h2 " w3 " w3 " h3 " h3
; 修复打开 FTP 等地址后失效的问题
if (w3 > 0 && h3 > 0) {
w1 := w2
h1 := h2
w2 := w3
h2 := h3
}
if (wp < hp) {
; 纵向
if (abs(w1 - w2) > 2) {
SendPos(909)
} else {
SendPos(910)
SendPos(305)
}
} else {
; 横向
if (abs(h1 - h2) > 2) {
SendPos(305)
SendPos(909)
}
/*
横向切换会错乱
else {
SendPos(910)
}
*/
}
return
<TC_OpenWithAlternateViewer>:
send !{f3}
return
<TC_ViewFileUnderCursor>:
send +{f3}
return
<TC_ToggleShowInfo>:
vim.GetWin("TTOTAL_CMD").SetInfo(!vim.GetWin("TTOTAL_CMD").info)
return
<TC_ToggleMenu>:
IniRead, Mainmenu, %TCIni%, Configuration, Mainmenu
if (Mainmenu = "WCMD_CHN.MNU") {
WinGet,TChwnd,Id,ahk_class TTOTAL_CMD
DllCall("SetMenu", "uint", TChwnd, "uint", 0)
IniWrite, NONE.MNU, %TCIni%, Configuration, Mainmenu
IniWrite, 1, %TCIni%, Configuration, RestrictInterface
noneMnuPath := TCDir . "\LANGUAGE\NONE.MNU"
if (!FileExist(noneMnuPath)) {
FileAppend, , %noneMnuPath%, UTF-8-RAW
}
} else {
IniWrite, WCMD_CHN.MNU, %TCIni%, Configuration, Mainmenu
IniWrite, 0, %TCIni%, Configuration, RestrictInterface
WinClose, ahk_class TTOTAL_CMD
WinWaitClose, ahk_class TTOTAL_CMD, , 2
Run, %TCPath%
WinWait, ahk_class TTOTAL_CMD
IfWinNotActive, ahk_class TTOTAL_CMD
WinActivate, ahk_class TTOTAL_CMD
}
return
<TC_SuperReturn>:
; 浏览压缩文件时会失效
ClipSaved := ClipboardAll
Clipboard := ""
Gosub, <cm_CopySrcPathToClip>
ClipWait
OldPwd := Clipboard
Gosub, <cm_Return>
Loop, 5 {
Sleep, 10
Clipboard := ""
Gosub, <cm_CopySrcPathToClip>
ClipWait
if (OldPwd != Clipboard) {
Gosub, <cm_GoToFirstEntry>
break
}
}
Clipboard := ClipSaved
ClipSaved := ""
return
<TC_FileCopyForBak>:
Clipboard :=
SendPos(2018)
ClipWait
filecopy, %Clipboard%, %Clipboard%.bak
Return
<TC_FileMoveForBak>:
Clipboard :=
SendPos(2018)
ClipWait
SplitPath, Clipboard, name, dir, ext, name_no_ext
if (Clipboard != dir . "\")
FileMove, %Clipboard%, %Clipboard%.bak
else
FileMoveDir, %dir%, %dir%.bak
Return
<TC_MultiFilePersistOpen>:
Clipboard :=
Sendpos(2018)
ClipWait
SendPos(524)
sleep, 200
Loop, Parse, Clipboard, `n, `r
{
run, %A_LoopField%
}
Return
<TC_CopyFileContents>:
Clipboard :=
SendPos(2018)
ClipWait
fileread, Contents, %Clipboard%
Clipboard := Contents
Return
<TC_OpenDirAndPaste>:
SendPos(1001)
SendPos(2009)
SendPos(2002)
Return
<TC_MoveSelectedFilesToPrevFolder>:
Send ^x
SendPos(2002)
Send ^v
Return
; 时间控制不好可能会误删文件,慎用
<TC_MoveAllFilesToPrevFolder>:
Send ^a
sleep 100
Send ^x
SendPos(2002)
Send ^v
sleep 500
Send {del}
Return
<TC_SrcQuickViewAndTab>:
SendPos(304)
Send, {Tab}
Send, {Shift}
Return
<TC_CreateFileShortcut>:
Clipboard :=
SendPos(2018)
ClipWait
SplitPath, Clipboard, name, dir, ext, name_no_ext
ExtLen := StrLen(ext)
if %ExtLen% != 0
FileCreateShortcut, %Clipboard%, %dir%\%name_no_ext%.lnk
if %ExtLen% = 0
FileCreateShortcut, %dir%, %dir%.lnk
Return
<TC_CreateFileShortcutToDesktop>:
Clipboard :=
SendPos(2018)
ClipWait
SplitPath, Clipboard, name, dir, ext, name_no_ext
ExtLen := StrLen(ext)
if %ExtLen% != 0
FileCreateShortcut, %Clipboard%, %dir%\%name_no_ext%.lnk
FileMove, %dir%\%name_no_ext%.lnk, %USERPROFILE%\desktop\
FixTCEditId()
; 如果不想打开桌面目录的话,注释以下 4 行
ControlSetText, %TCEdit%, cd %USERPROFILE%\desktop\, ahk_class TTOTAL_CMD
ControlSend, %TCEdit%, {enter}, ahk_class TTOTAL_CMD
ControlGetFocus, Ctrl, ahk_class TTOTAL_CMD
Postmessage, 0x19E, 1, 1, %Ctrl%, ahk_class TTOTAL_CMD
Return
<TC_CreateFileShortcutToStartup>:
Clipboard :=
SendPos(2018)
ClipWait
SplitPath, Clipboard, name, dir, ext, name_no_ext
ExtLen := StrLen(ext)
if (%ExtLen% != 0) {
; MsgBox, %Clipboard%
FileCreateShortcut, %Clipboard%, %dir%\%name_no_ext%.lnk
FileMove, %dir%\%name_no_ext%.lnk, %appdata%\Microsoft\Windows\Start Menu\Programs\Startup\
FixTCEditId()
; 如果不想打开启动目录的话,注释以下4行
ControlSetText, %TCEdit%, cd %appdata%\Microsoft\Windows\Start Menu\Programs\Startup\, ahk_class TTOTAL_CMD
ControlSend, %TCEdit%, {enter}, ahk_class TTOTAL_CMD
ControlGetFocus, Ctrl, ahk_class TTOTAL_CMD
Postmessage, 0x19E, 1, 1, %Ctrl%, ahk_class TTOTAL_CMD
}
Return
<TC_FilterSearchFNsuffix_exe>:
SendPos(2915)
Send, *.exe
Send, {ESC}
Return
<TC_TwoFileExchangeName>:
Clipboard :=
SendPos(2018)
ClipWait
PathArray := StrSplit(Clipboard, "`r`n")
FirstName := PathArray[1]
SecondName := PathArray[2]
SendPos(524)
sleep, 200
FileMove, %FirstName%, %FirstName%.bak
FileMove, %SecondName%, %FirstName%
FileMove, %FirstName%.bak, %SecondName%
Return
TC_OpenPath(Path, InNewTab := true, LeftOrRight := "") {
if (LeftOrRight = "") {
LeftOrRight := "/R"
if Mod(LeftRight(), 2) {
LeftOrRight := "/L"
}
}
if (InNewTab) {
Run, "%TCPath%" /O /T /A "%LeftOrRight%"="%Path%"
} else {
Run, "%TCPath%" /O /A "%LeftOrRight%"="%Path%"
}
}
<TC_MarkFile>:
Gosub, <cm_EditComment>
; 将备注设置为 m,可以通过将备注为 m 的文件显示成不同颜色,实现标记功能
; 不要在已有备注的文件使用
Send, ^+{end}m{f2}
return
<TC_UnMarkFile>:
Gosub, <cm_EditComment>
; 删除 TC_MarkFile 的文件标记,也可用于清空文件备注
Send, ^+{end}{del}{f2}
return
<TC_SelectCmd>:
Clipboard := ""
Gosub, <cm_CommandBrowser>
; WinWaitClose, ahk_class TCmdSelForm
ClipWait
if (IsLabel("<" Clipboard ">")) {
Gosub, <%Clipboard%>
}
return
<TC_ClearTitle>:
TC_SetTitle("", false)
return
; 自动设置的话显示效果滞后
TC_SetTitle(Title := "", KeepVersion := true) {
if (KeepVersion) {
WinGetTitle, OldTitle, ahk_class TTOTAL_CMD
StringMid, NewTitle, OldTitle, 1, 21 ;保留TC的版本号信息
WinSetTitle, ahk_class TTOTAL_CMD, , %NewTitle% - %Title%
} else {
WinSetTitle, ahk_class TTOTAL_CMD, , %Title%
}
}
<TC_ReOpenTab>:
Gosub, <cm_OpenNewTab>
Gosub, <cm_GotoPreviousDir>
return
<TC_OpenDirsInFile>:
OldClipboard := Clipboard
Clipboard := ""
Gosub, <cm_CopyFullNamesToClip>
ClipWait
FileRead, Contents, %Clipboard%
Clipboard := OldClipboard
OldClipboard =
Loop, Parse, Contents, `n, `r
{
if FileExist(A_LoopField) {
TC_OpenPath(A_LoopField, true)
Sleep, 100
}
}
return
<TC_CreateBlankFile>:
NewFile("创建空文件", true)
return
<TC_CreateBlankFileNoExt>:
NewFile("创建空文件", true, "")
return
TC_Run(cmd) {
FixTCEditId()
ControlSetText, %TCEdit%, %cmd%, ahk_class TTOTAL_CMD
ControlSend, %TCEdit%, {Enter}, ahk_class TTOTAL_CMD
}
<TC_PasteFileEx>:
OldClipboard := ClipboardAll
Clipboard =
SendPos(524) ;cm_ClearAll
SendPos(2018) ;cm_CopyFullNamesToClip
ClipWait
TempClip := Clipboard
If (SubStr(TempClip, 0) == "\") {
SendPos(1001) ;cm_Return
Clipboard := OldClipboard
SendPos(2009) ;cm_PasteFromClipboard
SendPos(2002) ;cm_GoToParent
} else {
Clipboard := OldClipboard
SendPos(2009) ;cm_PasteFromClipboard
}
OldClipboard =
return
; 缩略图视图,并且临时修改 h 和 l 按键为左右方向键
<TC_ThumbsView>:
Gosub, <cm_SrcThumbs>
Gosub, <TC_ThumbsViewSwitchKey>
return
<TC_ThumbsViewSwitchKey>:
InThumbsView := !InThumbsView
if (InThumbsView) {
vim.Map("h", "<left>", "TTOTAL_CMD")
vim.Map("l", "<right>", "TTOTAL_CMD")
} else {
vim.Map("h", "<cm_GoToParent>", "TTOTAL_CMD")
vim.Map("l", "<TC_SuperReturn>", "TTOTAL_CMD")
}
return
FixTCEditId() {
global TC64Bit
if (!TC64Bit) {
return
}
ControlGetText, Result, Edit2, ahk_class TTOTAL_CMD
if (ErrorLevel) {
TCEdit := "Edit1"
} else {
TCEdit := "Edit2"
}
}
<TC_Restart>:
ErrorMessage := ""
WinClose, ahk_class TTOTAL_CMD
WinWaitClose, ahk_class TTOTAL_CMD, , 2
ErrorMessage .= "|" ErrorLevel
Run, %TCPath%
ErrorMessage .= "|" ErrorLevel
WinWaitActive, ahk_class TTOTAL_CMD
ErrorMessage .= "|" ErrorLevel
if (!WinExist("ahk_class TTOTAL_CMD")) {
; 有时重启失败,需要查询原因,而不是 Sleep 加重试
MsgBox, 重启失败 %ErrorMessage%
}
return
<TC_PreviousParallelDir>:
ClipSaved := ClipboardAll
Clipboard := ""
Gosub, <cm_CopySrcPathToClip>
ClipWait
OldPwd := Clipboard
if (StrLen(OldPwd) == 3) {
; 在根分区
Gosub, <cm_GotoPreviousDrive>
Gosub, <cm_GoToFirstEntry>
Clipboard := ClipSaved
ClipSaved := ""
return
} else if (RegExMatch(OldPwd, "^\\\\\\\w+\\\w+$")) {
Clipboard := ClipSaved
ClipSaved := ""
return
}
Gosub, <cm_GoToParent>
if (InStr(OldPwd, "\\\")) {
; 网络文件系统比较慢,等待下
Sleep, 50
}
Gosub, <cm_GotoPrev>
Clipboard := ""
Gosub, <cm_CopyFullNamesToClip>
ClipWait
if (!InStr(OldPwd, Clipboard)) {
Gosub, <cm_GoToDir>
Gosub, <cm_GoToFirstEntry>
} else {
Gosub, <cm_GotoPreviousDir>
Gosub, <cm_GoToFirstEntry>
}
Clipboard := ClipSaved
ClipSaved := ""
return
<TC_NextParallelDir>:
ClipSaved := ClipboardAll
Clipboard := ""
Gosub, <cm_CopySrcPathToClip>
ClipWait
OldPwd := Clipboard
if (StrLen(OldPwd) == 3) {
; 在根分区
Gosub, <cm_GotoNextDrive>
Gosub, <cm_GoToFirstEntry>
Clipboard := ClipSaved
ClipSaved := ""
return
} else if (RegExMatch(OldPwd, "^\\\\\\\w+\\\w+$")) {
Clipboard := ClipSaved
ClipSaved := ""
return
}
Gosub, <cm_GoToParent>
if (InStr(OldPwd, "\\\")) {
; 网络文件系统比较慢,等待下
Sleep, 50
}
Gosub, <cm_GotoNext>
Gosub, <cm_GoToDir>
if (InStr(OldPwd, "\\\")) {
; 网络文件系统比较慢,等待下
Sleep, 50
}
Clipboard := ""
Gosub, <cm_CopySrcPathToClip>
ClipWait
if (OldPwd != Clipboard && InStr(OldPwd, Clipboard)) {
; 下一个是文件而不是目录
Gosub, <cm_GotoPreviousDir>
} else {
Gosub, <cm_GoToFirstEntry>
}
Clipboard := ClipSaved
ClipSaved := ""
return
#Include %A_ScriptDir%\plugins\TotalCommander\TCCommand.ahk
| AutoHotkey | 5 | Jvcon/vimdesktop | Plugins/TotalCommander/TotalCommander.ahk | [
"MIT"
] |
export * from "./reexport";
| JavaScript | 1 | fourstash/webpack | test/cases/side-effects/issue-12570/module.js | [
"MIT"
] |
// Persistence Of Vision raytracer version 1.0 sample file.
// By Various and Sundry
//
// Revision Note:
// Reworked both the declared wood texture (turb and colormap) and
// the application of it on the floor plane.
// Note that wood doesn't really look like much until you get around
// 640x480. Anti-aliasing helps even more to bring out the detail. -dmf
#include "shapes.inc"
#include "colors.inc"
#include "textures.inc"
// a light tan wood with brown rings
#declare New_Tan_Wood = texture {
wood
turbulence 0.03
colour_map {
[0.0 0.4 colour red 0.6 green 0.45 blue 0.25
colour red 0.65 green 0.45 blue 0.25]
[0.4 1.01 colour red 0.6 green 0.4 blue 0.2
colour red 0.25 green 0.15 blue 0.05]
}
}
camera {
direction <0.0 0.0 1.0>
up <0.0 1.0 0.0>
right <1.333 0.0 0.0>
translate <0.0 0.0 -56.0>
}
// A bowl
object {
intersection {
sphere { <0.0 0.0 0.0> 1.0 }
sphere { <0.0 0.0 0.0> 0.9 }
plane { <0.0 1.0 0.0> 0.5 }
}
bounded_by {
sphere { <0.0 0.0 0.0> 21.0 }
}
scale < 20.0 20.0 20.0 >
texture {
colour Red
ambient 0.2
diffuse 0.8
reflection 0.1
}
colour Red
}
// Water
object {
intersection {
sphere { <0.0 0.0 0.0> 1.0 }
plane { <0.0 1.0 0.0> 0.49 }
}
bounded_by {
sphere { <0.0 0.0 0.0> 21.0 }
}
scale < 19.5 19.5 19.5 >
texture {
ripples 0.5
frequency 100.0
scale <100.0 100.0 100.0>
reflection 0.6
refraction 0.6
ior 1.2
}
colour Grey
}
// Wood floor
object {
plane { <0.0 1.0 0.0> -20.0 }
texture { 0.015 // seems to reduce "moire" effect on the grain
New_Tan_Wood // Think of a log, facing you...
scale <2 2 1> // z is infinite, so 1 is ok...
rotate <0 90 0> // turn the "log" to the x axis
rotate <0.0 0.0 10.0> // tilt the log just a little bit
translate <0 -4 0> // lift it to where the rings are larger
rotate <5 0 0> // tip it again, this time on x axis
ambient 0.15
diffuse 0.75
reflection 0.1
}
colour Tan
}
// Back wall
object {
plane { <0.0 0.0 1.0> 100.0 }
texture {
Red_Marble
scale <100.0 100.0 100.0>
ambient 0.15
diffuse 0.8
reflection 0.1
}
color Pink
}
// A sky to reflect in the water
object {
plane { <0.0 1.0 0.0> 150.0 }
texture {
colour red 0.5 green 0.5 blue 1.0
ambient 0.15
diffuse 0.8
}
colour red 0.5 green 0.5 blue 1.0
}
// Light source
object {
light_source { <100.0 120.0 -130.0>
colour White
}
}
| POV-Ray SDL | 5 | Falken42/SecondReality | source/jni/u2/water/waterbow.pov | [
"Unlicense"
] |
- content_for(:title, 'Encoding Error')
%img{ :alt => "GitLab Logo", :src => image_path('logo.svg') }
%h1
412
.container
%h3 Precondition failed
%hr
%p Page can't be loaded because of invalid parameters.
| Haml | 2 | hugorebelo/gitlabhq | app/views/errors/precondition_failed.html.haml | [
"MIT"
] |
{ fetchgit, fetchFromGitHub }:
{
letoram-openal-src = fetchFromGitHub {
owner = "letoram";
repo = "openal";
rev = "1c7302c580964fee9ee9e1d89ff56d24f934bdef";
hash = "sha256-InqU59J0zvwJ20a7KU54xTM7d76VoOlFbtj7KbFlnTU=";
};
freetype-src = fetchgit {
url = "git://git.sv.nongnu.org/freetype/freetype2.git";
rev = "94cb3a2eb96b3f17a1a3bd0e6f7da97c0e1d8f57";
sha256 = "sha256-LzjqunX/T8khF2UjPlPYiQOwMGem8MqPYneR2LdZ5Fg=";
};
libuvc-src = fetchgit {
owner = "libuvc";
repo = "libuvc";
rev = "b2b01ae6a2875d05c99eb256bb15815018d6e837";
sha256 = "sha256-2zCTjyodRARkHM/Q0r4bdEH9LO1Z9xPCnY2xE4KZddA=";
};
luajit-src = fetchgit {
url = "https://luajit.org/git/luajit-2.0.git";
rev = "d3294fa63b344173db68dd612c6d3801631e28d4";
sha256 = "sha256-1iHBXcbYhWN4M8g5oH09S1j1WrjYzI6qcRbHsdfpRkk=";
};
}
| Nix | 3 | siddhantk232/nixpkgs | pkgs/desktops/arcan/arcan/clone-sources.nix | [
"MIT"
] |
###. Single line comment
###..
Multi line comment.
This line is also part of comment.
Continues till next block element
p. This is not a comment, but I am a paragraph.
<!-- HTML comments can also be used -->
h1. This is an <h1>
h2. This is an <h2>
h3. This is an <h3>
h4. This is an <h4>
h5. This is an <h5>
h6. This is an <h6>
--
* Item
** Sub-Item
* Another item
** Another sub-item
** Yet another sub-item
*** Three levels deep
p{color:red}. This line will be red.
%span% are enclosed in percent symbols.
div. This is a new div element
| Textile | 3 | purveshpatel511/bat | tests/syntax-tests/source/Textile/test.textile | [
"Apache-2.0",
"MIT"
] |
package org.openapitools.model
import io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
import java.util.ArrayList
import java.util.List
import io.micronaut.test.extensions.spock.annotation.MicronautTest
import spock.lang.Specification
import jakarta.inject.Inject
/**
* Model tests for EnumArrays
*/
@MicronautTest
public class EnumArraysSpec extends Specification {
private final EnumArrays model = new EnumArrays()
/**
* Model tests for EnumArrays
*/
void "EnumArrays test"() {
// TODO: test EnumArrays
}
/**
* Test the property 'justSymbol'
*/
void "EnumArrays property justSymbol test"() {
// TODO: test justSymbol
}
/**
* Test the property 'arrayEnum'
*/
void "EnumArrays property arrayEnum test"() {
// TODO: test arrayEnum
}
}
| Groovy | 4 | JigarJoshi/openapi-generator | samples/client/petstore/java-micronaut-client/src/test/groovy/org/openapitools/model/EnumArraysSpec.groovy | [
"Apache-2.0"
] |
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
/*
* If linux/types.h is already been included, assume it has defined
* everything we need. (cross fingers) Other header files may have
* also defined the types that we need.
*/
#if (!defined(_LINUX_TYPES_H) && !defined(_BLKID_TYPES_H) && !defined(_EXT2_TYPES_H))
# define _EXT2_TYPES_H
# define __S8_TYPEDEF __signed__ char
# define __U8_TYPEDEF unsigned char
# define __S16_TYPEDEF __signed__ short
# define __U16_TYPEDEF unsigned short
# define __S32_TYPEDEF __signed__ int
# define __U32_TYPEDEF unsigned int
# define __S64_TYPEDEF __signed__ long long
# define __U64_TYPEDEF unsigned long long
# ifdef __U8_TYPEDEF
typedef __U8_TYPEDEF __u8;
# else
typedef unsigned char __u8;
# endif
# ifdef __S8_TYPEDEF
typedef __S8_TYPEDEF __s8;
# else
typedef signed char __s8;
# endif
# ifdef __U16_TYPEDEF
typedef __U16_TYPEDEF __u16;
# else
# if (4 == 2)
typedef unsigned int __u16;
# else
# if (2 == 2)
typedef unsigned short __u16;
# else
? == error : undefined 16 bit type
# endif /* SIZEOF_SHORT == 2 */
# endif /* SIZEOF_INT == 2 */
# endif /* __U16_TYPEDEF */
# ifdef __S16_TYPEDEF
typedef __S16_TYPEDEF __s16;
# else
# if (4 == 2)
typedef int __s16;
# else
# if (2 == 2)
typedef short __s16;
# else
? == error
: undefined 16 bit type
# endif /* SIZEOF_SHORT == 2 */
# endif /* SIZEOF_INT == 2 */
# endif /* __S16_TYPEDEF */
# ifdef __U32_TYPEDEF
typedef __U32_TYPEDEF __u32;
# else
# if (4 == 4)
typedef unsigned int __u32;
# else
# if (4 == 4)
typedef unsigned long __u32;
# else
# if (2 == 4)
typedef unsigned short __u32;
# else
? == error
: undefined 32 bit type
# endif /* SIZEOF_SHORT == 4 */
# endif /* SIZEOF_LONG == 4 */
# endif /* SIZEOF_INT == 4 */
# endif /* __U32_TYPEDEF */
# ifdef __S32_TYPEDEF
typedef __S32_TYPEDEF __s32;
# else
# if (4 == 4)
typedef int __s32;
# else
# if (4 == 4)
typedef long __s32;
# else
# if (2 == 4)
typedef short __s32;
# else
? == error
: undefined 32 bit type
# endif /* SIZEOF_SHORT == 4 */
# endif /* SIZEOF_LONG == 4 */
# endif /* SIZEOF_INT == 4 */
# endif /* __S32_TYPEDEF */
# ifdef __U64_TYPEDEF
typedef __U64_TYPEDEF __u64;
# else
# if (4 == 8)
typedef unsigned int __u64;
# else
# if (4 == 8)
typedef unsigned long __u64;
# else
# if (8 == 8)
typedef unsigned long long __u64;
# endif /* SIZEOF_LONG_LONG == 8 */
# endif /* SIZEOF_LONG == 8 */
# endif /* SIZEOF_INT == 8 */
# endif /* __U64_TYPEDEF */
# ifdef __S64_TYPEDEF
typedef __S64_TYPEDEF __s64;
# else
# if (4 == 8)
typedef int __s64;
# else
# if (4 == 8)
typedef long __s64;
# else
# if (8 == 8)
# if defined(__GNUC__)
typedef __signed__ long long __s64;
# else
typedef signed long long __s64;
# endif /* __GNUC__ */
# endif /* SIZEOF_LONG_LONG == 8 */
# endif /* SIZEOF_LONG == 8 */
# endif /* SIZEOF_INT == 8 */
# endif /* __S64_TYPEDEF */
# undef __S8_TYPEDEF
# undef __U8_TYPEDEF
# undef __S16_TYPEDEF
# undef __U16_TYPEDEF
# undef __S32_TYPEDEF
# undef __U32_TYPEDEF
# undef __S64_TYPEDEF
# undef __U64_TYPEDEF
#endif /* _*_TYPES_H */
/* These defines are needed for the public ext2fs.h header file */
#define HAVE_SYS_TYPES_H 1
#undef WORDS_BIGENDIAN
| C | 4 | r00ster91/serenity | Kernel/FileSystem/ext2_types.h | [
"BSD-2-Clause"
] |
# Specify the provider and access details
provider "aws" {
version = "~> 2.0"
region = "${var.aws_region}"
}
resource "aws_security_group" "docdbtest" {
name_prefix = "docdbtest"
description = "Test mongo driver on docdb"
vpc_id = "${var.vpc_id}"
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
description = "Public SSH access"
}
ingress {
from_port = 0
to_port = 0
protocol = "-1"
self = true
description = "Allow traffic within the security group for port forwarding"
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
# Provisioning a DocumentDB cluster with an instance.
resource "aws_docdb_cluster_instance" "docdbtest" {
cluster_identifier = "${aws_docdb_cluster.docdbtest.id}"
identifier_prefix = "${aws_docdb_cluster.docdbtest.id}"
instance_class = "db.r5.large"
apply_immediately = true
}
resource "aws_docdb_cluster" "docdbtest" {
cluster_identifier = "docstore-test-cluster"
master_username = "${var.db_username}"
master_password = "${var.db_password}"
db_cluster_parameter_group_name = "docstore-test-pg"
vpc_security_group_ids = ["${aws_security_group.docdbtest.id}"]
skip_final_snapshot = true
}
# Provisioning an EC2 instance within the same VPC group for port forwarding.
resource "aws_key_pair" "docdbtest" {
key_name_prefix = "docdbtest"
public_key = "${var.ssh_public_key}"
}
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
owners = ["099720109477"]
}
resource "aws_instance" "docdbtest" {
ami = "${data.aws_ami.ubuntu.id}"
instance_type = "t2.micro"
vpc_security_group_ids = ["${aws_security_group.docdbtest.id}"]
key_name = "${aws_key_pair.docdbtest.key_name}"
associate_public_ip_address = true
}
| HCL | 3 | saeidakbari/go-cloud | docstore/mongodocstore/awsdocdb/main.tf | [
"Apache-2.0"
] |
/** @babel */
/** @jsx etch.dom */
import etch from 'etch';
import VIEW_URI from './view-uri';
const REBUILDING = 'rebuilding';
const REBUILD_FAILED = 'rebuild-failed';
const REBUILD_SUCCEEDED = 'rebuild-succeeded';
export default class IncompatiblePackagesComponent {
constructor(packageManager) {
this.rebuildStatuses = new Map();
this.rebuildFailureOutputs = new Map();
this.rebuildInProgress = false;
this.rebuiltPackageCount = 0;
this.packageManager = packageManager;
this.loaded = false;
etch.initialize(this);
if (this.packageManager.getActivePackages().length > 0) {
this.populateIncompatiblePackages();
} else {
global.setImmediate(this.populateIncompatiblePackages.bind(this));
}
this.element.addEventListener('click', event => {
if (event.target === this.refs.rebuildButton) {
this.rebuildIncompatiblePackages();
} else if (event.target === this.refs.reloadButton) {
atom.reload();
} else if (event.target.classList.contains('view-settings')) {
atom.workspace.open(
`atom://config/packages/${event.target.package.name}`
);
}
});
}
update() {}
render() {
if (!this.loaded) {
return <div className="incompatible-packages padded">Loading...</div>;
}
return (
<div
className="incompatible-packages padded native-key-bindings"
tabIndex="-1"
>
{this.renderHeading()}
{this.renderIncompatiblePackageList()}
</div>
);
}
renderHeading() {
if (this.incompatiblePackages.length > 0) {
if (this.rebuiltPackageCount > 0) {
let alertClass =
this.rebuiltPackageCount === this.incompatiblePackages.length
? 'alert-success icon-check'
: 'alert-warning icon-bug';
return (
<div className={'alert icon ' + alertClass}>
{this.rebuiltPackageCount} of {this.incompatiblePackages.length}{' '}
packages were rebuilt successfully. Reload Atom to activate them.
<button ref="reloadButton" className="btn pull-right">
Reload Atom
</button>
</div>
);
} else {
return (
<div className="alert alert-danger icon icon-bug">
Some installed packages could not be loaded because they contain
native modules that were compiled for an earlier version of Atom.
<button
ref="rebuildButton"
className="btn pull-right"
disabled={this.rebuildInProgress}
>
Rebuild Packages
</button>
</div>
);
}
} else {
return (
<div className="alert alert-success icon icon-check">
None of your packages contain incompatible native modules.
</div>
);
}
}
renderIncompatiblePackageList() {
return (
<div>
{this.incompatiblePackages.map(
this.renderIncompatiblePackage.bind(this)
)}
</div>
);
}
renderIncompatiblePackage(pack) {
let rebuildStatus = this.rebuildStatuses.get(pack);
return (
<div className={'incompatible-package'}>
{this.renderRebuildStatusIndicator(rebuildStatus)}
<button
className="btn view-settings icon icon-gear pull-right"
package={pack}
>
Package Settings
</button>
<h4 className="heading">
{pack.name} {pack.metadata.version}
</h4>
{rebuildStatus
? this.renderRebuildOutput(pack)
: this.renderIncompatibleModules(pack)}
</div>
);
}
renderRebuildStatusIndicator(rebuildStatus) {
if (rebuildStatus === REBUILDING) {
return (
<div className="badge badge-info pull-right icon icon-gear">
Rebuilding
</div>
);
} else if (rebuildStatus === REBUILD_SUCCEEDED) {
return (
<div className="badge badge-success pull-right icon icon-check">
Rebuild Succeeded
</div>
);
} else if (rebuildStatus === REBUILD_FAILED) {
return (
<div className="badge badge-error pull-right icon icon-x">
Rebuild Failed
</div>
);
} else {
return '';
}
}
renderRebuildOutput(pack) {
if (this.rebuildStatuses.get(pack) === REBUILD_FAILED) {
return <pre>{this.rebuildFailureOutputs.get(pack)}</pre>;
} else {
return '';
}
}
renderIncompatibleModules(pack) {
return (
<ul>
{pack.incompatibleModules.map(nativeModule => (
<li>
<div className="icon icon-file-binary">
{nativeModule.name}@{nativeModule.version || 'unknown'} –{' '}
<span className="text-warning">{nativeModule.error}</span>
</div>
</li>
))}
</ul>
);
}
populateIncompatiblePackages() {
this.incompatiblePackages = this.packageManager
.getLoadedPackages()
.filter(pack => !pack.isCompatible());
for (let pack of this.incompatiblePackages) {
let buildFailureOutput = pack.getBuildFailureOutput();
if (buildFailureOutput) {
this.setPackageStatus(pack, REBUILD_FAILED);
this.setRebuildFailureOutput(pack, buildFailureOutput);
}
}
this.loaded = true;
etch.update(this);
}
async rebuildIncompatiblePackages() {
this.rebuildInProgress = true;
let rebuiltPackageCount = 0;
for (let pack of this.incompatiblePackages) {
this.setPackageStatus(pack, REBUILDING);
let { code, stderr } = await pack.rebuild();
if (code === 0) {
this.setPackageStatus(pack, REBUILD_SUCCEEDED);
rebuiltPackageCount++;
} else {
this.setRebuildFailureOutput(pack, stderr);
this.setPackageStatus(pack, REBUILD_FAILED);
}
}
this.rebuildInProgress = false;
this.rebuiltPackageCount = rebuiltPackageCount;
etch.update(this);
}
setPackageStatus(pack, status) {
this.rebuildStatuses.set(pack, status);
etch.update(this);
}
setRebuildFailureOutput(pack, output) {
this.rebuildFailureOutputs.set(pack, output);
etch.update(this);
}
getTitle() {
return 'Incompatible Packages';
}
getURI() {
return VIEW_URI;
}
getIconName() {
return 'package';
}
serialize() {
return { deserializer: 'IncompatiblePackagesComponent' };
}
}
| JavaScript | 4 | Embodimentgeniuslm3/BDB11A0E2DE062D2E39E4C5301B2FE5E | packages/incompatible-packages/lib/incompatible-packages-component.js | [
"MIT"
] |
// Whitney Music Box
//
// Jim Bumgardner jbum@jbum.com
48 => int nbrDots;
55 => float baseFreq;
180 => float durationOfPiece;
2.0/nbrDots => float dotGain;
fun void whitneyDot(float baseFreq, float secs, int nDots)
{
StifKarp voc => dac;
dotGain => voc.gain;
for (0 => int i; i < nDots; ++i)
{
baseFreq => voc.freq;
1 => voc.noteOn;
secs::second => now;
1 => voc.noteOff;
}
}
// Sample Chromatic Pitch Function
fun float pitchFuncC(float baseFreq, int noteIdx)
{
return baseFreq*Math.pow(2,noteIdx/12.0);
}
// Sample Reversed Harmonics Pitch Function
fun float pitchFuncH(float baseFreq, int noteIdx)
{
return baseFreq*(nbrDots-noteIdx);
}
for (0 => int i; i < nbrDots; ++i)
{
spork ~ whitneyDot(pitchFuncC(baseFreq,i), durationOfPiece/(i+1), i+1);
}
durationOfPiece::second => now;
| ChucK | 5 | Haroenv/Whitney-Music-Box-Examples | chuck/whitney.ck | [
"AAL"
] |
*/**
* The MIT License (MIT)
* Copyright (c) 2012 René van Mil
*
* 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.
*/
*----------------------------------------------------------------------*
* CLASS CL_CSV_PARSER DEFINITION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
class cl_csv_parser definition
public
inheriting from cl_object
final
create public .
public section.
*"* public components of class CL_CSV_PARSER
*"* do not include other source files here!!!
type-pools abap .
methods constructor
importing
!delegate type ref to if_csv_parser_delegate
!csvstring type string
!separator type c
!skip_first_line type abap_bool .
methods parse
raising
cx_csv_parse_error .
protected section.
*"* protected components of class CL_CSV_PARSER
*"* do not include other source files here!!!
private section.
*"* private components of class CL_CSV_PARSER
*"* do not include other source files here!!!
constants _textindicator type c value '"'. "#EC NOTEXT
data _delegate type ref to if_csv_parser_delegate .
data _csvstring type string .
data _separator type c .
type-pools abap .
data _skip_first_line type abap_bool .
methods _lines
returning
value(returning) type stringtab .
methods _parse_line
importing
!line type string
returning
value(returning) type stringtab
raising
cx_csv_parse_error .
endclass. "CL_CSV_PARSER DEFINITION
*----------------------------------------------------------------------*
* CLASS CL_CSV_PARSER IMPLEMENTATION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
class cl_csv_parser implementation.
* <SIGNATURE>---------------------------------------------------------------------------------------+
* | Instance Public Method CL_CSV_PARSER->CONSTRUCTOR
* +-------------------------------------------------------------------------------------------------+
* | [--->] DELEGATE TYPE REF TO IF_CSV_PARSER_DELEGATE
* | [--->] CSVSTRING TYPE STRING
* | [--->] SEPARATOR TYPE C
* | [--->] SKIP_FIRST_LINE TYPE ABAP_BOOL
* +--------------------------------------------------------------------------------------</SIGNATURE>
method constructor.
super->constructor( ).
_delegate = delegate.
_csvstring = csvstring.
_separator = separator.
_skip_first_line = skip_first_line.
endmethod. "constructor
* <SIGNATURE>---------------------------------------------------------------------------------------+
* | Instance Public Method CL_CSV_PARSER->PARSE
* +-------------------------------------------------------------------------------------------------+
* | [!CX!] CX_CSV_PARSE_ERROR
* +--------------------------------------------------------------------------------------</SIGNATURE>
method parse.
data msg type string.
if _csvstring is initial.
message e002(csv) into msg.
raise exception type cx_csv_parse_error
exporting
message = msg.
endif.
" Get the lines
data is_first_line type abap_bool value abap_true.
data lines type standard table of string.
lines = _lines( ).
field-symbols <line> type string.
loop at lines assigning <line>.
" Should we skip the first line?
if _skip_first_line = abap_true and is_first_line = abap_true.
is_first_line = abap_false.
continue.
endif.
" Parse the line
data values type standard table of string.
values = _parse_line( <line> ).
" Send values to delegate
_delegate->values_found( values ).
endloop.
endmethod. "parse
* <SIGNATURE>---------------------------------------------------------------------------------------+
* | Instance Private Method CL_CSV_PARSER->_LINES
* +-------------------------------------------------------------------------------------------------+
* | [<-()] RETURNING TYPE STRINGTAB
* +--------------------------------------------------------------------------------------</SIGNATURE>
method _lines.
split _csvstring at cl_abap_char_utilities=>cr_lf into table returning.
endmethod. "_lines
* <SIGNATURE>---------------------------------------------------------------------------------------+
* | Instance Private Method CL_CSV_PARSER->_PARSE_LINE
* +-------------------------------------------------------------------------------------------------+
* | [--->] LINE TYPE STRING
* | [<-()] RETURNING TYPE STRINGTAB
* | [!CX!] CX_CSV_PARSE_ERROR
* +--------------------------------------------------------------------------------------</SIGNATURE>
method _parse_line.
data msg type string.
data csvvalue type string.
data csvvalues type standard table of string.
data char type c.
data pos type i value 0.
data len type i.
len = strlen( line ).
while pos < len.
char = line+pos(1).
if char <> _separator.
if char = _textindicator.
data text_ended type abap_bool.
text_ended = abap_false.
while text_ended = abap_false.
pos = pos + 1.
if pos < len.
char = line+pos(1).
if char = _textindicator.
text_ended = abap_true.
else.
if char is initial. " Space
concatenate csvvalue ` ` into csvvalue.
else.
concatenate csvvalue char into csvvalue.
endif.
endif.
else.
" Reached the end of the line while inside a text value
" This indicates an error in the CSV formatting
text_ended = abap_true.
message e003(csv) into msg.
raise exception type cx_csv_parse_error
exporting
message = msg.
endif.
endwhile.
" Check if next character is a separator, otherwise the CSV formatting is incorrect
data nextpos type i.
nextpos = pos + 1.
if nextpos < len and line+nextpos(1) <> _separator.
message e003(csv) into msg.
raise exception type cx_csv_parse_error
exporting
message = msg.
endif.
else.
if char is initial. " Space
concatenate csvvalue ` ` into csvvalue.
else.
concatenate csvvalue char into csvvalue.
endif.
endif.
else.
append csvvalue to csvvalues.
clear csvvalue.
endif.
pos = pos + 1.
endwhile.
append csvvalue to csvvalues. " Don't forget the last value
returning = csvvalues.
endmethod. "_parse_line
endclass. "CL_CSV_PARSER IMPLEMENTATION | ABAP | 4 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/ABAP/cl_csv_parser.abap | [
"MIT"
] |
forall (a : Type) .
forall (b : Type) .
forall (c : Type) .
forall (d : Fields) .
forall (e : Type) .
forall (f : Type) .
{ or: Bool -> Bool -> Bool
, and: Bool -> Bool -> Bool
, apply: (b -> a) -> b -> a
, field: { foo: c, d } -> c
, _if: Bool -> e -> e -> e
, times: Natural -> Natural -> Natural
, plus: Natural -> Natural -> Natural
, append: Text -> Text -> Text
, fold: Natural -> (f -> f) -> f -> f
}
| Grace | 4 | DebugSteven/grace | tasty/data/complex/abstract-irreducible-type.grace | [
"BSD-3-Clause"
] |
console.log(`Oops! Gatsby noticed some lint or style warnings in the code for this
commit. Your changes have been committed, but you should fix the warnings before
creating a pull request.
Use 'npm run lint' to manually re-run these checks. You can also disable these
checks:
- for a single commit: git commit --no-verify
- for all future commits: npm run hooks:uninstall
`)
| JavaScript | 3 | JQuinnie/gatsby | scripts/on-lint-error.js | [
"MIT"
] |
;; Homerange example of R-extension
;;
;;
;; by Jan C. Thiele
;; University of Goettingen, Germany
;; Department Ecoinformatics, Biometrics and Forest Growth
;; Buesgenweg 4
;; 37077 Goettingen
;; Germany
;;
;; Contact: jthiele@gwdg.de
;;
;; Copyright: 2011, J.C. Thiele
extensions [r]
breed [animals animal]
breed [homeranges homerange]
animals-own
[ Name X Y ]
homeranges-own
[ Name ]
to setup
clear-all
r:clear
;; create three different animals (rabbit, cat, fox)
create-animals 3
[
if (who = 0)
[
set Name "rabbit"
set color 14
]
if (who = 1)
[
set Name "cat"
set color 44
]
if (who = 2)
[
set Name "fox"
set color 94
]
set xcor random-pxcor
set ycor random-pycor
set X (list xcor)
set Y (list ycor)
pen-down
]
go
end
to go
repeat 100
[
;; move the animals randomly
ask animals
[
let nextpatch patch-at-heading-and-distance random 360 random 3
if (nextpatch != nobody)
[ move-to nextpatch ]
set X lput xcor X
set Y lput ycor Y
]
]
end
to calc-homerange
r:eval "library(adehabitat)"
;; create an empty data.frame"
r:eval "turtles <- data.frame()"
;; merge the Name, X- and Y-lists of all animals to one big data.frame
ask animals
[
(r:putdataframe "turtle" "X" X "Y" Y)
r:eval (word "turtle <- data.frame(turtle, Name = '" Name "')")
r:eval "turtles <- rbind(turtles, turtle)"
]
;; split the data.frame into coordinates and factor variable
r:eval "xy <- turtles[,c('X','Y')]"
r:eval "id <- turtles$Name"
;; calculate homerange
r:eval "homerange <- mcp(xy, id)"
ifelse (plot-homerange)
[ plot-into-file ]
[
mark-homeranges
plot-area
]
end
to plot-into-file
;; plot the homerange polygons (into pdf-file)
r:eval (word "pdf('" homerange-plot ".pdf')" )
r:eval (word "plot(homerange, xlim=c(" min-pxcor "," max-pxcor "), ylim=c(" min-pycor "," max-pycor "))")
r:eval "dev.off()"
;; plot the homerange area depending on the homerange level (into pdf-file)
r:eval (word "pdf('" homerange-level-plot ".pdf')" )
r:eval "mcp.area(xy, id, unout='m2')"
r:eval "dev.off()"
end
to mark-homeranges
clear-drawing
ask animals
[
pen-up
;; get the points of the homerange polygon for the current animal
r:eval (word "temp <- subset(homerange, ID=='"Name"')")
let tempX r:get "temp$X"
let tempY r:get "temp$Y"
let tempXY (map [ [?1 ?2] -> list ?1 ?2 ] tempX tempY)
;; create a turtle, which draws the homerange boundary
hatch-homeranges 1
[
hide-turtle
set Name [Name] of myself
set color [color] of myself
]
;; draw the homerange boundary
foreach tempXY
[ [?1] ->
ask homeranges with [Name = [Name] of myself]
[
move-to patch (item 0 ?1) (item 1 ?1)
pen-down
]
]
;; connect the last point of the homerange with the first one, to close the polygon
ask homeranges with [Name = [Name] of myself]
[
let lastpoint first tempXY
move-to patch (item 0 lastpoint) (item 1 lastpoint)
]
]
end
to plot-area
clear-all-plots
let precstart 20
let precincre 5
;; calculate the size of the homerange depending on homerange level
r:eval (word "area <- mcp.area(xy, id, unout='m2', percent = seq(" precstart ",100, by = " precincre "), plotit=FALSE)")
;; plot the homerange area of every animal, using temporary plot pen
ask animals
[
let arealist r:get (word "area$" Name)
set-current-plot "home range area"
create-temporary-plot-pen Name
set-plot-pen-color color
let prec precstart
foreach arealist
[ [?1] ->
plotxy prec ?1
set prec prec + precincre
]
]
end
@#$#@#$#@
GRAPHICS-WINDOW
346
10
859
524
-1
-1
5.0
1
10
1
1
1
0
0
0
1
0
100
0
100
0
0
1
ticks
30.0
BUTTON
10
68
73
101
NIL
setup
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
BUTTON
9
113
128
146
NIL
calc-homerange
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
TEXTBOX
10
16
339
58
R-packages \"adehabitat\" and \"gpclib\" have to be installed!
17
15.0
1
SWITCH
5
176
148
209
plot-homerange
plot-homerange
1
1
-1000
INPUTBOX
5
220
200
280
homerange-plot
homerange-plot-filename
1
0
String
INPUTBOX
5
290
200
350
homerange-level-plot
homerange-level-plot-filename
1
0
String
PLOT
7
359
343
545
home range area
home-range level
home-range size (m2)
0.0
1.0
0.0
1.0
true
false
"" ""
PENS
"default" 1.0 0 -16777216 true "" ""
BUTTON
210
220
340
280
Choose path...
set homerange-plot user-new-file
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
BUTTON
210
290
340
350
Choose path...
set homerange-level-plot user-new-file\n
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
@#$#@#$#@
## WHAT IS IT?
This section could give a general understanding of what the model is trying to show or explain.
## HOW IT WORKS
This section could explain what rules the agents use to create the overall behavior of the model.
## HOW TO USE IT
This section could explain how to use the model, including a description of each of the items in the interface tab.
## THINGS TO NOTICE
This section could give some ideas of things for the user to notice while running the model.
## THINGS TO TRY
This section could give some ideas of things for the user to try to do (move sliders, switches, etc.) with the model.
## EXTENDING THE MODEL
This section could give some ideas of things to add or change in the procedures tab to make the model more complicated, detailed, accurate, etc.
## NETLOGO FEATURES
This section could point out any especially interesting or unusual features of NetLogo that the model makes use of, particularly in the Procedures tab. It might also point out places where workarounds were needed because of missing features.
## RELATED MODELS
This section could give the names of models in the NetLogo Models Library or elsewhere which are of related interest.
## CREDITS AND REFERENCES
This section could contain a reference to the model's URL on the web if it has one, as well as any other necessary credits or references.
@#$#@#$#@
default
true
0
Polygon -7500403 true true 150 5 40 250 150 205 260 250
airplane
true
0
Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15
arrow
true
0
Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150
box
false
0
Polygon -7500403 true true 150 285 285 225 285 75 150 135
Polygon -7500403 true true 150 135 15 75 150 15 285 75
Polygon -7500403 true true 15 75 15 225 150 285 150 135
Line -16777216 false 150 285 150 135
Line -16777216 false 150 135 15 75
Line -16777216 false 150 135 285 75
bug
true
0
Circle -7500403 true true 96 182 108
Circle -7500403 true true 110 127 80
Circle -7500403 true true 110 75 80
Line -7500403 true 150 100 80 30
Line -7500403 true 150 100 220 30
butterfly
true
0
Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240
Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240
Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163
Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165
Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225
Circle -16777216 true false 135 90 30
Line -16777216 false 150 105 195 60
Line -16777216 false 150 105 105 60
car
false
0
Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180
Circle -16777216 true false 180 180 90
Circle -16777216 true false 30 180 90
Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89
Circle -7500403 true true 47 195 58
Circle -7500403 true true 195 195 58
circle
false
0
Circle -7500403 true true 0 0 300
circle 2
false
0
Circle -7500403 true true 0 0 300
Circle -16777216 true false 30 30 240
cow
false
0
Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167
Polygon -7500403 true true 73 210 86 251 62 249 48 208
Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123
cylinder
false
0
Circle -7500403 true true 0 0 300
dot
false
0
Circle -7500403 true true 90 90 120
face happy
false
0
Circle -7500403 true true 8 8 285
Circle -16777216 true false 60 75 60
Circle -16777216 true false 180 75 60
Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240
face neutral
false
0
Circle -7500403 true true 8 7 285
Circle -16777216 true false 60 75 60
Circle -16777216 true false 180 75 60
Rectangle -16777216 true false 60 195 240 225
face sad
false
0
Circle -7500403 true true 8 8 285
Circle -16777216 true false 60 75 60
Circle -16777216 true false 180 75 60
Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183
fish
false
0
Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166
Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165
Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60
Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166
Circle -16777216 true false 215 106 30
flag
false
0
Rectangle -7500403 true true 60 15 75 300
Polygon -7500403 true true 90 150 270 90 90 30
Line -7500403 true 75 135 90 135
Line -7500403 true 75 45 90 45
flower
false
0
Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135
Circle -7500403 true true 85 132 38
Circle -7500403 true true 130 147 38
Circle -7500403 true true 192 85 38
Circle -7500403 true true 85 40 38
Circle -7500403 true true 177 40 38
Circle -7500403 true true 177 132 38
Circle -7500403 true true 70 85 38
Circle -7500403 true true 130 25 38
Circle -7500403 true true 96 51 108
Circle -16777216 true false 113 68 74
Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218
Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240
house
false
0
Rectangle -7500403 true true 45 120 255 285
Rectangle -16777216 true false 120 210 180 285
Polygon -7500403 true true 15 120 150 15 285 120
Line -16777216 false 30 120 270 120
leaf
false
0
Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195
Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195
line
true
0
Line -7500403 true 150 0 150 300
line half
true
0
Line -7500403 true 150 0 150 150
pentagon
false
0
Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120
person
false
0
Circle -7500403 true true 110 5 80
Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90
Rectangle -7500403 true true 127 79 172 94
Polygon -7500403 true true 195 90 240 150 225 180 165 105
Polygon -7500403 true true 105 90 60 150 75 180 135 105
plant
false
0
Rectangle -7500403 true true 135 90 165 300
Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285
Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285
Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210
Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135
Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135
Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60
Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90
square
false
0
Rectangle -7500403 true true 30 30 270 270
square 2
false
0
Rectangle -7500403 true true 30 30 270 270
Rectangle -16777216 true false 60 60 240 240
star
false
0
Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108
target
false
0
Circle -7500403 true true 0 0 300
Circle -16777216 true false 30 30 240
Circle -7500403 true true 60 60 180
Circle -16777216 true false 90 90 120
Circle -7500403 true true 120 120 60
tree
false
0
Circle -7500403 true true 118 3 94
Rectangle -6459832 true false 120 195 180 300
Circle -7500403 true true 65 21 108
Circle -7500403 true true 116 41 127
Circle -7500403 true true 45 90 120
Circle -7500403 true true 104 74 152
triangle
false
0
Polygon -7500403 true true 150 30 15 255 285 255
triangle 2
false
0
Polygon -7500403 true true 150 30 15 255 285 255
Polygon -16777216 true false 151 99 225 223 75 224
truck
false
0
Rectangle -7500403 true true 4 45 195 187
Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194
Rectangle -1 true false 195 60 195 105
Polygon -16777216 true false 238 112 252 141 219 141 218 112
Circle -16777216 true false 234 174 42
Rectangle -7500403 true true 181 185 214 194
Circle -16777216 true false 144 174 42
Circle -16777216 true false 24 174 42
Circle -7500403 false true 24 174 42
Circle -7500403 false true 144 174 42
Circle -7500403 false true 234 174 42
turtle
true
0
Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210
Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105
Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105
Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87
Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210
Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99
wheel
false
0
Circle -7500403 true true 3 3 294
Circle -16777216 true false 30 30 240
Line -7500403 true 150 285 150 15
Line -7500403 true 15 150 285 150
Circle -7500403 true true 120 120 60
Line -7500403 true 216 40 79 269
Line -7500403 true 40 84 269 221
Line -7500403 true 40 216 269 79
Line -7500403 true 84 40 221 269
x
false
0
Polygon -7500403 true true 270 75 225 30 30 225 75 270
Polygon -7500403 true true 30 75 75 30 270 225 225 270
@#$#@#$#@
NetLogo 6.0-BETA2
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
default
0.0
-0.2 0 0.0 1.0
0.0 1 1.0 0.0
0.2 0 0.0 1.0
link direction
true
0
Line -7500403 true 150 150 90 180
Line -7500403 true 150 150 210 180
@#$#@#$#@
1
@#$#@#$#@
| NetLogo | 5 | RongjianDai/NetLogo | examples/homerange-example.nlogo | [
"Vim",
"X11"
] |
{}
:configs $ {} (:reload-fn |app.main/reload!) (:port 6001) (:output |src) (:storage-key |calcit.cirru) (:version |0.0.3-a2)
:modules $ [] |respo.calcit/ |lilac/ |memof/ |respo-ui.calcit/ |respo-markdown.calcit/ |reel.calcit/ |calcit-test/
:init-fn |app.main/main!
:extension |.cljs
:ir $ {} (:package |app)
:files $ {}
|app.comp.container $ {}
:defs $ {}
|comp-container $ {}
:data $ {}
|T $ {} (:author |root) (:text |defcomp) (:time 1499755354983) (:type :leaf) (:id |Hy6-sOYqaSb)
|j $ {} (:author |root) (:text |comp-container) (:time 1499755354983) (:type :leaf) (:id |HyC-jOFq6r-)
|r $ {}
:data $ {}
|T $ {} (:author |root) (:text |reel) (:time 1507461830530) (:type :leaf) (:id |r1gMj_KqTSZ)
:time 1499755354983
:type :expr
:id |H1yfo_t9aB-
|v $ {} (:author |root)
:data $ {}
|D $ {} (:author |root) (:text |let) (:time 1507461833421) (:type :leaf) (:id |SkGx0cFPh-)
|L $ {} (:author |root)
:data $ {}
|T $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |store) (:time 1507461835738) (:type :leaf) (:id |SyMAqtD2W)
|j $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |:store) (:time 1507461837276) (:type :leaf) (:id |r1GEC5Kv3Z)
|j $ {} (:author |root) (:text |reel) (:time 1507461838285) (:type :leaf) (:id |B1NBC5tPh-)
:time 1507461836110
:type :expr
:id |S1XN05tw3-
:time 1507461834650
:type :expr
:id |Hy7CcFP3W
|j $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |states) (:time 1509727105928) (:type :leaf) (:id |rkgYtjzqAWleaf)
|j $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |:states) (:time 1509727107223) (:type :leaf) (:id |HJE9tjzqAb)
|j $ {} (:author |root) (:text |store) (:time 1509727108033) (:type :leaf) (:id |SySiYoMc0-)
:time 1509727106316
:type :expr
:id |HJBcYszqCZ
:time 1509727104820
:type :expr
:id |rkgYtjzqAW
:time 1507461834351
:type :expr
:id |SyeGC5tw3-
|f $ {}
:data $ {}
|D $ {} (:text |div) (:type :leaf) (:at 1578205111454) (:by |rJG4IHzWf) (:id |ZhEqyLc_)
|L $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205112028) (:by |rJG4IHzWf) (:id |QqKSwJzdy)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205264646) (:by |rJG4IHzWf) (:id |sSQB0eUp)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1578205266009) (:by |rJG4IHzWf) (:id |kTRguDLhJ)
|j $ {} (:text |ui/global) (:type :leaf) (:at 1578205266494) (:by |rJG4IHzWf) (:id |vyxqnXEp)
|r $ {} (:text |ui/fullscreen) (:type :leaf) (:at 1578205273953) (:by |rJG4IHzWf) (:id |nZ1ebFA3Y)
:type :expr
:at 1578205264924
:by |rJG4IHzWf
:id |tmm802jES
:type :expr
:at 1578205263267
:by |rJG4IHzWf
:id |1HqK3jf_t
:type :expr
:at 1578205111718
:by |rJG4IHzWf
:id |T0LkKevVS
|P $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1578205283608) (:by |rJG4IHzWf) (:id |Mgj5zgKYleaf)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205284222) (:by |rJG4IHzWf) (:id |bxoo3w5vR)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205286618) (:by |rJG4IHzWf) (:id |4cO2dholQ)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205287819) (:by |rJG4IHzWf) (:id |UT0hC94SF)
|j $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1578205343852) (:by |rJG4IHzWf) (:id |KPqyRe8Y4)
|j $ {} (:text |80) (:type :leaf) (:at 1578205344662) (:by |rJG4IHzWf) (:id |HS0bwzWns)
:type :expr
:at 1578205341747
:by |rJG4IHzWf
:id |maNb1AC-g
|r $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1578205430401) (:by |rJG4IHzWf) (:id |HWx_14HcTleaf)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1578205431700) (:by |rJG4IHzWf) (:id |SVQu8chTl)
|j $ {} (:text |200) (:type :leaf) (:at 1578205432511) (:by |rJG4IHzWf) (:id |0-bgAZOwL)
|r $ {} (:text |80) (:type :leaf) (:at 1578205432840) (:by |rJG4IHzWf) (:id |RIBgSVqge)
|v $ {} (:text |70) (:type :leaf) (:at 1578208777255) (:by |rJG4IHzWf) (:id |Y8N6mWn3X)
:type :expr
:at 1578205430642
:by |rJG4IHzWf
:id |QUqmQwbco
:type :expr
:at 1578205426951
:by |rJG4IHzWf
:id |HWx_14HcT
|v $ {}
:data $ {}
|T $ {} (:text |:color) (:type :leaf) (:at 1578205438141) (:by |rJG4IHzWf) (:id |5WWYZpiJleaf)
|j $ {} (:text |:white) (:type :leaf) (:at 1578205439243) (:by |rJG4IHzWf) (:id |GI5_9s452)
:type :expr
:at 1578205437218
:by |rJG4IHzWf
:id |5WWYZpiJ
:type :expr
:at 1578205286949
:by |rJG4IHzWf
:id |sEuVeW_3z
:type :expr
:at 1578205284821
:by |rJG4IHzWf
:id |l2Kb1A0-n
:type :expr
:at 1578205283881
:by |rJG4IHzWf
:id |RejEqKCTC
|r $ {}
:data $ {}
|D $ {} (:text |div) (:type :leaf) (:at 1578205316439) (:by |rJG4IHzWf) (:id |r-0uzvVv)
|L $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205322414) (:by |rJG4IHzWf) (:id |aualeJ7P)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205324089) (:by |rJG4IHzWf) (:id |LTfJk-Nc)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1578205336045) (:by |rJG4IHzWf) (:id |QaKGg94qg)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205336045) (:by |rJG4IHzWf) (:id |rZ9duOHBr)
|j $ {}
:data $ {}
|T $ {} (:text |:margin) (:type :leaf) (:at 1578205336045) (:by |rJG4IHzWf) (:id |cE01bf3gW)
|j $ {} (:text |:auto) (:type :leaf) (:at 1578205336045) (:by |rJG4IHzWf) (:id |IaTbKnKul)
:type :expr
:at 1578205336045
:by |rJG4IHzWf
:id |qN8UiJRHp
|r $ {}
:data $ {}
|T $ {} (:text |:max-width) (:type :leaf) (:at 1578205336045) (:by |rJG4IHzWf) (:id |DHp9nw5B5)
|j $ {} (:text |960) (:type :leaf) (:at 1578205336045) (:by |rJG4IHzWf) (:id |yk_aJxeLh)
:type :expr
:at 1578205336045
:by |rJG4IHzWf
:id |9Lr2rJABv
:type :expr
:at 1578205336045
:by |rJG4IHzWf
:id |AtT5RNqMu
:type :expr
:at 1578205336045
:by |rJG4IHzWf
:id |ufnG9GoUE
:type :expr
:at 1578205323218
:by |rJG4IHzWf
:id |EpT4ZF4S-
:type :expr
:at 1578205316624
:by |rJG4IHzWf
:id |eSZxOlL4X
|T $ {}
:data $ {}
|D $ {} (:text |div) (:type :leaf) (:at 1578207753452) (:by |rJG4IHzWf) (:id |TwXLlrx3v)
|L $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578207754080) (:by |rJG4IHzWf) (:id |ryUEXcXeY)
:type :expr
:at 1578207753730
:by |rJG4IHzWf
:id |qv_PPFS2z
|T $ {}
:data $ {}
|T $ {} (:text |<>) (:type :leaf) (:at 1578205290352) (:by |rJG4IHzWf) (:id |GZs-7dJQ3leaf)
|j $ {} (:text "|\"九章编程") (:type :leaf) (:at 1578207827363) (:by |rJG4IHzWf) (:id |n0a-upUnt)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578207737737) (:by |rJG4IHzWf) (:id |iZEV7APE)
|j $ {}
:data $ {}
|T $ {} (:text |:font-size) (:type :leaf) (:at 1578207740455) (:by |rJG4IHzWf) (:id |9_oIERg7Q)
|j $ {} (:text |40) (:type :leaf) (:at 1578207740455) (:by |rJG4IHzWf) (:id |MUd_5jPx7)
:type :expr
:at 1578207740455
:by |rJG4IHzWf
:id |zEwi2NVNm
|r $ {}
:data $ {}
|T $ {} (:text |:font-family) (:type :leaf) (:at 1578207744224) (:by |rJG4IHzWf) (:id |GzTLmIQKP)
|j $ {} (:text |ui/font-fancy) (:type :leaf) (:at 1578207744224) (:by |rJG4IHzWf) (:id |3hx14oG5l)
:type :expr
:at 1578207744224
:by |rJG4IHzWf
:id |kpUH_ydw5
:type :expr
:at 1578207737285
:by |rJG4IHzWf
:id |oZaZcct-R
:type :expr
:at 1578205288989
:by |rJG4IHzWf
:id |GZs-7dJQ3
|b $ {}
:data $ {}
|T $ {} (:text |=<) (:type :leaf) (:at 1578207962196) (:by |rJG4IHzWf) (:id |L-d15dWsIleaf)
|j $ {} (:text |8) (:type :leaf) (:at 1578207962614) (:by |rJG4IHzWf) (:id |jPPE29HVS)
|r $ {} (:text |nil) (:type :leaf) (:at 1578207963960) (:by |rJG4IHzWf) (:id |Ae8-DgnfM)
:type :expr
:at 1578207961497
:by |rJG4IHzWf
:id |L-d15dWsI
|j $ {}
:data $ {}
|T $ {} (:text |<>) (:type :leaf) (:at 1578205290352) (:by |rJG4IHzWf) (:id |GZs-7dJQ3leaf)
|j $ {} (:text "|\"(The Nine Chapters on the Mathematical Art)") (:type :leaf) (:at 1578207937095) (:by |rJG4IHzWf) (:id |n0a-upUnt)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578207737737) (:by |rJG4IHzWf) (:id |iZEV7APE)
|j $ {}
:data $ {}
|T $ {} (:text |:font-size) (:type :leaf) (:at 1578207740455) (:by |rJG4IHzWf) (:id |9_oIERg7Q)
|j $ {} (:text |18) (:type :leaf) (:at 1578207950454) (:by |rJG4IHzWf) (:id |MUd_5jPx7)
:type :expr
:at 1578207740455
:by |rJG4IHzWf
:id |zEwi2NVNm
|r $ {}
:data $ {}
|T $ {} (:text |:font-family) (:type :leaf) (:at 1578207744224) (:by |rJG4IHzWf) (:id |GzTLmIQKP)
|j $ {} (:text |ui/font-fancy) (:type :leaf) (:at 1578207744224) (:by |rJG4IHzWf) (:id |3hx14oG5l)
:type :expr
:at 1578207744224
:by |rJG4IHzWf
:id |kpUH_ydw5
|v $ {}
:data $ {}
|T $ {} (:text |:font-weight) (:type :leaf) (:at 1578207973931) (:by |rJG4IHzWf) (:id |i2jMDjmlBleaf)
|j $ {} (:text |300) (:type :leaf) (:at 1578207978392) (:by |rJG4IHzWf) (:id |uu_jF9f3K)
:type :expr
:at 1578207969036
:by |rJG4IHzWf
:id |i2jMDjmlB
:type :expr
:at 1578207737285
:by |rJG4IHzWf
:id |oZaZcct-R
:type :expr
:at 1578205288989
:by |rJG4IHzWf
:id |rZ0KxmeI
:type :expr
:at 1578207751714
:by |rJG4IHzWf
:id |DEYSd9RL
|j $ {}
:data $ {}
|D $ {} (:text |div) (:type :leaf) (:at 1578207768175) (:by |rJG4IHzWf) (:id |mSjPuTPx3)
|L $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578207768834) (:by |rJG4IHzWf) (:id |mytwdWUit)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578207772742) (:by |rJG4IHzWf) (:id |23ii5r50)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578207776073) (:by |rJG4IHzWf) (:id |26PMMtW2V)
|j $ {}
:data $ {}
|T $ {} (:text |:width) (:type :leaf) (:at 1578207777685) (:by |rJG4IHzWf) (:id |P-czr0qlw)
|j $ {} (:text "|\"60%") (:type :leaf) (:at 1578207788765) (:by |rJG4IHzWf) (:id |U7i6R_LFY)
:type :expr
:at 1578207776369
:by |rJG4IHzWf
:id |yS07EaPk-
:type :expr
:at 1578207773053
:by |rJG4IHzWf
:id |TN3vFAmbW
:type :expr
:at 1578207771287
:by |rJG4IHzWf
:id |6XZRxyZf4
:type :expr
:at 1578207768471
:by |rJG4IHzWf
:id |58B1V53zV
|T $ {}
:data $ {}
|T $ {} (:text |<>) (:type :leaf) (:at 1578207710814) (:by |rJG4IHzWf) (:id |SKeyj8tIleaf)
|j $ {} (:text |jiuzhang-quote) (:type :leaf) (:at 1578207718287) (:by |rJG4IHzWf) (:id |5WqFYslX)
:type :expr
:at 1578207710448
:by |rJG4IHzWf
:id |SKeyj8tI
|j $ {}
:data $ {}
|T $ {} (:text |<>) (:type :leaf) (:at 1578327786314) (:by |rJG4IHzWf) (:id |8rrY1NGRLleaf)
|j $ {} (:text "|\"(This is toy project.)") (:type :leaf) (:at 1578327800234) (:by |rJG4IHzWf) (:id |hf0XIlTo_)
:type :expr
:at 1578327785869
:by |rJG4IHzWf
:id |8rrY1NGRL
:type :expr
:at 1578207766595
:by |rJG4IHzWf
:id |l5pdhMYIa
:type :expr
:at 1578205315686
:by |rJG4IHzWf
:id |9PhNIY7j
:type :expr
:at 1578205283107
:by |rJG4IHzWf
:id |Mgj5zgKY
|T $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |comp-runner) (:type :leaf) (:at 1578205060095) (:by |rJG4IHzWf) (:id |HRAP13Iuleaf)
|b $ {}
:data $ {}
|D $ {} (:text |>>) (:type :leaf) (:at 1585589790057) (:by |rJG4IHzWf) (:id |UZ50JVt3p4)
|T $ {} (:text |states) (:type :leaf) (:at 1578205620337) (:by |rJG4IHzWf) (:id |bUzfRh15)
|j $ {} (:text |:list) (:type :leaf) (:at 1585589790795) (:by |rJG4IHzWf) (:id |xaCZBYnl--)
:type :expr
:at 1585589789347
:by |rJG4IHzWf
:id |RA9iYZfUl
|j $ {} (:text "|\"取数于列") (:type :leaf) (:at 1578328418577) (:by |rJG4IHzWf) (:id |scDnsDsJ)
|r $ {}
:data $ {}
|T $ {} (:text |inline) (:type :leaf) (:at 1578205639192) (:by |rJG4IHzWf) (:id |2zrZXaaqd)
|j $ {} (:text "|\"tests/list.cirru") (:type :leaf) (:at 1626544858992) (:by |rJG4IHzWf) (:id |0UKx9Stlp)
:type :expr
:at 1578205637074
:by |rJG4IHzWf
:id |IsjxZEzn
:text "|\""
:type :expr
:at 1578245249371
:by |rJG4IHzWf
:id |vT7ij0_e1
|yj $ {}
:data $ {}
|T $ {} (:text |comp-runner) (:type :leaf) (:at 1578205060095) (:by |rJG4IHzWf) (:id |HRAP13Iuleaf)
|b $ {}
:data $ {}
|D $ {} (:text |>>) (:type :leaf) (:at 1585589790057) (:by |rJG4IHzWf) (:id |UZ50JVt3p4)
|T $ {} (:text |states) (:type :leaf) (:at 1578205620337) (:by |rJG4IHzWf) (:id |bUzfRh15)
|j $ {} (:text |:native-api) (:type :leaf) (:at 1585673275713) (:by |rJG4IHzWf) (:id |xaCZBYnl--)
:type :expr
:at 1585589789347
:by |rJG4IHzWf
:id |RA9iYZfUl
|j $ {} (:text "|\"用平台之函数") (:type :leaf) (:at 1585673280868) (:by |rJG4IHzWf) (:id |scDnsDsJ)
|r $ {}
:data $ {}
|T $ {} (:text |inline) (:type :leaf) (:at 1578205639192) (:by |rJG4IHzWf) (:id |2zrZXaaqd)
|j $ {} (:text "|\"tests/native-api.cirru") (:type :leaf) (:at 1626544860525) (:by |rJG4IHzWf) (:id |0UKx9Stlp)
:type :expr
:at 1578205637074
:by |rJG4IHzWf
:id |IsjxZEzn
:text "|\""
:type :expr
:at 1578245249371
:by |rJG4IHzWf
:id |-H4KQBWvN
|D $ {} (:text |div) (:type :leaf) (:at 1578205147498) (:by |rJG4IHzWf) (:id |50AWFPTaU)
|L $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205148080) (:by |rJG4IHzWf) (:id |sOxwkHt7y)
|j $ {}
:data $ {}
|D $ {} (:text |:style) (:type :leaf) (:at 1578205158914) (:by |rJG4IHzWf) (:id |ern8BmfXg)
|T $ {}
:data $ {}
|D $ {} (:text |merge) (:type :leaf) (:at 1578205238707) (:by |rJG4IHzWf) (:id |RNm-gyKQe)
|T $ {}
:data $ {}
|D $ {} (:text |{}) (:type :leaf) (:at 1578205156530) (:by |rJG4IHzWf) (:id |mFzlWbwo)
|T $ {}
:data $ {}
|T $ {} (:text |:margin) (:type :leaf) (:at 1578205151040) (:by |rJG4IHzWf) (:id |DKYdn6Gu6)
|j $ {} (:text |:auto) (:type :leaf) (:at 1578205153633) (:by |rJG4IHzWf) (:id |RHzasSD4)
:type :expr
:at 1578205150092
:by |rJG4IHzWf
:id |RSx-XhN0
|j $ {}
:data $ {}
|T $ {} (:text |:max-width) (:type :leaf) (:at 1578205177047) (:by |rJG4IHzWf) (:id |znTsc9nEs)
|j $ {} (:text |960) (:type :leaf) (:at 1578205177047) (:by |rJG4IHzWf) (:id |Fs30gCfgf)
:type :expr
:at 1578205177047
:by |rJG4IHzWf
:id |wjuOSB3uW
|r $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1578205419663) (:by |rJG4IHzWf) (:id |KfiE-w3Czleaf)
|j $ {} (:text "|\"40px 0") (:type :leaf) (:at 1578205422713) (:by |rJG4IHzWf) (:id |Co0F23aUL)
:type :expr
:at 1578205412755
:by |rJG4IHzWf
:id |KfiE-w3Cz
:type :expr
:at 1578205155892
:by |rJG4IHzWf
:id |FR9udJMqD
:type :expr
:at 1578205237712
:by |rJG4IHzWf
:id |0alcqog9T
:type :expr
:at 1578205157551
:by |rJG4IHzWf
:id |_U-68pseL
:type :expr
:at 1578205147736
:by |rJG4IHzWf
:id |WlVXrhWuI
|T $ {}
:data $ {}
|T $ {} (:text |comp-runner) (:type :leaf) (:at 1578205060095) (:by |rJG4IHzWf) (:id |HRAP13Iuleaf)
|b $ {}
:data $ {}
|D $ {} (:text |>>) (:type :leaf) (:at 1585589757123) (:by |rJG4IHzWf) (:id |0FdZMt9x2h)
|T $ {} (:text |states) (:type :leaf) (:at 1578205620337) (:by |rJG4IHzWf) (:id |bUzfRh15)
|j $ {} (:text |:variables) (:type :leaf) (:at 1585589758015) (:by |rJG4IHzWf) (:id |dtCFJBFxHO)
:type :expr
:at 1585589756324
:by |rJG4IHzWf
:id |c59JV_kzT
|j $ {} (:text "|\"名也") (:type :leaf) (:at 1578245422984) (:by |rJG4IHzWf) (:id |scDnsDsJ)
|r $ {}
:data $ {}
|T $ {} (:text |inline) (:type :leaf) (:at 1578205639192) (:by |rJG4IHzWf) (:id |2zrZXaaqd)
|j $ {} (:text "|\"tests/variables.cirru") (:type :leaf) (:at 1626544843190) (:by |rJG4IHzWf) (:id |0UKx9Stlp)
:type :expr
:at 1578205637074
:by |rJG4IHzWf
:id |IsjxZEzn
:type :expr
:at 1578205566819
:by |rJG4IHzWf
:id |ro36dFNRg
|j $ {}
:data $ {}
|T $ {} (:text |comp-runner) (:type :leaf) (:at 1578205060095) (:by |rJG4IHzWf) (:id |HRAP13Iuleaf)
|b $ {}
:data $ {}
|D $ {} (:text |>>) (:type :leaf) (:at 1585589762888) (:by |rJG4IHzWf) (:id |-_HHx_1SKQ)
|T $ {} (:text |states) (:type :leaf) (:at 1578205620337) (:by |rJG4IHzWf) (:id |bUzfRh15)
|j $ {} (:text |:data) (:type :leaf) (:at 1585589764129) (:by |rJG4IHzWf) (:id |Uluew2W4z3)
:type :expr
:at 1585589762158
:by |rJG4IHzWf
:id |8J8jmpOHe
|j $ {} (:text "|\"列置者") (:type :leaf) (:at 1578245417449) (:by |rJG4IHzWf) (:id |scDnsDsJ)
|r $ {}
:data $ {}
|T $ {} (:text |inline) (:type :leaf) (:at 1578205639192) (:by |rJG4IHzWf) (:id |2zrZXaaqd)
|j $ {} (:text "|\"tests/data.cirru") (:type :leaf) (:at 1626544845861) (:by |rJG4IHzWf) (:id |0UKx9Stlp)
:type :expr
:at 1578205637074
:by |rJG4IHzWf
:id |IsjxZEzn
:type :expr
:at 1578205566819
:by |rJG4IHzWf
:id |qXTJ5j4S
|r $ {}
:data $ {}
|T $ {} (:text |comp-runner) (:type :leaf) (:at 1578205060095) (:by |rJG4IHzWf) (:id |HRAP13Iuleaf)
|b $ {}
:data $ {}
|D $ {} (:text |>>) (:type :leaf) (:at 1585589768672) (:by |rJG4IHzWf) (:id |oYASpjYtB)
|T $ {} (:text |states) (:type :leaf) (:at 1578205620337) (:by |rJG4IHzWf) (:id |bUzfRh15)
|j $ {} (:text |:fn) (:type :leaf) (:at 1585589769793) (:by |rJG4IHzWf) (:id |gOSDy_mo1)
:type :expr
:at 1585589767992
:by |rJG4IHzWf
:id |BUzFwuKL-n
|j $ {} (:text "|\"术曰") (:type :leaf) (:at 1578245406942) (:by |rJG4IHzWf) (:id |scDnsDsJ)
|r $ {}
:data $ {}
|T $ {} (:text |inline) (:type :leaf) (:at 1578205639192) (:by |rJG4IHzWf) (:id |2zrZXaaqd)
|j $ {} (:text "|\"tests/fn.cirru") (:type :leaf) (:at 1626544849665) (:by |rJG4IHzWf) (:id |0UKx9Stlp)
:type :expr
:at 1578205637074
:by |rJG4IHzWf
:id |IsjxZEzn
:type :expr
:at 1578205566819
:by |rJG4IHzWf
:id |VTpgTxHuS
|v $ {}
:data $ {}
|T $ {} (:text |comp-runner) (:type :leaf) (:at 1578205060095) (:by |rJG4IHzWf) (:id |HRAP13Iuleaf)
|b $ {}
:data $ {}
|D $ {} (:text |>>) (:type :leaf) (:at 1585589774790) (:by |rJG4IHzWf) (:id |xaT7wd9TN)
|T $ {} (:text |states) (:type :leaf) (:at 1578205620337) (:by |rJG4IHzWf) (:id |bUzfRh15)
|j $ {} (:text |:if) (:type :leaf) (:at 1585589775584) (:by |rJG4IHzWf) (:id |0hdbWzWFbZ)
:type :expr
:at 1585589773758
:by |rJG4IHzWf
:id |wS_je4X_j6
|j $ {} (:text "|\"若语句") (:type :leaf) (:at 1578245399994) (:by |rJG4IHzWf) (:id |scDnsDsJ)
|r $ {}
:data $ {}
|T $ {} (:text |inline) (:type :leaf) (:at 1578205639192) (:by |rJG4IHzWf) (:id |2zrZXaaqd)
|j $ {} (:text "|\"tests/if.cirru") (:type :leaf) (:at 1626544852103) (:by |rJG4IHzWf) (:id |0UKx9Stlp)
:type :expr
:at 1578205637074
:by |rJG4IHzWf
:id |IsjxZEzn
:text "|\"ro"
:type :expr
:at 1578245389275
:by |rJG4IHzWf
:id |DR2wTJcm
|x $ {}
:data $ {}
|T $ {} (:text |comp-runner) (:type :leaf) (:at 1578205060095) (:by |rJG4IHzWf) (:id |HRAP13Iuleaf)
|b $ {}
:data $ {}
|D $ {} (:text |>>) (:type :leaf) (:at 1585589779602) (:by |rJG4IHzWf) (:id |BF7KG3F5w)
|T $ {} (:text |states) (:type :leaf) (:at 1578205620337) (:by |rJG4IHzWf) (:id |bUzfRh15)
|j $ {} (:text |:math) (:type :leaf) (:at 1585589780395) (:by |rJG4IHzWf) (:id |aiYDgXz9-)
:type :expr
:at 1585589778872
:by |rJG4IHzWf
:id |RbS1vNwt1W
|j $ {} (:text "|\"算术") (:type :leaf) (:at 1578245402941) (:by |rJG4IHzWf) (:id |scDnsDsJ)
|r $ {}
:data $ {}
|T $ {} (:text |inline) (:type :leaf) (:at 1578205639192) (:by |rJG4IHzWf) (:id |2zrZXaaqd)
|j $ {} (:text "|\"tests/math.cirru") (:type :leaf) (:at 1626544855882) (:by |rJG4IHzWf) (:id |0UKx9Stlp)
:type :expr
:at 1578205637074
:by |rJG4IHzWf
:id |IsjxZEzn
:type :expr
:at 1578205566819
:by |rJG4IHzWf
:id |7tb0pqgGz
|y $ {}
:data $ {}
|T $ {} (:text |comp-runner) (:type :leaf) (:at 1578205060095) (:by |rJG4IHzWf) (:id |HRAP13Iuleaf)
|b $ {}
:data $ {}
|D $ {} (:text |>>) (:type :leaf) (:at 1585589784442) (:by |rJG4IHzWf) (:id |cdPhAmfvh9)
|T $ {} (:text |states) (:type :leaf) (:at 1578205620337) (:by |rJG4IHzWf) (:id |bUzfRh15)
|j $ {} (:text |:fibo) (:type :leaf) (:at 1585589785247) (:by |rJG4IHzWf) (:id |xhTX8d_Hh9)
:type :expr
:at 1585589783779
:by |rJG4IHzWf
:id |S--bR7bXps
|j $ {} (:text "|\"菲氏数") (:type :leaf) (:at 1578245254268) (:by |rJG4IHzWf) (:id |scDnsDsJ)
|r $ {}
:data $ {}
|T $ {} (:text |inline) (:type :leaf) (:at 1578205639192) (:by |rJG4IHzWf) (:id |2zrZXaaqd)
|j $ {} (:text "|\"tests/fibo.cirru") (:type :leaf) (:at 1626544857307) (:by |rJG4IHzWf) (:id |0UKx9Stlp)
:type :expr
:at 1578205637074
:by |rJG4IHzWf
:id |IsjxZEzn
:text "|\""
:type :expr
:at 1578245249371
:by |rJG4IHzWf
:id |H3goo_2b
:type :expr
:at 1578205146720
:by |rJG4IHzWf
:id |eTw35mFp
|b $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |IdWlMyvaB)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |lgSO_qh_K)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |-cmeLMRRR)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |1wCVPwxUl)
|j $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |O3V-FKzTj)
|j $ {} (:text |80) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |vUofkPLHW)
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |mbkNWgYL-
|r $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |DyNxLibVu)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1578208773218) (:by |rJG4IHzWf) (:id |KTYHy8vAg)
|j $ {} (:text |200) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |UHo4h7YTV5)
|r $ {} (:text |80) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |RTM3y1zPyA)
|v $ {} (:text |70) (:type :leaf) (:at 1578208774897) (:by |rJG4IHzWf) (:id |fncivE38xV)
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |KnJ1aWrKS
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |dSNA2XGvb
|v $ {}
:data $ {}
|T $ {} (:text |:color) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |KG0k0VayiI)
|j $ {} (:text |:white) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |4fZpLD94Cu)
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |43KhmmlCDw
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |jiTIHyxZa
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |t_7yT4er3
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |5FpMeUgUE
|r $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |ZxefjIEm_p)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |p4gvpie37L)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |IWFhDrkCsK)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |qHTjSr4yE2)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |2c-im8HpTQ)
|j $ {}
:data $ {}
|T $ {} (:text |:margin) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |igwVplttMV)
|j $ {} (:text |:auto) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |P6Hx3rdWhP)
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |2__f7_1B4j
|r $ {}
:data $ {}
|T $ {} (:text |:max-width) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |W4OydXkbrQ)
|j $ {} (:text |960) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |l3QPVDnTN1)
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |ZANhyaoxgK
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |e-zzRWlviP
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |PcYpMN7w-Q
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |V7G3pwd1kZ
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |vkDdAk3h-n
|v $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |0wVd-ty3FZ)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |SZTuP5i-i5)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |RHZVsjhG8P)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |9gueJuLcEj)
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |nLQLs3DqVa
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |G4yaY_6wt_
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |ofUm5H26nz
|n $ {}
:data $ {}
|T $ {} (:text |comp-md) (:type :leaf) (:at 1578208614203) (:by |rJG4IHzWf) (:id |TpV9ub7VNleaf)
|j $ {} (:text "|\"Find source code and get CLI usages on [GitHub](https://github.com/Cirru/jiuzhang-lang).") (:type :leaf) (:at 1578208729386) (:by |rJG4IHzWf) (:id |NTNudvYe)
:type :expr
:at 1578208613451
:by |rJG4IHzWf
:id |TpV9ub7VN
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |STyYOi9vn3
|x $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |0wVd-ty3FZ)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |SZTuP5i-i5)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |RHZVsjhG8P)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578208278169) (:by |rJG4IHzWf) (:id |9gueJuLcEj)
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |nLQLs3DqVa
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |G4yaY_6wt_
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |ofUm5H26nz
|r $ {}
:data $ {}
|T $ {} (:text |comp-md) (:type :leaf) (:at 1578208667465) (:by |rJG4IHzWf) (:id |-JMtXf-Y-)
|j $ {} (:text "|\"Based on toolchains from [Cirru Project](https://github.com/Cirru/).") (:type :leaf) (:at 1578208702126) (:by |rJG4IHzWf) (:id |o9QxNphfb)
:type :expr
:at 1578208667465
:by |rJG4IHzWf
:id |WcYcAY3dm
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |sStuR5lf
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |--cVVhwF1L
:type :expr
:at 1578208278169
:by |rJG4IHzWf
:id |-J9zqDyEI
|j $ {}
:data $ {}
|T $ {} (:text |when) (:type :leaf) (:at 1578205113408) (:by |rJG4IHzWf) (:id |s3vI4LFYe)
|j $ {} (:text |dev?) (:type :leaf) (:at 1578205113408) (:by |rJG4IHzWf) (:id |HscwG3Qj8)
|r $ {}
:data $ {}
|r $ {} (:text |comp-reel) (:type :leaf) (:at 1578205113408) (:by |rJG4IHzWf) (:id |QOQtB6vK9)
|v $ {}
:data $ {}
|D $ {} (:text |>>) (:type :leaf) (:at 1585589840278) (:by |rJG4IHzWf) (:id |LxtxtytUX8)
|T $ {} (:text |states) (:type :leaf) (:at 1578205113408) (:by |rJG4IHzWf) (:id |_LgCtKbXJ)
|j $ {} (:text |:reel) (:type :leaf) (:at 1585589841013) (:by |rJG4IHzWf) (:id |L71MR5TYw_)
:type :expr
:at 1585589839266
:by |rJG4IHzWf
:id |AYcY3-G-N
|x $ {} (:text |reel) (:type :leaf) (:at 1578205113408) (:by |rJG4IHzWf) (:id |nJM3S8uC8)
|y $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205113408) (:by |rJG4IHzWf) (:id |x2vKwEkUX)
:type :expr
:at 1578205113408
:by |rJG4IHzWf
:id |dASqVB_Ub
:type :expr
:at 1578205113408
:by |rJG4IHzWf
:id |jPLZCk0Q3
:type :expr
:at 1578205113408
:by |rJG4IHzWf
:id |aAF4Nl7mL
:type :expr
:at 1578205110014
:by |rJG4IHzWf
:id |_kdFJXT9o
:time 1507461832154
:type :expr
:id |r1-eRcYv3-
:time 1499755354983
:type :expr
:id |BJ2WiOF9pBW
|comp-runner $ {}
:data $ {}
|T $ {} (:text |defcomp) (:type :leaf) (:at 1578205026288) (:by |rJG4IHzWf) (:id |iSz8w77Kt)
|j $ {} (:text |comp-runner) (:type :leaf) (:at 1578205023194) (:by |rJG4IHzWf) (:id |EieceI7zn)
|r $ {}
:data $ {}
|D $ {} (:text |states) (:type :leaf) (:at 1578205627448) (:by |rJG4IHzWf) (:id |ls9TpwicZ)
|T $ {} (:text |title) (:type :leaf) (:at 1578205905504) (:by |rJG4IHzWf) (:id |w3mZqmCw)
|j $ {} (:text |code0) (:type :leaf) (:at 1578205658703) (:by |rJG4IHzWf) (:id |pibS6NcUa)
:type :expr
:at 1578205023194
:by |rJG4IHzWf
:id |2ZGoQ1dca
|v $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1578205079650) (:by |rJG4IHzWf) (:id |R9sC34O6)
|L $ {}
:data $ {}
|D $ {}
:data $ {}
|T $ {} (:text |cursor) (:type :leaf) (:at 1585589801046) (:by |rJG4IHzWf) (:id |u6obYIVpzTleaf)
|j $ {}
:data $ {}
|T $ {} (:text |:cursor) (:type :leaf) (:at 1585589803562) (:by |rJG4IHzWf) (:id |gk8wMt--X)
|j $ {} (:text |states) (:type :leaf) (:at 1585589804445) (:by |rJG4IHzWf) (:id |23VZTCj8Pp)
:type :expr
:at 1585589801598
:by |rJG4IHzWf
:id |wF_9aHzjVu
:type :expr
:at 1585589799564
:by |rJG4IHzWf
:id |u6obYIVpzT
|T $ {}
:data $ {}
|T $ {} (:text |state) (:type :leaf) (:at 1578205664852) (:by |rJG4IHzWf) (:id |EEpluCbV)
|j $ {}
:data $ {}
|D $ {} (:text |or) (:type :leaf) (:at 1578205672979) (:by |rJG4IHzWf) (:id |Os4o43NUW)
|T $ {}
:data $ {}
|j $ {} (:text |:data) (:type :leaf) (:at 1578205668437) (:by |rJG4IHzWf) (:id |83D7DmozF)
|r $ {} (:text |states) (:type :leaf) (:at 1578205670166) (:by |rJG4IHzWf) (:id |2jEUG1SfP)
:type :expr
:at 1578205666662
:by |rJG4IHzWf
:id |3Ym1q1MqE
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205675492) (:by |rJG4IHzWf) (:id |Var95fG1Q)
|j $ {}
:data $ {}
|T $ {} (:text |:code) (:type :leaf) (:at 1578205679086) (:by |rJG4IHzWf) (:id |6p43FUA-)
|j $ {} (:text |code0) (:type :leaf) (:at 1578205681567) (:by |rJG4IHzWf) (:id |e_ROOL-nF)
:type :expr
:at 1578205677750
:by |rJG4IHzWf
:id |P2HFf6Gxz
|n $ {}
:data $ {}
|T $ {} (:text |:result) (:type :leaf) (:at 1578205726703) (:by |rJG4IHzWf) (:id |p3D1c-MsCleaf)
|j $ {} (:text "|\"按 \"点击按钮运行\"") (:type :leaf) (:at 1578206801341) (:by |rJG4IHzWf) (:id |MneOwXA-v)
:type :expr
:at 1578205723915
:by |rJG4IHzWf
:id |p3D1c-MsC
|r $ {}
:data $ {}
|T $ {} (:text |:error) (:type :leaf) (:at 1578205706707) (:by |rJG4IHzWf) (:id |xs_o4qu26leaf)
|j $ {} (:text "|\"") (:type :leaf) (:at 1578205708857) (:by |rJG4IHzWf) (:id |VUvd9ouEa)
:type :expr
:at 1578205701716
:by |rJG4IHzWf
:id |xs_o4qu26
:type :expr
:at 1578205675165
:by |rJG4IHzWf
:id |TRHXoqzG
:type :expr
:at 1578205672363
:by |rJG4IHzWf
:id |LUKd5cm4B
:type :expr
:at 1578205665199
:by |rJG4IHzWf
:id |_k0aDp7J
:type :expr
:at 1578205079934
:by |rJG4IHzWf
:id |ZLsFs5oc9
|T $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |g9Rb8_aXd)
|j $ {}
:data $ {}
|T $ {} (:text |effect-codearea) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |A9SUbQyBK)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |_fjw6WWLS
|r $ {}
:data $ {}
|D $ {} (:text |div) (:type :leaf) (:at 1578205882251) (:by |rJG4IHzWf) (:id |yMVGAWNc)
|L $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205882950) (:by |rJG4IHzWf) (:id |s7JaoXW0m)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205988495) (:by |rJG4IHzWf) (:id |fRa0zFvK)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205989410) (:by |rJG4IHzWf) (:id |z2xCuR5kO)
|j $ {}
:data $ {}
|T $ {} (:text |:margin) (:type :leaf) (:at 1578206004773) (:by |rJG4IHzWf) (:id |RzoQ5AWWJ)
|j $ {} (:text "|\"80px 0") (:type :leaf) (:at 1578206008878) (:by |rJG4IHzWf) (:id |EcNq2_XdK)
:type :expr
:at 1578205989693
:by |rJG4IHzWf
:id |kCsw1glBZ
|r $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1578206037980) (:by |rJG4IHzWf) (:id |X6zKXJUVleaf)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1578206038537) (:by |rJG4IHzWf) (:id |zdeZxUhDR)
|j $ {} (:text |0) (:type :leaf) (:at 1578206038803) (:by |rJG4IHzWf) (:id |AQrFoDTrO)
|r $ {} (:text |0) (:type :leaf) (:at 1578206038993) (:by |rJG4IHzWf) (:id |BDZA3HtmJ)
|v $ {} (:text |98) (:type :leaf) (:at 1578206046933) (:by |rJG4IHzWf) (:id |IM3djpd2)
:type :expr
:at 1578206038224
:by |rJG4IHzWf
:id |gZDRMoCH
:type :expr
:at 1578206034062
:by |rJG4IHzWf
:id |X6zKXJUV
|v $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1578206095742) (:by |rJG4IHzWf) (:id |3PHpPNQxleaf)
|j $ {} (:text "|\"16px") (:type :leaf) (:at 1578206098598) (:by |rJG4IHzWf) (:id |zwTVzGJPz)
:type :expr
:at 1578206093819
:by |rJG4IHzWf
:id |3PHpPNQx
:type :expr
:at 1578205989072
:by |rJG4IHzWf
:id |ibxAuGbQ
:type :expr
:at 1578205987234
:by |rJG4IHzWf
:id |qF-7pnwXs
:type :expr
:at 1578205882526
:by |rJG4IHzWf
:id |IAUfeCIqB
|P $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1578205887621) (:by |rJG4IHzWf) (:id |a2570qvfeleaf)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205888353) (:by |rJG4IHzWf) (:id |bAzt1Xcbh)
:type :expr
:at 1578205887968
:by |rJG4IHzWf
:id |G-MRFQnVe
|r $ {}
:data $ {}
|T $ {} (:text |<>) (:type :leaf) (:at 1578205894830) (:by |rJG4IHzWf) (:id |5cqqGrs6Sleaf)
|j $ {}
:data $ {}
|D $ {} (:text |or) (:type :leaf) (:at 1578205908014) (:by |rJG4IHzWf) (:id |xJHS3ObMS)
|L $ {} (:text |title) (:type :leaf) (:at 1578205908507) (:by |rJG4IHzWf) (:id |oMcyFhqP)
|T $ {} (:text "|\"Example") (:type :leaf) (:at 1578205898006) (:by |rJG4IHzWf) (:id |pHd2v-P-)
:type :expr
:at 1578205907425
:by |rJG4IHzWf
:id |Mlm1bkTd
:type :expr
:at 1578205893834
:by |rJG4IHzWf
:id |5cqqGrs6S
:type :expr
:at 1578205886273
:by |rJG4IHzWf
:id |a2570qvfe
|R $ {}
:data $ {}
|T $ {} (:text |=<) (:type :leaf) (:at 1578206723257) (:by |rJG4IHzWf) (:id |1Gna11I1nleaf)
|j $ {} (:text |nil) (:type :leaf) (:at 1578206724438) (:by |rJG4IHzWf) (:id |19qhfz-Yo)
|r $ {} (:text |8) (:type :leaf) (:at 1578206724993) (:by |rJG4IHzWf) (:id |VB5nl-Cin)
:type :expr
:at 1578206722394
:by |rJG4IHzWf
:id |1Gna11I1n
|T $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |HSjF7pFzT)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |b2rbS-vEI)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |QiPxdjiC4)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |y9hlUC71l)
|v $ {} (:text |ui/row) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |vIxPsfng3)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |l3vmduuuu
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |sEFlDhEg8
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |_XxBFaUnC
|r $ {}
:data $ {}
|T $ {} (:text |textarea) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |FBNe1-JQoR)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |nTRtDzdUAM)
|j $ {}
:data $ {}
|T $ {} (:text |:value) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |QvZreKo3dK)
|j $ {}
:data $ {}
|T $ {} (:text |:code) (:type :leaf) (:at 1578205690966) (:by |rJG4IHzWf) (:id |69FaZLswYg)
|j $ {} (:text |state) (:type :leaf) (:at 1578205691647) (:by |rJG4IHzWf) (:id |C-ov9TUP)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |kwcCn2DyzU
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |4lksi1E8Zb
|r $ {}
:data $ {}
|T $ {} (:text |:class-name) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |FG5PkcLXYH)
|j $ {} (:text "|\"source-code") (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |C-4p2SV6Kb)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |rkDQCVcNNe
|v $ {}
:data $ {}
|T $ {} (:text |:placeholder) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |tochXRsr2j)
|j $ {} (:text "|\"Content") (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |dEKVtds2g5)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |wSS7Pu78WA
|x $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |mDbpijl2nN)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |_GIwK-4U5E)
|j $ {} (:text |ui/expand) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |P1-t2n1TfW)
|r $ {} (:text |ui/textarea) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |S9NufOniA2)
|v $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |uF7qkcgxyU)
|j $ {}
:data $ {}
|T $ {} (:text |:font-family) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |ZAgzIHDGvs)
|j $ {} (:text |ui/font-code) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |6EoCydR3q-)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |fzQCv5-usY
|r $ {}
:data $ {}
|T $ {} (:text |:min-height) (:type :leaf) (:at 1578205855796) (:by |rJG4IHzWf) (:id |oOmcB_y5sleaf)
|j $ {} (:text |320) (:type :leaf) (:at 1578205862000) (:by |rJG4IHzWf) (:id |DJMpUL_aY)
:type :expr
:at 1578205851589
:by |rJG4IHzWf
:id |oOmcB_y5s
|v $ {}
:data $ {}
|T $ {} (:text |:border) (:type :leaf) (:at 1578206111281) (:by |rJG4IHzWf) (:id |8bSWAyc1rleaf)
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1578206113642) (:by |rJG4IHzWf) (:id |vszfoaAZa)
|j $ {} (:text "|\"1px solid ") (:type :leaf) (:at 1578206115980) (:by |rJG4IHzWf) (:id |Jyokg1ChT)
|r $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1578206117053) (:by |rJG4IHzWf) (:id |eDjHH-rP)
|j $ {} (:text |0) (:type :leaf) (:at 1578206117552) (:by |rJG4IHzWf) (:id |0vPmi86j)
|r $ {} (:text |0) (:type :leaf) (:at 1578206117879) (:by |rJG4IHzWf) (:id |oj2EqmqDi)
|v $ {} (:text |93) (:type :leaf) (:at 1578206128431) (:by |rJG4IHzWf) (:id |wk4wVRIh)
:type :expr
:at 1578206116593
:by |rJG4IHzWf
:id |wXGYgTQHj
:type :expr
:at 1578206112708
:by |rJG4IHzWf
:id |0kVelRDa
:type :expr
:at 1578206109519
:by |rJG4IHzWf
:id |8bSWAyc1r
|x $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1578208174497) (:by |rJG4IHzWf) (:id |oJ5DrKtdSleaf)
|j $ {} (:text |:white) (:type :leaf) (:at 1578208192207) (:by |rJG4IHzWf) (:id |i2DU1yLs)
:type :expr
:at 1578208165922
:by |rJG4IHzWf
:id |oJ5DrKtdS
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |dgepq7elq7
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |6gTttw3q3y
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |5GchrKgJl9
|y $ {}
:data $ {}
|T $ {} (:text |:on-input) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |mPs2N5IpwE)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |sSkeE-jx1Y)
|j $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |cPF6Z_F9sx)
|j $ {} (:text |d!) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |pDXEO6nomx)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |f9osxVF3Ko
|r $ {}
:data $ {}
|D $ {} (:text |d!) (:type :leaf) (:at 1585589811502) (:by |rJG4IHzWf) (:id |p-3Qj7XZx)
|L $ {} (:text |cursor) (:type :leaf) (:at 1585589812522) (:by |rJG4IHzWf) (:id |x7VCxAmKjO)
|T $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1578206186402) (:by |rJG4IHzWf) (:id |MdboqLkL_d)
|b $ {} (:text |state) (:type :leaf) (:at 1578206187079) (:by |rJG4IHzWf) (:id |RRb323CrE)
|j $ {} (:text |:code) (:type :leaf) (:at 1578206206339) (:by |rJG4IHzWf) (:id |Fav9TOHQrs)
|r $ {}
:data $ {}
|T $ {} (:text |:value) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |QRhK9kTNQB)
|j $ {} (:text |e) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |g5a7usLwmq)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |mQ_CJH_iWm
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |aFVv0BrstS
:type :expr
:at 1578206187464
:by |rJG4IHzWf
:id |qPa7Pl4M7
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |7q2GbL4vxu
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |scVl1SQ7me
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |9XeJsTGv3U
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |GW4kI-cPSg
|t $ {}
:data $ {}
|T $ {} (:text |=<) (:type :leaf) (:at 1578205865106) (:by |rJG4IHzWf) (:id |ZCqo0nRGYleaf)
|j $ {} (:text |16) (:type :leaf) (:at 1578205866327) (:by |rJG4IHzWf) (:id |OA-CoVChe)
|r $ {} (:text |nil) (:type :leaf) (:at 1578205867225) (:by |rJG4IHzWf) (:id |LbocvKKyk)
:type :expr
:at 1578205863917
:by |rJG4IHzWf
:id |ZCqo0nRGY
|v $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |axq4f2bcz6)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |QNpDnTWe9p)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |XWdacj2Trn)
|j $ {} (:text |ui/expand) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |k_5vjorSDm)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |DTTNHDT_-x
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |KwbvkZ8Ef7
|r $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |8E8UB7P1OJ)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |_ln_tP2bv8)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |DaAVmHEeCf)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |UEauORxb_K)
|j $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |MioagKVkC4)
|j $ {} (:text |0) (:type :leaf) (:at 1578206159930) (:by |rJG4IHzWf) (:id |flTfGE0V_0)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |AT_fKfI6iY
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |koc9Ync10P
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |LL67hq0C3E
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |RDs3s8IOMJ
|r $ {}
:data $ {}
|T $ {} (:text |a) (:type :leaf) (:at 1578206142866) (:by |rJG4IHzWf) (:id |aYVV2_WHo5)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |j-Q-_tLxBY)
|j $ {}
:data $ {}
|T $ {} (:text |:inner-text) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |FhUC0P3bgB)
|j $ {} (:text "|\"运行") (:type :leaf) (:at 1578206795348) (:by |rJG4IHzWf) (:id |TsZThL0QmM)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |XPMkaSamvE
|r $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |hu9taMb5Bl)
|j $ {} (:text |ui/link) (:type :leaf) (:at 1578206144522) (:by |rJG4IHzWf) (:id |8zznnQkm6U)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |Ke80yo6yMu
|v $ {}
:data $ {}
|T $ {} (:text |:on-click) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |PaJCqp2GEW)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |xqDixqlGJd)
|j $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |L5eIr1At3q)
|j $ {} (:text |d!) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |qshw5t0zxW)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |wZ3LosxL19
|r $ {}
:data $ {}
|D $ {} (:text |try) (:type :leaf) (:at 1626698112815) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |let[]) (:type :leaf) (:at 1626634717555) (:by |rJG4IHzWf) (:id |7msrYMetHR)
|f $ {}
:data $ {}
|j $ {} (:text |ret) (:type :leaf) (:at 1626634720813) (:by |rJG4IHzWf)
|r $ {} (:text |out) (:type :leaf) (:at 1626681519280) (:by |rJG4IHzWf)
:type :expr
:at 1626634717964
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |run-program) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |Q-4Y3F5l5G)
|j $ {}
:data $ {}
|T $ {} (:text |:code) (:type :leaf) (:at 1578205695708) (:by |rJG4IHzWf) (:id |pV0Sc_ucYT)
|j $ {} (:text |state) (:type :leaf) (:at 1578205696773) (:by |rJG4IHzWf) (:id |9aRa_oIvt)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |_Jeg2P9X_6
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |u5HWDImnRO
|v $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |F9iSqw7X7m)
|j $ {} (:text "|\"Result:") (:type :leaf) (:at 1578242793006) (:by |rJG4IHzWf) (:id |EL7-Dw76jX)
|r $ {} (:text |ret) (:type :leaf) (:at 1626634763160) (:by |rJG4IHzWf) (:id |sAeOYgJNqQ)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |k2jqcBe821
|y $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1585589816970) (:by |rJG4IHzWf) (:id |93pkObGJDT)
|b $ {} (:text |cursor) (:type :leaf) (:at 1585589817966) (:by |rJG4IHzWf) (:id |Xt_9n3CZi)
|j $ {}
:data $ {}
|D $ {} (:text |merge) (:type :leaf) (:at 1578206655927) (:by |rJG4IHzWf) (:id |Vi8yR1q-6)
|L $ {} (:text |state) (:type :leaf) (:at 1578206660157) (:by |rJG4IHzWf) (:id |FGMeFIio9)
|T $ {}
:data $ {}
|D $ {} (:text |{}) (:type :leaf) (:at 1578206662655) (:by |rJG4IHzWf) (:id |GELrqkv7z)
|T $ {}
:data $ {}
|T $ {} (:text |:result) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |AFnknHh6C5)
|j $ {} (:text |out) (:type :leaf) (:at 1626681521894) (:by |rJG4IHzWf) (:id |t96jsoEqc)
:type :expr
:at 1578205749398
:by |rJG4IHzWf
:id |JpfZSTbfc
|j $ {}
:data $ {}
|T $ {} (:text |:error) (:type :leaf) (:at 1578206665674) (:by |rJG4IHzWf) (:id |_b5onACxNleaf)
|j $ {} (:text |nil) (:type :leaf) (:at 1626698123221) (:by |rJG4IHzWf) (:id |UC0iRaUIt)
:type :expr
:at 1578206663922
:by |rJG4IHzWf
:id |_b5onACxN
:type :expr
:at 1578206662076
:by |rJG4IHzWf
:id |cewdjVrv
:type :expr
:at 1578206654461
:by |rJG4IHzWf
:id |yxQ0RrGoq
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |5PtgU92uFr
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |QGroWfSikU
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626698116075) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |err) (:type :leaf) (:at 1626698116938) (:by |rJG4IHzWf)
:type :expr
:at 1626698116308
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1626698125297) (:by |rJG4IHzWf)
|j $ {} (:text |cursor) (:type :leaf) (:at 1626698126470) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1626698127387) (:by |rJG4IHzWf)
|j $ {} (:text |state) (:type :leaf) (:at 1626698130167) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1626698130962) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |:result) (:type :leaf) (:at 1626698134069) (:by |rJG4IHzWf)
|j $ {} (:text |nil) (:type :leaf) (:at 1626698135002) (:by |rJG4IHzWf)
:type :expr
:at 1626698131767
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |:error) (:type :leaf) (:at 1626698137170) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|D $ {} (:text |str) (:type :leaf) (:at 1626698139104) (:by |rJG4IHzWf)
|T $ {} (:text |err) (:type :leaf) (:at 1626698137898) (:by |rJG4IHzWf)
:type :expr
:at 1626698138336
:by |rJG4IHzWf
:type :expr
:at 1626698136012
:by |rJG4IHzWf
:type :expr
:at 1626698130465
:by |rJG4IHzWf
:type :expr
:at 1626698129314
:by |rJG4IHzWf
:type :expr
:at 1626698118080
:by |rJG4IHzWf
:type :expr
:at 1626698115134
:by |rJG4IHzWf
:type :expr
:at 1626698111180
:by |rJG4IHzWf
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |cen3NCVsos
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |06lE-G4n5p
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |biVbT-ZSzW
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |_Ogwp9JXl8
|v $ {}
:data $ {}
|D $ {} (:text |if) (:type :leaf) (:at 1578245277117) (:by |rJG4IHzWf) (:id |j0hOjvavi)
|L $ {}
:data $ {}
|T $ {} (:text |not=) (:type :leaf) (:at 1578245280316) (:by |rJG4IHzWf) (:id |HUNci8cP6)
|j $ {}
:data $ {}
|T $ {} (:text |:code) (:type :leaf) (:at 1578245283057) (:by |rJG4IHzWf) (:id |sx0FPqYWX)
|j $ {} (:text |state) (:type :leaf) (:at 1578245283618) (:by |rJG4IHzWf) (:id |0FkV6Tvf)
:type :expr
:at 1578245281366
:by |rJG4IHzWf
:id |UfIx6lF4
|r $ {} (:text |code0) (:type :leaf) (:at 1578245285995) (:by |rJG4IHzWf) (:id |Tq8TM56-C)
:type :expr
:at 1578245278998
:by |rJG4IHzWf
:id |pmCtdUPSe
|T $ {}
:data $ {}
|T $ {} (:text |a) (:type :leaf) (:at 1578206142866) (:by |rJG4IHzWf) (:id |aYVV2_WHo5)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |j-Q-_tLxBY)
|j $ {}
:data $ {}
|T $ {} (:text |:inner-text) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |FhUC0P3bgB)
|j $ {} (:text "|\"重置") (:type :leaf) (:at 1578242061384) (:by |rJG4IHzWf) (:id |TsZThL0QmM)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |XPMkaSamvE
|r $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |hu9taMb5Bl)
|j $ {} (:text |ui/link) (:type :leaf) (:at 1578206144522) (:by |rJG4IHzWf) (:id |8zznnQkm6U)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |Ke80yo6yMu
|v $ {}
:data $ {}
|T $ {} (:text |:on-click) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |PaJCqp2GEW)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |xqDixqlGJd)
|j $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |L5eIr1At3q)
|j $ {} (:text |d!) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |qshw5t0zxW)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |wZ3LosxL19
|r $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1585589821375) (:by |rJG4IHzWf) (:id |yV76cOoJleaf)
|b $ {} (:text |cursor) (:type :leaf) (:at 1585589822760) (:by |rJG4IHzWf) (:id |erQ7TNA9FO)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1578242086072) (:by |rJG4IHzWf) (:id |yu6hrQeLE)
|j $ {} (:text |state) (:type :leaf) (:at 1578242088167) (:by |rJG4IHzWf) (:id |nPEEtmhAh)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578242089612) (:by |rJG4IHzWf) (:id |5yQ-5cvFe)
|j $ {}
:data $ {}
|T $ {} (:text |:code) (:type :leaf) (:at 1578242090982) (:by |rJG4IHzWf) (:id |7bCQgaKbh)
|j $ {} (:text |code0) (:type :leaf) (:at 1578242092934) (:by |rJG4IHzWf) (:id |G-L2Lqwi)
:type :expr
:at 1578242090448
:by |rJG4IHzWf
:id |OYqOi6ZS
|r $ {}
:data $ {}
|T $ {} (:text |:result) (:type :leaf) (:at 1578242096674) (:by |rJG4IHzWf) (:id |qGGYoZMbQleaf)
|j $ {} (:text "|\"") (:type :leaf) (:at 1578242097232) (:by |rJG4IHzWf) (:id |SaCmdnPJ6)
:type :expr
:at 1578242093865
:by |rJG4IHzWf
:id |qGGYoZMbQ
|v $ {}
:data $ {}
|T $ {} (:text |:error) (:type :leaf) (:at 1578242098826) (:by |rJG4IHzWf) (:id |jVcwIFcNZleaf)
|j $ {} (:text "|\"") (:type :leaf) (:at 1578242099399) (:by |rJG4IHzWf) (:id |Zs-R43mD)
:type :expr
:at 1578242097808
:by |rJG4IHzWf
:id |jVcwIFcNZ
:type :expr
:at 1578242089277
:by |rJG4IHzWf
:id |-LtFpMLH
:type :expr
:at 1578242075789
:by |rJG4IHzWf
:id |BvoFRyKlU
:type :expr
:at 1578242066121
:by |rJG4IHzWf
:id |yV76cOoJ
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |cen3NCVsos
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |06lE-G4n5p
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |biVbT-ZSzW
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |5FKKYmK7
:type :expr
:at 1578245274468
:by |rJG4IHzWf
:id |BIq-pLZbF
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |jGnrsBx0Hr
|v $ {}
:data $ {}
|D $ {} (:text |if-not) (:type :leaf) (:at 1578206693794) (:by |rJG4IHzWf) (:id |w_WdZM1b)
|L $ {}
:data $ {}
|T $ {} (:text |blank?) (:type :leaf) (:at 1626544780477) (:by |rJG4IHzWf) (:id |FiVp11U1)
|j $ {}
:data $ {}
|T $ {} (:text |:error) (:type :leaf) (:at 1578206701430) (:by |rJG4IHzWf) (:id |-rVKBcbG)
|j $ {} (:text |state) (:type :leaf) (:at 1578206703551) (:by |rJG4IHzWf) (:id |C3pufQSUD)
:type :expr
:at 1578206700522
:by |rJG4IHzWf
:id |YbpIOwIhf
:type :expr
:at 1578206694492
:by |rJG4IHzWf
:id |faBWR0ptz
|T $ {}
:data $ {}
|T $ {} (:text |pre) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |atJgsvPnDD)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |5ajnf09aS3)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |m8uw6QDEuj)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |moQVKZiGPJ)
|j $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |WYqwpMhYD_)
|j $ {} (:text |:transparent) (:type :leaf) (:at 1578208811403) (:by |rJG4IHzWf) (:id |KozdU0FJ)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |MUPQDpgrbx
|v $ {}
:data $ {}
|T $ {} (:text |:color) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |AwLv-eVQ38)
|j $ {} (:text |:red) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |eeCGWhZb9N)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |4JmAP3Vpa-
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |Eh1AAg060q
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |XIp0UcNTV_
|r $ {}
:data $ {}
|T $ {} (:text |:inner-text) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |_BzgRBPfrP)
|j $ {}
:data $ {}
|T $ {} (:text |:error) (:type :leaf) (:at 1578205713429) (:by |rJG4IHzWf) (:id |lgr3paqjhA)
|j $ {} (:text |state) (:type :leaf) (:at 1578205714709) (:by |rJG4IHzWf) (:id |FTB6qj1U42)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |tDuHQpOw7G
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |yVgNm-1Bpt
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |Qzq63PEBDS
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |AS88B_mm_j
:type :expr
:at 1578206688970
:by |rJG4IHzWf
:id |ZTdAJHy_Y
|x $ {}
:data $ {}
|T $ {} (:text |pre) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |mpS5xbX9VH)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |PclSFgmGqN)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |AMAqabzHi4)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |z6U6ioIB-n)
|j $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1578205051118) (:by |rJG4IHzWf) (:id |TOCQtCq0g-)
|j $ {} (:text |:transparent) (:type :leaf) (:at 1578208808900) (:by |rJG4IHzWf) (:id |MX9SBuG6q)
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |pZ1yp-kJpN
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |5JCqDHnLgr
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |pbC91QNNXW
|r $ {}
:data $ {}
|T $ {} (:text |:inner-text) (:type :leaf) (:at 1578206562026) (:by |rJG4IHzWf) (:id |0wnQ96S2mD)
|j $ {}
:data $ {}
|T $ {} (:text |:result) (:type :leaf) (:at 1578206682783) (:by |rJG4IHzWf) (:id |CHJPHuQps)
|j $ {} (:text |state) (:type :leaf) (:at 1578206682783) (:by |rJG4IHzWf) (:id |FVTvT4bnb)
:type :expr
:at 1578206682783
:by |rJG4IHzWf
:id |6-cPk2w_q
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |jCDdf7UFVT
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |VrMoITNId2
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |04eDepG-Lz
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |3Uaih22Vt8
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |AzTZsxYb3
:type :expr
:at 1578205880993
:by |rJG4IHzWf
:id |Q2Ljir-ut
:type :expr
:at 1578205051118
:by |rJG4IHzWf
:id |JgpM3SWIw
:type :expr
:at 1578205073736
:by |rJG4IHzWf
:id |WLZqsfBMS
:type :expr
:at 1578205023194
:by |rJG4IHzWf
:id |p1O3uGtr3
|jiuzhang-quote $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1578207719867) (:by |rJG4IHzWf) (:id |DPZhn4Vt8)
|j $ {} (:text |jiuzhang-quote) (:type :leaf) (:at 1578207719867) (:by |rJG4IHzWf) (:id |xpzDlinzG)
|r $ {} (:text "|\"昔在包犧氏始畫八卦,以通神明之德,以類萬物之情,作九九之術以合六爻之變。暨於黃帝神而化之,引而伸之,於是建曆紀,協律呂,用稽道原,然後兩儀四象精微之氣可得而效焉。記稱隸首作數,其詳未之聞也。按周公制禮而有九數,九數之流,則九章是矣。") (:type :leaf) (:at 1578207724639) (:by |rJG4IHzWf) (:id |hSqeUcb-)
:type :expr
:at 1578207719867
:by |rJG4IHzWf
:id |6kVVJWVFb
|effect-codearea $ {}
:data $ {}
|T $ {} (:text |defeffect) (:type :leaf) (:at 1577639033042) (:by |rJG4IHzWf) (:id |yBQIByNrk)
|j $ {} (:text |effect-codearea) (:type :leaf) (:at 1577639029788) (:by |rJG4IHzWf) (:id |w1fZYqusR)
|r $ {}
:data $ {}
:type :expr
:at 1577639029788
:by |rJG4IHzWf
:id |iRrPwC8qk
|t $ {}
:data $ {}
|T $ {} (:text |action) (:type :leaf) (:at 1577639055875) (:by |rJG4IHzWf) (:id |I66V_RA9)
|j $ {} (:text |el) (:type :leaf) (:at 1577639056597) (:by |rJG4IHzWf) (:id |27pbzWF3)
:type :expr
:at 1577639051959
:by |rJG4IHzWf
:id |9JtxdR42L
|v $ {}
:data $ {}
|T $ {} (:text |codearea) (:type :leaf) (:at 1577639043470) (:by |rJG4IHzWf) (:id |PmnOvuBc)
|j $ {}
:data $ {}
|D $ {} (:text |.querySelector) (:type :leaf) (:at 1577639157658) (:by |rJG4IHzWf) (:id |ufCEkcHHY)
|T $ {} (:text |el) (:type :leaf) (:at 1577639044057) (:by |rJG4IHzWf) (:id |LfL-ZAI9s)
|j $ {} (:text "|\".source-code") (:type :leaf) (:at 1577639165377) (:by |rJG4IHzWf) (:id |t8OcUqo-)
:type :expr
:at 1577639152437
:by |rJG4IHzWf
:id |sX5Xj5ZH5
:type :expr
:at 1577639041518
:by |rJG4IHzWf
:id |ph3VZxWeR
:type :expr
:at 1577639029788
:by |rJG4IHzWf
:id |mFOSV-9QC
|inline $ {}
:data $ {}
|T $ {} (:text |defmacro) (:type :leaf) (:at 1626544813110) (:by |rJG4IHzWf)
|j $ {} (:text |inline) (:type :leaf) (:at 1626544810233) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |path) (:type :leaf) (:at 1626544816014) (:by |rJG4IHzWf)
:type :expr
:at 1626544810233
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |read-file) (:type :leaf) (:at 1626544819679) (:by |rJG4IHzWf)
|j $ {} (:text |path) (:type :leaf) (:at 1626544820828) (:by |rJG4IHzWf)
:type :expr
:at 1626544816529
:by |rJG4IHzWf
:type :expr
:at 1626544810233
:by |rJG4IHzWf
:proc $ {}
:data $ {}
:time 1499755354983
:type :expr
:id |rksbjOYqpSZ
:ns $ {}
:data $ {}
|T $ {} (:author |root) (:text |ns) (:time 1499755354983) (:type :leaf) (:id |rJgjuY5pSb)
|j $ {} (:author |root) (:text |app.comp.container) (:time 1499755354983) (:type :leaf) (:id |HybjuF9pS-)
|v $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1519699088805) (:by |root) (:id |ryKcErMdGleaf)
|j $ {} (:text |respo-md.comp.md) (:type :leaf) (:at 1519699092590) (:by |root) (:id |HJMtqNBGuf)
|r $ {} (:text |:refer) (:type :leaf) (:at 1519699093410) (:by |root) (:id |Syl69VHMuM)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1519699093922) (:by |root) (:id |HJwaqVHM_M)
|j $ {} (:text |comp-md) (:type :leaf) (:at 1519699096732) (:by |root) (:id |BJf0cVSMdz)
:type :expr
:at 1519699093683
:by |root
:id |S1R54BfuG
:type :expr
:at 1519699088529
:by |root
:id |ryKcErMdG
|yj $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1521954061645) (:by |root) (:id |SJxSfaoE5fleaf)
|j $ {} (:text |app.config) (:type :leaf) (:at 1527788377809) (:by |root) (:id |rkb8MTo45G)
|r $ {} (:text |:refer) (:type :leaf) (:at 1521954064826) (:by |root) (:id |H1SuzTjV5M)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1521954065219) (:by |root) (:id |S1MtGTiE5G)
|j $ {} (:text |dev?) (:type :leaf) (:at 1521954067604) (:by |root) (:id |HkUKG6oNcG)
:type :expr
:at 1521954065004
:by |root
:id |S1QtM6j4cz
:type :expr
:at 1521954061310
:by |root
:id |SJxSfaoE5f
|yr $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577638981116) (:by |rJG4IHzWf) (:id |VGl_X6SXwleaf)
|j $ {} (:text "|\"@mvc-works/codearea") (:type :leaf) (:at 1577638988732) (:by |rJG4IHzWf) (:id |MLi1CV-ZV)
|r $ {} (:text |:refer) (:type :leaf) (:at 1577638983399) (:by |rJG4IHzWf) (:id |Hh_I7il2)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577638983841) (:by |rJG4IHzWf) (:id |atlKx5b0N)
|j $ {} (:text |codearea) (:type :leaf) (:at 1577638984203) (:by |rJG4IHzWf) (:id |fObzgFkjT)
:type :expr
:at 1577638983618
:by |rJG4IHzWf
:id |_ubC2QzNg
:type :expr
:at 1577638980778
:by |rJG4IHzWf
:id |VGl_X6SXw
|yx $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577639785346) (:by |rJG4IHzWf) (:id |kQma5KfxM)
|j $ {} (:text |app.program) (:type :leaf) (:at 1577639785346) (:by |rJG4IHzWf) (:id |CWpE-065_)
|r $ {} (:text |:refer) (:type :leaf) (:at 1577639785346) (:by |rJG4IHzWf) (:id |tQtB-aWeJ)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577639785346) (:by |rJG4IHzWf) (:id |Ill2kQbY8)
|j $ {} (:text |run-program) (:type :leaf) (:at 1577639785346) (:by |rJG4IHzWf) (:id |bhuVrsnvt)
:type :expr
:at 1577639785346
:by |rJG4IHzWf
:id |0GuqJhCkB
:type :expr
:at 1577639785346
:by |rJG4IHzWf
:id |H7KdX2Tj9
|T $ {} (:author |root) (:text |:require) (:time 1499755354983) (:type :leaf) (:id |H1egs_K9pSZ)
|j $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |S1Mgj_K9TBZ)
|j $ {} (:author |root) (:text |respo.util.format) (:time 1499755354983) (:type :leaf) (:at 1626543695558) (:by |rJG4IHzWf) (:id |HkQgiutcTBW)
|r $ {} (:author |root) (:text |:refer) (:time 1499755354983) (:type :leaf) (:id |HkVxodtqTrW)
|v $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |BkLgidF56rb)
|j $ {} (:author |root) (:text |hsl) (:time 1499755354983) (:type :leaf) (:id |SkPxidY56H-)
:time 1499755354983
:type :expr
:id |SyHeiOYcTr-
:time 1499755354983
:type :expr
:id |ryWeiOtqTBW
|r $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |HJtgouK5pBZ)
|j $ {} (:author |root) (:text |respo-ui.core) (:time 1499755354983) (:type :leaf) (:at 1516527080962) (:by |root) (:id |HJ5eouFqaHb)
|r $ {} (:author |root) (:text |:as) (:time 1499755354983) (:type :leaf) (:id |HJoxsuF5pr-)
|v $ {} (:author |root) (:text |ui) (:time 1499755354983) (:type :leaf) (:id |r1hgjuY5TH-)
:time 1499755354983
:type :expr
:id |Sydli_Ycarb
|v $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |r1BodKcprZ)
|j $ {} (:author |root) (:text |respo.core) (:time 1499755354983) (:type :leaf) (:at 1540958704705) (:by |root) (:id |ryLoOY5pHb)
|r $ {} (:author |root) (:text |:refer) (:time 1508946162679) (:type :leaf) (:id |SJDjOYqaHW)
|v $ {}
:data $ {}
|xT $ {} (:author |rJG4IHzWf) (:text |textarea) (:time 1512359490531) (:type :leaf) (:id |BJtB8rGbG)
|yT $ {} (:text |input) (:type :leaf) (:at 1552321107012) (:by |rJG4IHzWf) (:id |0iu83JiiXq)
|yj $ {} (:text |pre) (:type :leaf) (:at 1577639372720) (:by |rJG4IHzWf) (:id |LrHO3bEa9)
|yr $ {} (:text |a) (:type :leaf) (:at 1578206146301) (:by |rJG4IHzWf) (:id |G0FRlgm-)
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |S1KidKq6r-)
|j $ {} (:author |root) (:text |defcomp) (:time 1499755354983) (:type :leaf) (:id |B1cs_Fq6B-)
|l $ {} (:text |defeffect) (:type :leaf) (:at 1573355389740) (:by |rJG4IHzWf) (:id |QtrCQdnHn)
|n $ {} (:author |root) (:text |>>) (:time 1509727116530) (:type :leaf) (:at 1585589793716) (:by |rJG4IHzWf) (:id |BJlz9oM90-)
|r $ {} (:author |root) (:text |<>) (:time 1499755354983) (:type :leaf) (:id |SJsiOY5pr-)
|v $ {} (:author |root) (:text |div) (:time 1499755354983) (:type :leaf) (:id |SJ2oOY96S-)
|x $ {} (:author |root) (:text |button) (:time 1499755354983) (:type :leaf) (:id |BkpiOFq6S-)
|y $ {} (:author |root) (:text |span) (:time 1499755354983) (:type :leaf) (:id |r1Aj_YqaB-)
:time 1499755354983
:type :expr
:id |H1do_K5aS-
:time 1499755354983
:type :expr
:id |SJgC3cjTTW
|x $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |HJH-s_t96rb)
|j $ {} (:author |root) (:text |respo.comp.space) (:time 1499755354983) (:type :leaf) (:id |SyUbi_t5pH-)
|r $ {} (:author |root) (:text |:refer) (:time 1499755354983) (:type :leaf) (:id |S1v-s_KcTHZ)
|v $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |rkFWouKcTr-)
|j $ {} (:author |root) (:text |=<) (:time 1499755354983) (:type :leaf) (:id |Hy5WjdY5TS-)
:time 1499755354983
:type :expr
:id |rJd-iOKc6rZ
:time 1499755354983
:type :expr
:id |Sy4-oOt96SZ
|y $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1507461846175) (:type :leaf) (:id |SkACcYv2-leaf)
|j $ {} (:author |root) (:text |reel.comp.reel) (:time 1507461855480) (:type :leaf) (:id |HJfRR5KPh-)
|r $ {} (:author |root) (:text |:refer) (:time 1507461856264) (:type :leaf) (:id |ryOyjtwnb)
|v $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1507461856706) (:type :leaf) (:id |HJ8u1otP3W)
|j $ {} (:author |root) (:text |comp-reel) (:time 1507461858342) (:type :leaf) (:id |r1bt1sKwhZ)
:time 1507461856484
:type :expr
:id |BJwOyitPhW
:time 1507461845717
:type :expr
:id |SkACcYv2-
:time 1499755354983
:type :expr
:id |SJkgodY9TSW
:time 1499755354983
:type :expr
:id |H1o_Y9ar-
|app.schema $ {}
:defs $ {}
|store $ {}
:data $ {}
|T $ {} (:author |root) (:text |def) (:time 1499755354983) (:type :leaf) (:id |ryBoejdY5arb)
|j $ {} (:author |root) (:text |store) (:time 1499755354983) (:type :leaf) (:id |H1Iils_Y96BZ)
|r $ {}
:data $ {}
|T $ {} (:author |root) (:text |{}) (:time 1499755354983) (:type :leaf) (:id |Bkuogo_F9pr-)
|j $ {}
:data $ {}
|T $ {} (:author |root) (:text |:states) (:time 1499755354983) (:type :leaf) (:id |By5oeoOY5pBb)
|j $ {}
:data $ {}
|T $ {} (:author |root) (:text |{}) (:time 1499755354983) (:type :leaf) (:id |Hyhixo_F9prb)
:time 1499755354983
:type :expr
:id |H1iieoOKqTSZ
:time 1499755354983
:type :expr
:id |BkYogiuK9TBZ
|r $ {}
:data $ {}
|T $ {} (:author |rJG4IHzWf) (:text |:content) (:time 1512359514709) (:type :leaf) (:id |BJ0oxjdFq6rb)
|j $ {} (:author |rJG4IHzWf) (:text ||) (:time 1512359516026) (:type :leaf) (:id |BJy2go_tcaBZ)
:time 1499755354983
:type :expr
:id |B1aixsdK9pHb
|v $ {}
:data $ {}
|T $ {} (:text |:result) (:type :leaf) (:at 1577639722455) (:by |rJG4IHzWf) (:id |JI_8fTvtWleaf)
|j $ {} (:text "|\"") (:type :leaf) (:at 1577639723591) (:by |rJG4IHzWf) (:id |kj3c78cw2)
:type :expr
:at 1577639720883
:by |rJG4IHzWf
:id |JI_8fTvtW
:time 1499755354983
:type :expr
:id |ryviloOFc6B-
:time 1499755354983
:type :expr
:id |HkEjgouFcpBW
:proc $ {}
:data $ {}
:time 1499755354983
:type :expr
:id |rkmjesdF9Trb
:ns $ {}
:data $ {}
|T $ {} (:author |root) (:text |ns) (:time 1499755354983) (:type :leaf) (:id |HyWslouK56HZ)
|j $ {} (:author |root) (:text |app.schema) (:time 1499755354983) (:type :leaf) (:id |SkGsgsOtcTBb)
:time 1499755354983
:type :expr
:id |rJxieodtqarW
|app.program $ {}
:defs $ {}
|call-equal $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1578244392512) (:by |rJG4IHzWf) (:id |u9IRd40HG)
|j $ {} (:text |call-equal) (:type :leaf) (:at 1578244392512) (:by |rJG4IHzWf) (:id |x7WEEGr2g)
|r $ {}
:data $ {}
|T $ {} (:text |xs) (:type :leaf) (:at 1578244398990) (:by |rJG4IHzWf) (:id |U_TR9uMLq)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679379786) (:by |rJG4IHzWf) (:id |0SPc1ajJV)
|r $ {} (:text |stdout) (:type :leaf) (:at 1578244392512) (:by |rJG4IHzWf) (:id |NK97c0rdJ)
:type :expr
:at 1578244392512
:by |rJG4IHzWf
:id |Y0d13zxuL
|v $ {}
:data $ {}
|T $ {} (:text |assert) (:type :leaf) (:at 1578244403266) (:by |rJG4IHzWf) (:id |1JT307Hwleaf)
|b $ {} (:text "|\"\"直\"需二参数") (:type :leaf) (:at 1626679378096) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578244404687) (:by |rJG4IHzWf) (:id |KYr60b71_)
|j $ {} (:text |2) (:type :leaf) (:at 1578244405064) (:by |rJG4IHzWf) (:id |4KLfsuQTR)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1578244406847) (:by |rJG4IHzWf) (:id |U8g3Qm2Pg)
|j $ {} (:text |xs) (:type :leaf) (:at 1578244409897) (:by |rJG4IHzWf) (:id |ox_rddOAC)
:type :expr
:at 1578244406185
:by |rJG4IHzWf
:id |g11kIkaj
:type :expr
:at 1578244403822
:by |rJG4IHzWf
:id |gX4GJcmNR
:type :expr
:at 1578244400653
:by |rJG4IHzWf
:id |1JT307Hw
|x $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626679400370) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |params) (:type :leaf) (:at 1626679401672) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679404271) (:by |rJG4IHzWf)
:type :expr
:at 1626679400704
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626679407481) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679409549) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626679410794) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626679413257) (:by |rJG4IHzWf)
:type :expr
:at 1626679405490
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626679385471) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1626679386711) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626679388012) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626679418171) (:by |rJG4IHzWf)
|r $ {} (:text |0) (:type :leaf) (:at 1626679389681) (:by |rJG4IHzWf)
:type :expr
:at 1626679387552
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626679388012) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626679420163) (:by |rJG4IHzWf)
|r $ {} (:text |1) (:type :leaf) (:at 1626679391977) (:by |rJG4IHzWf)
:type :expr
:at 1626679387552
:by |rJG4IHzWf
:type :expr
:at 1626679386318
:by |rJG4IHzWf
|P $ {} (:text |scope) (:type :leaf) (:at 1626679394314) (:by |rJG4IHzWf)
:type :expr
:at 1626679384690
:by |rJG4IHzWf
:type :expr
:at 1626679398806
:by |rJG4IHzWf
:type :expr
:at 1578244392512
:by |rJG4IHzWf
:id |saiEfkaZv
|call-minus $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577879182038) (:by |rJG4IHzWf) (:id |7zLLMPOu9)
|j $ {} (:text |call-minus) (:type :leaf) (:at 1577879182038) (:by |rJG4IHzWf) (:id |lpBVcn_I-)
|r $ {}
:data $ {}
|T $ {} (:text |body) (:type :leaf) (:at 1577879182038) (:by |rJG4IHzWf) (:id |5FRhLimZ9)
|j $ {} (:text |scope) (:type :leaf) (:at 1626678042984) (:by |rJG4IHzWf) (:id |zz2uzJAE1)
|r $ {} (:text |stdout) (:type :leaf) (:at 1577879182038) (:by |rJG4IHzWf) (:id |UhUy4ZTwZ)
:type :expr
:at 1577879182038
:by |rJG4IHzWf
:id |FP6M3LTI6
|v $ {}
:data $ {}
|T $ {} (:text |cond) (:type :leaf) (:at 1577879201053) (:by |rJG4IHzWf) (:id |GvLPfcufleaf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1577879197425) (:by |rJG4IHzWf) (:id |mGmQ_NUAP)
|j $ {} (:text |body) (:type :leaf) (:at 1577879198099) (:by |rJG4IHzWf) (:id |8g3xaHM6d)
:type :expr
:at 1577879195270
:by |rJG4IHzWf
:id |1pIWOsHv_
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626678046652) (:by |rJG4IHzWf)
|T $ {} (:text |0) (:type :leaf) (:at 1577879206098) (:by |rJG4IHzWf) (:id |vnH7WuB9X)
|j $ {} (:text |scope) (:type :leaf) (:at 1626678048796) (:by |rJG4IHzWf)
:type :expr
:at 1626678046008
:by |rJG4IHzWf
:type :expr
:at 1577879204318
:by |rJG4IHzWf
:id |wvXUo4kjV
|r $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1577879211788) (:by |rJG4IHzWf) (:id |5NtcDo3tbleaf)
|j $ {} (:text |1) (:type :leaf) (:at 1577879212099) (:by |rJG4IHzWf) (:id |ht_lOuZjb)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1577879213144) (:by |rJG4IHzWf) (:id |CItYzs36Z)
|j $ {} (:text |body) (:type :leaf) (:at 1577879214625) (:by |rJG4IHzWf) (:id |l2DvsPWdC)
:type :expr
:at 1577879212427
:by |rJG4IHzWf
:id |FYC1wxeYU
:type :expr
:at 1577879208950
:by |rJG4IHzWf
:id |VGKPyCXR
|j $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626678095374) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |ret) (:type :leaf) (:at 1626678097251) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678100371) (:by |rJG4IHzWf)
:type :expr
:at 1626678095669
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1626678103382) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626678103382) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626678103382) (:by |rJG4IHzWf)
:type :expr
:at 1626678103382
:by |rJG4IHzWf
|r $ {} (:text |scope) (:type :leaf) (:at 1626678106760) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626678103382) (:by |rJG4IHzWf)
:type :expr
:at 1626678103382
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626678055915) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|D $ {} (:text |-) (:type :leaf) (:at 1577879962489) (:by |rJG4IHzWf) (:id |s4P3KwqJ)
|L $ {} (:text |0) (:type :leaf) (:at 1577879962957) (:by |rJG4IHzWf) (:id |0loNQSye-)
|f $ {} (:text |ret) (:type :leaf) (:at 1626678112458) (:by |rJG4IHzWf)
:type :expr
:at 1577879961973
:by |rJG4IHzWf
:id |Pgk6JFM9M
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678119136) (:by |rJG4IHzWf)
:type :expr
:at 1626678055247
:by |rJG4IHzWf
:type :expr
:at 1626678093607
:by |rJG4IHzWf
:type :expr
:at 1577879206997
:by |rJG4IHzWf
:id |5NtcDo3tb
|v $ {}
:data $ {}
|L $ {} (:text |true) (:type :leaf) (:at 1626678061073) (:by |rJG4IHzWf) (:id |xWd7ZyNnX)
|j $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626678129725) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |params) (:type :leaf) (:at 1626678133362) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678135836) (:by |rJG4IHzWf)
:type :expr
:at 1626678131978
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626678140009) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626678144969) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626678149720) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626678152738) (:by |rJG4IHzWf)
:type :expr
:at 1626678137456
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1577879242951) (:by |rJG4IHzWf) (:id |ODCDGh9hk)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |x0) (:type :leaf) (:at 1577879245410) (:by |rJG4IHzWf) (:id |b57JJB7sg)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626678165350) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626678166887) (:by |rJG4IHzWf)
:type :expr
:at 1626678164031
:by |rJG4IHzWf
:type :expr
:at 1577879243345
:by |rJG4IHzWf
:id |Ca5hucHXN
|j $ {}
:data $ {}
|T $ {} (:text |delta) (:type :leaf) (:at 1577879278065) (:by |rJG4IHzWf) (:id |_X0-A-yt2leaf)
|j $ {}
:data $ {}
|T $ {} (:text |+) (:type :leaf) (:at 1626678207650) (:by |rJG4IHzWf)
|j $ {} (:text |&) (:type :leaf) (:at 1626678208381) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|D $ {} (:text |rest) (:type :leaf) (:at 1626678213743) (:by |rJG4IHzWf)
|T $ {} (:text |params) (:type :leaf) (:at 1626678209076) (:by |rJG4IHzWf)
:type :expr
:at 1626678212426
:by |rJG4IHzWf
:type :expr
:at 1626678207029
:by |rJG4IHzWf
:type :expr
:at 1577879262468
:by |rJG4IHzWf
:id |_X0-A-yt2
:type :expr
:at 1577879243197
:by |rJG4IHzWf
:id |ggMEAfnZ
|f $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626678228023) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |-) (:type :leaf) (:at 1577879283431) (:by |rJG4IHzWf) (:id |DMzwdFYbleaf)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626678220694) (:by |rJG4IHzWf) (:id |PUh3U4AQy)
|j $ {} (:text |params) (:type :leaf) (:at 1626678221659) (:by |rJG4IHzWf)
:type :expr
:at 1626678218297
:by |rJG4IHzWf
|r $ {} (:text |delta) (:type :leaf) (:at 1577879287060) (:by |rJG4IHzWf) (:id |MA31M5ta)
:type :expr
:at 1577879283118
:by |rJG4IHzWf
:id |DMzwdFYb
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678230776) (:by |rJG4IHzWf)
:type :expr
:at 1626678227502
:by |rJG4IHzWf
:type :expr
:at 1577879242324
:by |rJG4IHzWf
:id |KVj4THk8
:type :expr
:at 1626678123956
:by |rJG4IHzWf
:type :expr
:at 1577879206997
:by |rJG4IHzWf
:id |_R0p1tUK
:type :expr
:at 1577879187711
:by |rJG4IHzWf
:id |GvLPfcuf
:type :expr
:at 1577879182038
:by |rJG4IHzWf
:id |3cCLzokMZ
|call-vector $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577843568984) (:by |rJG4IHzWf) (:id |qoXP5msEt)
|j $ {} (:text |call-vector) (:type :leaf) (:at 1577843568984) (:by |rJG4IHzWf) (:id |Kh6MJerF8)
|r $ {}
:data $ {}
|L $ {} (:text |xs) (:type :leaf) (:at 1577843584334) (:by |rJG4IHzWf) (:id |DTSjH2xnD)
|j $ {} (:text |scope) (:type :leaf) (:at 1626653999930) (:by |rJG4IHzWf) (:id |jquZ2B_OR)
|r $ {} (:text |stdout) (:type :leaf) (:at 1626677880640) (:by |rJG4IHzWf)
:type :expr
:at 1577843568984
:by |rJG4IHzWf
:id |-hHclgytX
|x $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626677901712) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626677901712) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626677901712) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626677901712) (:by |rJG4IHzWf)
:type :expr
:at 1626677901712
:by |rJG4IHzWf
:type :expr
:at 1577843568984
:by |rJG4IHzWf
:id |NIK8ll5HA
|call-println $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577726189068) (:by |rJG4IHzWf) (:id |tKOlAbBli)
|j $ {} (:text |call-println) (:type :leaf) (:at 1577726189068) (:by |rJG4IHzWf) (:id |tEf1RL7MX)
|r $ {}
:data $ {}
|D $ {} (:text |xs) (:type :leaf) (:at 1577726203591) (:by |rJG4IHzWf) (:id |Wya6WgFA)
|b $ {} (:text |scope) (:type :leaf) (:at 1626653215032) (:by |rJG4IHzWf) (:id |dd6Qv2b47)
|n $ {} (:text |stdout) (:type :leaf) (:at 1626677843599) (:by |rJG4IHzWf)
:type :expr
:at 1577726189068
:by |rJG4IHzWf
:id |x_qQ2tZ8M
|w $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626653858338) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|j $ {} (:text |acc) (:type :leaf) (:at 1626653862486) (:by |rJG4IHzWf)
|v $ {} (:text |scope) (:type :leaf) (:at 1626653868181) (:by |rJG4IHzWf)
:type :expr
:at 1626653858849
:by |rJG4IHzWf
|T $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626653814674) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626653853907) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626653855719) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626677846105) (:by |rJG4IHzWf)
:type :expr
:at 1626653810079
:by |rJG4IHzWf
|j $ {}
:data $ {}
|D $ {} (:text |do) (:type :leaf) (:at 1626653875355) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |stdout) (:type :leaf) (:at 1626678776766) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|D $ {} (:text |->) (:type :leaf) (:at 1626678784599) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1626653870631) (:by |rJG4IHzWf)
|j $ {} (:text |acc) (:type :leaf) (:at 1626653870631) (:by |rJG4IHzWf)
|r $ {} (:text |format-value) (:type :leaf) (:at 1626653870631) (:by |rJG4IHzWf)
:type :expr
:at 1626653870631
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |.join-str) (:type :leaf) (:at 1626678788040) (:by |rJG4IHzWf)
|j $ {} (:text "|\" ") (:type :leaf) (:at 1626678788628) (:by |rJG4IHzWf)
:type :expr
:at 1626678785821
:by |rJG4IHzWf
:type :expr
:at 1626678783856
:by |rJG4IHzWf
:type :expr
:at 1626653870631
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626653878412) (:by |rJG4IHzWf)
|r $ {} (:text |nil) (:type :leaf) (:at 1626653881162) (:by |rJG4IHzWf)
|x $ {} (:text |scope) (:type :leaf) (:at 1626653911131) (:by |rJG4IHzWf)
:type :expr
:at 1626653878065
:by |rJG4IHzWf
:type :expr
:at 1626653874780
:by |rJG4IHzWf
:type :expr
:at 1626653856291
:by |rJG4IHzWf
:type :expr
:at 1577726189068
:by |rJG4IHzWf
:id |VXddvTKJ9
|format-value $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577843718419) (:by |rJG4IHzWf) (:id |jk9PTFSIG)
|j $ {} (:text |format-value) (:type :leaf) (:at 1577843718419) (:by |rJG4IHzWf) (:id |djlrTfu3v)
|r $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1577843718419) (:by |rJG4IHzWf) (:id |yINZEHngJ)
:type :expr
:at 1577843718419
:by |rJG4IHzWf
:id |RU8lJeWjm
|v $ {}
:data $ {}
|uT $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578242695175) (:by |rJG4IHzWf) (:id |gVya_mDWleaf)
|j $ {} (:text |x) (:type :leaf) (:at 1578242695679) (:by |rJG4IHzWf) (:id |9Lkk-j7IW)
|r $ {} (:text |true) (:type :leaf) (:at 1578242697889) (:by |rJG4IHzWf) (:id |4Uk91ox8)
:type :expr
:at 1578242695025
:by |rJG4IHzWf
:id |aFCCNYPM
|j $ {} (:text "|\"实") (:type :leaf) (:at 1578242700691) (:by |rJG4IHzWf) (:id |I7tgUOi2F)
:type :expr
:at 1578242693089
:by |rJG4IHzWf
:id |gVya_mDW
|uj $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578242695175) (:by |rJG4IHzWf) (:id |gVya_mDWleaf)
|j $ {} (:text |x) (:type :leaf) (:at 1578242695679) (:by |rJG4IHzWf) (:id |9Lkk-j7IW)
|r $ {} (:text |false) (:type :leaf) (:at 1578242704065) (:by |rJG4IHzWf) (:id |4Uk91ox8)
:type :expr
:at 1578242695025
:by |rJG4IHzWf
:id |aFCCNYPM
|j $ {} (:text "|\"虚") (:type :leaf) (:at 1578242707333) (:by |rJG4IHzWf) (:id |I7tgUOi2F)
:type :expr
:at 1578242693089
:by |rJG4IHzWf
:id |9bwxBW7d
|ur $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |nil?) (:type :leaf) (:at 1578242717229) (:by |rJG4IHzWf) (:id |gVya_mDWleaf)
|j $ {} (:text |x) (:type :leaf) (:at 1578242695679) (:by |rJG4IHzWf) (:id |9Lkk-j7IW)
:type :expr
:at 1578242695025
:by |rJG4IHzWf
:id |aFCCNYPM
|j $ {} (:text "|\"空") (:type :leaf) (:at 1578242721263) (:by |rJG4IHzWf) (:id |I7tgUOi2F)
:type :expr
:at 1578242693089
:by |rJG4IHzWf
:id |4rG_imKm
|T $ {} (:text |cond) (:type :leaf) (:at 1577843724304) (:by |rJG4IHzWf) (:id |nJ_5hcnrY)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |number?) (:type :leaf) (:at 1577843724304) (:by |rJG4IHzWf) (:id |obmrX4gLF)
|j $ {} (:text |x) (:type :leaf) (:at 1577843724304) (:by |rJG4IHzWf) (:id |rWSirPnQ7)
:type :expr
:at 1577843724304
:by |rJG4IHzWf
:id |Ic6sMsnHB
|j $ {}
:data $ {}
|T $ {} (:text |nzh/encodeS) (:type :leaf) (:at 1577843724304) (:by |rJG4IHzWf) (:id |zomafRvoO)
|j $ {} (:text |x) (:type :leaf) (:at 1577843724304) (:by |rJG4IHzWf) (:id |__Z6dPQMU)
:type :expr
:at 1577843724304
:by |rJG4IHzWf
:id |BHrXRSlST
:type :expr
:at 1577843724304
:by |rJG4IHzWf
:id |Ojrih7bhH
|r $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |string?) (:type :leaf) (:at 1577843724304) (:by |rJG4IHzWf) (:id |L6SMojllZ)
|j $ {} (:text |x) (:type :leaf) (:at 1577843724304) (:by |rJG4IHzWf) (:id |iiEvdL4q2)
:type :expr
:at 1577843724304
:by |rJG4IHzWf
:id |lWJnRtwrA
|j $ {}
:data $ {}
|D $ {} (:text |if) (:type :leaf) (:at 1577856310270) (:by |rJG4IHzWf) (:id |1ejxb2cb)
|L $ {}
:data $ {}
|D $ {} (:text |.test) (:type :leaf) (:at 1626544607997) (:by |rJG4IHzWf) (:id |cH6q1sTg)
|T $ {} (:text |simple-str-pattern) (:type :leaf) (:at 1577856329993) (:by |rJG4IHzWf) (:id |zzukdKs4y)
|j $ {} (:text |x) (:type :leaf) (:at 1577856337113) (:by |rJG4IHzWf) (:id |HKYiVkn3)
:type :expr
:at 1577856313057
:by |rJG4IHzWf
:id |y9Wwq4FTJ
|T $ {}
:data $ {}
|D $ {} (:text |str) (:type :leaf) (:at 1577855467288) (:by |rJG4IHzWf) (:id |D6ROw0tHm)
|L $ {} (:text "|\"|") (:type :leaf) (:at 1577855471424) (:by |rJG4IHzWf) (:id |zMuM_pvY)
|T $ {} (:text |x) (:type :leaf) (:at 1577843724304) (:by |rJG4IHzWf) (:id |IfjPhKnTs)
:type :expr
:at 1577855466456
:by |rJG4IHzWf
:id |iBWpknfaR
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1577856391808) (:by |rJG4IHzWf) (:id |JVqi4OH_V)
|j $ {} (:text "|\"\"|") (:type :leaf) (:at 1577857766256) (:by |rJG4IHzWf) (:id |2b4mN4uJQ)
|r $ {}
:data $ {}
|T $ {} (:text |.slice) (:type :leaf) (:at 1626544622529) (:by |rJG4IHzWf) (:id |Me--Y8ZCa)
|j $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1577856391808) (:by |rJG4IHzWf) (:id |4aCRNZGxz)
|j $ {} (:text |x) (:type :leaf) (:at 1577856391808) (:by |rJG4IHzWf) (:id |gbLgXu-hR)
:type :expr
:at 1577856391808
:by |rJG4IHzWf
:id |3Lxb7HwRd
|r $ {} (:text |1) (:type :leaf) (:at 1577856391808) (:by |rJG4IHzWf) (:id |lii8lrc2y)
:type :expr
:at 1577856391808
:by |rJG4IHzWf
:id |x6kDjkQ3W
:type :expr
:at 1577856391808
:by |rJG4IHzWf
:id |9q1G8fVEp
:type :expr
:at 1577856308967
:by |rJG4IHzWf
:id |zV0Twog1
:type :expr
:at 1577843724304
:by |rJG4IHzWf
:id |vETDlfu60
|s $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |map?) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |ajlV57Qwg)
|j $ {} (:text |x) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |NNbK84M0s)
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |tPIy1gIZs
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |QnPNzcLJb)
|j $ {} (:text "|\"(置 ") (:type :leaf) (:at 1626652976875) (:by |rJG4IHzWf) (:id |NLd2Uh8jb)
|x $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1626544635086) (:by |rJG4IHzWf) (:id |VlETPN_V6)
|j $ {} (:text |x) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |RUyIqLspI)
|n $ {}
:data $ {}
|T $ {} (:text |.to-list) (:type :leaf) (:at 1626683316130) (:by |rJG4IHzWf)
:type :expr
:at 1626683313821
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |hxfz6yU0Oq)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |ZbfFWWirQj)
|j $ {}
:data $ {}
|T $ {} (:text |pair) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |UXXowqlcJ9)
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |vgqhRQNrrR
|r $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |-G37PjxVcH)
|j $ {} (:text "|\"(") (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |BVNBQT7XIK)
|r $ {}
:data $ {}
|T $ {} (:text |format-value) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |_bg2i-lh5c)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |8iYU_yvgPN)
|j $ {} (:text |pair) (:type :leaf) (:at 1577846140347) (:by |rJG4IHzWf) (:id |jftzGQ_akj)
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |CtZq32PYSe
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |Dkxo7dosTa
|v $ {} (:text "|\" ") (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |jaqTb3pa0m)
|x $ {}
:data $ {}
|T $ {} (:text |format-value) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |kv-tNqjPtX)
|j $ {}
:data $ {}
|T $ {} (:text |last) (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |kFqz8APXXQ)
|j $ {} (:text |pair) (:type :leaf) (:at 1577846142244) (:by |rJG4IHzWf) (:id |62HhZLSdhv)
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |DHlfEQXe4P
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |APmUWRgPXk
|y $ {} (:text "|\")") (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |b-yZ803MdF)
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |bSXcegZQQU
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |qO24yYd_Kx
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |s6qNiK1A9
|v $ {}
:data $ {}
|T $ {} (:text |.join-str) (:type :leaf) (:at 1626544644321) (:by |rJG4IHzWf) (:id |U-2hdN-gCe)
|j $ {} (:text "|\" ") (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |RQpSZjQeNI)
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |4ksUZnJ3-t
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |VOMY4hC7m
|y $ {} (:text "|\")") (:type :leaf) (:at 1577846124939) (:by |rJG4IHzWf) (:id |RV_apdbEvz)
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |u8uSU2XYp
:type :expr
:at 1577846124939
:by |rJG4IHzWf
:id |FE_Ulq-OX
|t $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |list?) (:type :leaf) (:at 1626545723081) (:by |rJG4IHzWf) (:id |EhemitZo8leaf)
|j $ {} (:text |x) (:type :leaf) (:at 1577843731907) (:by |rJG4IHzWf) (:id |LZWebxcg5)
:type :expr
:at 1577843727556
:by |rJG4IHzWf
:id |xB7-_DhGR
|j $ {}
:data $ {}
|D $ {} (:text |str) (:type :leaf) (:at 1577843796867) (:by |rJG4IHzWf) (:id |qb1aEZ2A)
|T $ {} (:text "|\"(列 ") (:type :leaf) (:at 1626652983176) (:by |rJG4IHzWf) (:id |WDT45rrMrleaf)
|b $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1626544646876) (:by |rJG4IHzWf) (:id |xeetDtJHX)
|j $ {} (:text |x) (:type :leaf) (:at 1577843762875) (:by |rJG4IHzWf) (:id |l8E5mhOp)
|r $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1577843765398) (:by |rJG4IHzWf) (:id |Zp2iTXuw)
|j $ {} (:text |format-value) (:type :leaf) (:at 1577843786036) (:by |rJG4IHzWf) (:id |UeD9zlQe)
:type :expr
:at 1577843763323
:by |rJG4IHzWf
:id |685L0_Iju
|v $ {}
:data $ {}
|T $ {} (:text |.join-str) (:type :leaf) (:at 1626544650657) (:by |rJG4IHzWf) (:id |jSqYZ6M5Eleaf)
|j $ {} (:text "|\" ") (:type :leaf) (:at 1577843774071) (:by |rJG4IHzWf) (:id |-PhPxEaL9)
:type :expr
:at 1577843769662
:by |rJG4IHzWf
:id |jSqYZ6M5E
:type :expr
:at 1577843755833
:by |rJG4IHzWf
:id |c_l9zB5c
|j $ {} (:text "|\")") (:type :leaf) (:at 1577843753956) (:by |rJG4IHzWf) (:id |NGdZp20vk)
:type :expr
:at 1577843732556
:by |rJG4IHzWf
:id |WDT45rrMr
:type :expr
:at 1577843726049
:by |rJG4IHzWf
:id |EhemitZo8
|u $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |fn?) (:type :leaf) (:at 1578242402977) (:by |rJG4IHzWf) (:id |EJ47EnzEileaf)
|j $ {} (:text |x) (:type :leaf) (:at 1578242403298) (:by |rJG4IHzWf) (:id |NHpn5leR)
:type :expr
:at 1578242401458
:by |rJG4IHzWf
:id |pgJRbBuG
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1578242409327) (:by |rJG4IHzWf) (:id |FXxFN-66leaf)
|j $ {} (:text "|\"(术 ") (:type :leaf) (:at 1626652969215) (:by |rJG4IHzWf) (:id |W2pa7A5WB)
|n $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1578242421404) (:by |rJG4IHzWf) (:id |cPp0Gmdg)
|j $ {} (:text |x) (:type :leaf) (:at 1578242422155) (:by |rJG4IHzWf) (:id |cTV-LrtsR)
:type :expr
:at 1578242419731
:by |rJG4IHzWf
:id |Fx_hhLldi
|r $ {} (:text "|\")") (:type :leaf) (:at 1578242418719) (:by |rJG4IHzWf) (:id |JQWAGsX7P)
:type :expr
:at 1578242404188
:by |rJG4IHzWf
:id |FXxFN-66
:type :expr
:at 1578242400881
:by |rJG4IHzWf
:id |EJ47EnzEi
|v $ {}
:data $ {}
|T $ {} (:text |true) (:type :leaf) (:at 1626544629989) (:by |rJG4IHzWf) (:id |Luoq2T7M58)
|j $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1577843724304) (:by |rJG4IHzWf) (:id |4j1I2Lx8Gp)
|j $ {} (:text |x) (:type :leaf) (:at 1577843724304) (:by |rJG4IHzWf) (:id |R9OtGc0SEL)
:type :expr
:at 1577843724304
:by |rJG4IHzWf
:id |R-5RyoI0qM
:type :expr
:at 1577843724304
:by |rJG4IHzWf
:id |MDCsqCYFe
:type :expr
:at 1577843724304
:by |rJG4IHzWf
:id |pq-qB2Fac
:type :expr
:at 1577843718419
:by |rJG4IHzWf
:id |LROIwlg1b
|call-expression $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577639845014) (:by |rJG4IHzWf) (:id |_AsRJu6Tw)
|j $ {} (:text |call-expression) (:type :leaf) (:at 1577639842767) (:by |rJG4IHzWf) (:id |X6TNj8kIT)
|r $ {}
:data $ {}
|T $ {} (:text |expr) (:type :leaf) (:at 1577639846405) (:by |rJG4IHzWf) (:id |sG8_jiaNt)
|b $ {} (:text |scope) (:type :leaf) (:at 1577725364487) (:by |rJG4IHzWf) (:id |V2KiVjrN)
|n $ {} (:text |stdout) (:type :leaf) (:at 1626676741749) (:by |rJG4IHzWf)
:type :expr
:at 1577639842767
:by |rJG4IHzWf
:id |9JR4JXY9I
|u $ {}
:data $ {}
|T $ {} (:text |cond) (:type :leaf) (:at 1577725288164) (:by |rJG4IHzWf) (:id |u60mfLFkleaf)
|b $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |string?) (:type :leaf) (:at 1577725293218) (:by |rJG4IHzWf) (:id |RvKSmSpoleaf)
|j $ {} (:text |expr) (:type :leaf) (:at 1577725294365) (:by |rJG4IHzWf) (:id |1dLoLQkhi)
:type :expr
:at 1577725291515
:by |rJG4IHzWf
:id |xklg9O3ey
|j $ {}
:data $ {}
|T $ {} (:text |resolve-literal) (:type :leaf) (:at 1577725321515) (:by |rJG4IHzWf) (:id |Xtqbcv4hleaf)
|j $ {} (:text |expr) (:type :leaf) (:at 1577725322948) (:by |rJG4IHzWf) (:id |Ry3n-IkW)
|r $ {} (:text |scope) (:type :leaf) (:at 1577725371438) (:by |rJG4IHzWf) (:id |H2kWfp5v)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626677797415) (:by |rJG4IHzWf)
:type :expr
:at 1577725303502
:by |rJG4IHzWf
:id |Xtqbcv4h
:type :expr
:at 1577725291100
:by |rJG4IHzWf
:id |RvKSmSpo
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |list?) (:type :leaf) (:at 1626545698997) (:by |rJG4IHzWf) (:id |Q0yD4lQyA)
|j $ {} (:text |expr) (:type :leaf) (:at 1577725285746) (:by |rJG4IHzWf) (:id |qfI4-7UHK)
:type :expr
:at 1577725279439
:by |rJG4IHzWf
:id |p3_B3ZTg
|j $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1577725389711) (:by |rJG4IHzWf) (:id |tO5JQZ58leaf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |head) (:type :leaf) (:at 1577725391408) (:by |rJG4IHzWf) (:id |Icw9OmYge)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1577725394958) (:by |rJG4IHzWf) (:id |CyBYCYqK)
|j $ {} (:text |expr) (:type :leaf) (:at 1577725400032) (:by |rJG4IHzWf) (:id |3yeQvzyw)
:type :expr
:at 1577725393212
:by |rJG4IHzWf
:id |mjoifGHH
:type :expr
:at 1577725390122
:by |rJG4IHzWf
:id |xqZPoU88
|j $ {}
:data $ {}
|T $ {} (:text |x1) (:type :leaf) (:at 1577874016885) (:by |rJG4IHzWf) (:id |9RzqpCj4leaf)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1577874020834) (:by |rJG4IHzWf) (:id |aNSAuo2ro)
|j $ {} (:text |expr) (:type :leaf) (:at 1577874020834) (:by |rJG4IHzWf) (:id |b6DpdXfpH)
|r $ {} (:text |1) (:type :leaf) (:at 1577874020834) (:by |rJG4IHzWf) (:id |tBg8l5TZd)
:type :expr
:at 1577874020834
:by |rJG4IHzWf
:id |qtdXUlaUD
:type :expr
:at 1577874015165
:by |rJG4IHzWf
:id |9RzqpCj4
|r $ {}
:data $ {}
|T $ {} (:text |x2) (:type :leaf) (:at 1577874027186) (:by |rJG4IHzWf) (:id |sxPIpKXdd)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1577874027741) (:by |rJG4IHzWf) (:id |OMZlB8F98)
|j $ {} (:text |expr) (:type :leaf) (:at 1577874027741) (:by |rJG4IHzWf) (:id |KUJE2HTfX)
|r $ {} (:text |2) (:type :leaf) (:at 1577874027741) (:by |rJG4IHzWf) (:id |DsZxNaw5r)
:type :expr
:at 1577874027741
:by |rJG4IHzWf
:id |m2MH9egja
:type :expr
:at 1577874026328
:by |rJG4IHzWf
:id |LcOCGWdd
|v $ {}
:data $ {}
|D $ {} (:text |body) (:type :leaf) (:at 1577878782864) (:by |rJG4IHzWf) (:id |2buv63c5n)
|T $ {}
:data $ {}
|j $ {} (:text |.slice) (:type :leaf) (:at 1626545706489) (:by |rJG4IHzWf) (:id |WhriSNuH)
|r $ {} (:text |expr) (:type :leaf) (:at 1577875282299) (:by |rJG4IHzWf) (:id |DQokWgaNk)
|v $ {} (:text |1) (:type :leaf) (:at 1577875282543) (:by |rJG4IHzWf) (:id |YQVdCdTLe)
:type :expr
:at 1577875275882
:by |rJG4IHzWf
:id |dAlN7pgfR
:type :expr
:at 1577878780259
:by |rJG4IHzWf
:id |594G5usYm
:type :expr
:at 1577725389954
:by |rJG4IHzWf
:id |8BpzGawU0
|r $ {}
:data $ {}
|T $ {} (:text |cond) (:type :leaf) (:at 1577725402486) (:by |rJG4IHzWf) (:id |h5Dh1j3nEleaf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |string?) (:type :leaf) (:at 1577725405808) (:by |rJG4IHzWf) (:id |qQfYMT0s)
|j $ {} (:text |head) (:type :leaf) (:at 1577725906727) (:by |rJG4IHzWf) (:id |_6lZTd0i)
:type :expr
:at 1577725404833
:by |rJG4IHzWf
:id |UgqtbPiBc
|j $ {}
:data $ {}
|wuT $ {}
:data $ {}
|T $ {} (:text "|\"除") (:type :leaf) (:at 1577875575225) (:by |rJG4IHzWf) (:id |ZE0gaKCLleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-divide) (:type :leaf) (:at 1577879377340) (:by |rJG4IHzWf) (:id |yLADITvWv)
|j $ {} (:text |body) (:type :leaf) (:at 1577875292912) (:by |rJG4IHzWf) (:id |_zTa1oxRC)
|r $ {} (:text |scope) (:type :leaf) (:at 1577875296367) (:by |rJG4IHzWf) (:id |FnJ6EtiH)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676777168) (:by |rJG4IHzWf)
:type :expr
:at 1577875267936
:by |rJG4IHzWf
:id |QBgFZW2v-
:type :expr
:at 1577875263055
:by |rJG4IHzWf
:id |gTtfpb41x
|wwT $ {}
:data $ {}
|T $ {} (:text "|\"术曰") (:type :leaf) (:at 1577892969715) (:by |rJG4IHzWf) (:id |LirmsfbGvleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-defn) (:type :leaf) (:at 1577892984248) (:by |rJG4IHzWf) (:id |lmm1Sz-Q)
|j $ {} (:text |body) (:type :leaf) (:at 1577892994199) (:by |rJG4IHzWf) (:id |JyHSjxLvW)
|r $ {} (:text |scope) (:type :leaf) (:at 1577892997180) (:by |rJG4IHzWf) (:id |UgUSlwSo5)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676780831) (:by |rJG4IHzWf)
:type :expr
:at 1577892976879
:by |rJG4IHzWf
:id |ij0NkEM5U
:type :expr
:at 1577892958762
:by |rJG4IHzWf
:id |LirmsfbGv
|wwj $ {}
:data $ {}
|T $ {} (:text "|\"术") (:type :leaf) (:at 1577892973402) (:by |rJG4IHzWf) (:id |ExBZj9Ap9leaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-fn) (:type :leaf) (:at 1577892987922) (:by |rJG4IHzWf) (:id |bJ_3F8Nzx)
|j $ {} (:text |body) (:type :leaf) (:at 1577893003553) (:by |rJG4IHzWf) (:id |WcFjqj7Wz)
|r $ {} (:text |scope) (:type :leaf) (:at 1577893005439) (:by |rJG4IHzWf) (:id |vIFxPiCv)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676782296) (:by |rJG4IHzWf)
:type :expr
:at 1577892985814
:by |rJG4IHzWf
:id |9VmUa4jKJ
:type :expr
:at 1577892970539
:by |rJG4IHzWf
:id |ExBZj9Ap9
|wwn $ {}
:data $ {}
|T $ {} (:text "|\"若") (:type :leaf) (:at 1577898316460) (:by |rJG4IHzWf) (:id |hrnwhp8GV)
|j $ {}
:data $ {}
|T $ {} (:text |call-if) (:type :leaf) (:at 1577898320818) (:by |rJG4IHzWf) (:id |KsXBy7iWy)
|j $ {} (:text |body) (:type :leaf) (:at 1577898312518) (:by |rJG4IHzWf) (:id |DvgQGR2Mc)
|r $ {} (:text |scope) (:type :leaf) (:at 1577898312518) (:by |rJG4IHzWf) (:id |P7Bwl9Eup)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676783539) (:by |rJG4IHzWf)
:type :expr
:at 1577898312518
:by |rJG4IHzWf
:id |cxI7QGN4I
:type :expr
:at 1577898312518
:by |rJG4IHzWf
:id |hxgMaDpWw
|wwp $ {}
:data $ {}
|T $ {} (:text "|\"多于") (:type :leaf) (:at 1578244254830) (:by |rJG4IHzWf) (:id |ogsItehqtleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-larger) (:type :leaf) (:at 1578244381796) (:by |rJG4IHzWf) (:id |8bUBAfjW1)
|j $ {} (:text |body) (:type :leaf) (:at 1578244379141) (:by |rJG4IHzWf) (:id |OcKdyeHJY)
|r $ {} (:text |scope) (:type :leaf) (:at 1578244379141) (:by |rJG4IHzWf) (:id |BYQla4Sq2)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676784740) (:by |rJG4IHzWf)
:type :expr
:at 1578244379141
:by |rJG4IHzWf
:id |f8dw_sI1N
:type :expr
:at 1578244250995
:by |rJG4IHzWf
:id |ogsItehqt
|wwq $ {}
:data $ {}
|T $ {} (:text "|\"少于") (:type :leaf) (:at 1578244258637) (:by |rJG4IHzWf) (:id |NxzsZ4rUleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-littler) (:type :leaf) (:at 1578244512990) (:by |rJG4IHzWf) (:id |Y8_sFoQ90)
|j $ {} (:text |body) (:type :leaf) (:at 1578244377841) (:by |rJG4IHzWf) (:id |BkT5hDG6w)
|r $ {} (:text |scope) (:type :leaf) (:at 1578244377841) (:by |rJG4IHzWf) (:id |-prZgi-lV)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676786961) (:by |rJG4IHzWf)
:type :expr
:at 1578244377841
:by |rJG4IHzWf
:id |YNsLCoTVv
:type :expr
:at 1578244256126
:by |rJG4IHzWf
:id |NxzsZ4rU
|wwr $ {}
:data $ {}
|T $ {} (:text "|\"则") (:type :leaf) (:at 1577898310308) (:by |rJG4IHzWf) (:id |Rkl-h5kdW)
|j $ {}
:data $ {}
|T $ {} (:text |call-do) (:type :leaf) (:at 1577898310308) (:by |rJG4IHzWf) (:id |YCvJ7jf7g)
|j $ {} (:text |body) (:type :leaf) (:at 1577898310308) (:by |rJG4IHzWf) (:id |UWH4PupaT)
|r $ {} (:text |scope) (:type :leaf) (:at 1577898310308) (:by |rJG4IHzWf) (:id |cJWQUQ9qE)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676789716) (:by |rJG4IHzWf)
:type :expr
:at 1577898310308
:by |rJG4IHzWf
:id |YgEq1oCDB
:type :expr
:at 1577898310308
:by |rJG4IHzWf
:id |qclyAjha5
|wwv $ {}
:data $ {}
|T $ {} (:text "|\"非") (:type :leaf) (:at 1578326193906) (:by |rJG4IHzWf) (:id |2ClMaUdycleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-not) (:type :leaf) (:at 1578327002565) (:by |rJG4IHzWf) (:id |FfDyhO52)
|f $ {} (:text |x1) (:type :leaf) (:at 1578326975055) (:by |rJG4IHzWf) (:id |eLEvOnna)
|r $ {} (:text |scope) (:type :leaf) (:at 1578326922782) (:by |rJG4IHzWf) (:id |T4Ba8Rr07)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676790939) (:by |rJG4IHzWf)
:type :expr
:at 1578326195264
:by |rJG4IHzWf
:id |S9Y2jMBT
:type :expr
:at 1578326191402
:by |rJG4IHzWf
:id |2ClMaUdyc
|wwx $ {}
:data $ {}
|T $ {} (:text "|\"如") (:type :leaf) (:at 1578326902531) (:by |rJG4IHzWf) (:id |mEGQSAf-aleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-new) (:type :leaf) (:at 1578326907525) (:by |rJG4IHzWf) (:id |nwIUwSRyM)
|j $ {} (:text |x1) (:type :leaf) (:at 1578327028369) (:by |rJG4IHzWf) (:id |t4hRWx2D)
|v $ {} (:text |scope) (:type :leaf) (:at 1578327030562) (:by |rJG4IHzWf) (:id |wf2mi8iSc)
|x $ {} (:text |stdout) (:type :leaf) (:at 1626676792110) (:by |rJG4IHzWf)
:type :expr
:at 1578326903178
:by |rJG4IHzWf
:id |iynXomm0
:type :expr
:at 1578326200635
:by |rJG4IHzWf
:id |mEGQSAf-a
|wwy $ {}
:data $ {}
|T $ {} (:text "|\"取") (:type :leaf) (:at 1578327069360) (:by |rJG4IHzWf) (:id |5qjaHTx1leaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-get) (:type :leaf) (:at 1578327075217) (:by |rJG4IHzWf) (:id |DiufbwcqT)
|j $ {} (:text |body) (:type :leaf) (:at 1578327079444) (:by |rJG4IHzWf) (:id |6jw4_VtNX)
|r $ {} (:text |scope) (:type :leaf) (:at 1578327071897) (:by |rJG4IHzWf) (:id |w4_L1aWFs)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676793954) (:by |rJG4IHzWf)
:type :expr
:at 1578327071897
:by |rJG4IHzWf
:id |WLlTeQb3N
:type :expr
:at 1578327065993
:by |rJG4IHzWf
:id |5qjaHTx1
|wyT $ {}
:data $ {}
|T $ {} (:text "|\"又按") (:type :leaf) (:at 1577885557678) (:by |rJG4IHzWf) (:id |67pGhXQZleaf)
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626652646587) (:by |rJG4IHzWf)
|L $ {} (:text |nil) (:type :leaf) (:at 1626652647852) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626652653932) (:by |rJG4IHzWf)
:type :expr
:at 1626652645976
:by |rJG4IHzWf
:type :expr
:at 1577879017168
:by |rJG4IHzWf
:id |R5A4nvkNE
|wwqT $ {}
:data $ {}
|T $ {} (:text "|\"直") (:type :leaf) (:at 1578244365566) (:by |rJG4IHzWf) (:id |R-ndljkRaleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-equal) (:type :leaf) (:at 1578244372030) (:by |rJG4IHzWf) (:id |qaf94gMa)
|j $ {} (:text |body) (:type :leaf) (:at 1578244374574) (:by |rJG4IHzWf) (:id |nCcPMgatM)
|r $ {} (:text |scope) (:type :leaf) (:at 1578244374574) (:by |rJG4IHzWf) (:id |twYZqGkfQ)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676788182) (:by |rJG4IHzWf)
:type :expr
:at 1578244367735
:by |rJG4IHzWf
:id |_VytwaD-F
:type :expr
:at 1578244259891
:by |rJG4IHzWf
:id |R-ndljkRa
|wwyT $ {}
:data $ {}
|T $ {} (:text "|\"各") (:type :leaf) (:at 1578327948729) (:by |rJG4IHzWf) (:id |5qjaHTx1leaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-map) (:type :leaf) (:at 1578327959335) (:by |rJG4IHzWf) (:id |DiufbwcqT)
|j $ {} (:text |body) (:type :leaf) (:at 1578327079444) (:by |rJG4IHzWf) (:id |6jw4_VtNX)
|r $ {} (:text |scope) (:type :leaf) (:at 1578327071897) (:by |rJG4IHzWf) (:id |w4_L1aWFs)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676795117) (:by |rJG4IHzWf)
:type :expr
:at 1578327071897
:by |rJG4IHzWf
:id |WLlTeQb3N
:type :expr
:at 1578327065993
:by |rJG4IHzWf
:id |Rh4rkaud3
|wwyj $ {}
:data $ {}
|T $ {} (:text "|\"其") (:type :leaf) (:at 1578328194662) (:by |rJG4IHzWf) (:id |5qjaHTx1leaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-filter) (:type :leaf) (:at 1578328197611) (:by |rJG4IHzWf) (:id |DiufbwcqT)
|j $ {} (:text |body) (:type :leaf) (:at 1578327079444) (:by |rJG4IHzWf) (:id |6jw4_VtNX)
|r $ {} (:text |scope) (:type :leaf) (:at 1578327071897) (:by |rJG4IHzWf) (:id |w4_L1aWFs)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676796158) (:by |rJG4IHzWf)
:type :expr
:at 1578327071897
:by |rJG4IHzWf
:id |WLlTeQb3N
:type :expr
:at 1578327065993
:by |rJG4IHzWf
:id |l2_jVw_t
|wwyr $ {}
:data $ {}
|T $ {} (:text "|\"引") (:type :leaf) (:at 1585672175594) (:by |rJG4IHzWf) (:id |nA5vS3usVJleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-require) (:type :leaf) (:at 1585672182268) (:by |rJG4IHzWf) (:id |5Xt8ccFnx)
|j $ {} (:text |body) (:type :leaf) (:at 1585672183748) (:by |rJG4IHzWf) (:id |aCzbHzJQqQ)
|r $ {} (:text |scope) (:type :leaf) (:at 1585672186551) (:by |rJG4IHzWf) (:id |TyzY8yX6f-)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676797431) (:by |rJG4IHzWf)
:type :expr
:at 1585672176332
:by |rJG4IHzWf
:id |3Q4LtHuRo3
:type :expr
:at 1585672173898
:by |rJG4IHzWf
:id |nA5vS3usVJ
|uT $ {}
:data $ {}
|T $ {} (:text "|\"令") (:type :leaf) (:at 1577875122252) (:by |rJG4IHzWf) (:id |oI9lxNfiA)
|j $ {}
:data $ {}
|T $ {} (:text |call-define) (:type :leaf) (:at 1577874031891) (:by |rJG4IHzWf) (:id |6NV0bg0GQ)
|j $ {} (:text |x1) (:type :leaf) (:at 1577874031891) (:by |rJG4IHzWf) (:id |ubTQc6D_5)
|r $ {} (:text |x2) (:type :leaf) (:at 1577874031891) (:by |rJG4IHzWf) (:id |NXiiOaU-j)
|v $ {} (:text |scope) (:type :leaf) (:at 1577874031891) (:by |rJG4IHzWf) (:id |xwu6i7_NF)
|x $ {} (:text |stdout) (:type :leaf) (:at 1626676765432) (:by |rJG4IHzWf)
:type :expr
:at 1577874031891
:by |rJG4IHzWf
:id |giTdIHqYw
:type :expr
:at 1577725922008
:by |rJG4IHzWf
:id |1OENuMwZZ
|vT $ {}
:data $ {}
|T $ {} (:text "|\"得") (:type :leaf) (:at 1577879654642) (:by |rJG4IHzWf) (:id |rCtBGSLMlleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-println) (:type :leaf) (:at 1577725974437) (:by |rJG4IHzWf) (:id |5NEHUUYuW)
|f $ {} (:text |body) (:type :leaf) (:at 1577875286729) (:by |rJG4IHzWf) (:id |Zvai6_v6o)
|r $ {} (:text |scope) (:type :leaf) (:at 1577726193996) (:by |rJG4IHzWf) (:id |DujWsNT5)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676767673) (:by |rJG4IHzWf)
:type :expr
:at 1577725971845
:by |rJG4IHzWf
:id |YgqUvPUb-
:type :expr
:at 1577725925576
:by |rJG4IHzWf
:id |jDMUOG7k
|vj $ {}
:data $ {}
|T $ {} (:text "|\"又得") (:type :leaf) (:at 1577890335381) (:by |rJG4IHzWf) (:id |rCtBGSLMlleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-println) (:type :leaf) (:at 1577725974437) (:by |rJG4IHzWf) (:id |5NEHUUYuW)
|f $ {} (:text |body) (:type :leaf) (:at 1577875286729) (:by |rJG4IHzWf) (:id |Zvai6_v6o)
|r $ {} (:text |scope) (:type :leaf) (:at 1577726193996) (:by |rJG4IHzWf) (:id |DujWsNT5)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676769073) (:by |rJG4IHzWf)
:type :expr
:at 1577725971845
:by |rJG4IHzWf
:id |YgqUvPUb-
:type :expr
:at 1577725925576
:by |rJG4IHzWf
:id |ajO_59ra
|wT $ {}
:data $ {}
|T $ {} (:text "|\"置") (:type :leaf) (:at 1577844021569) (:by |rJG4IHzWf) (:id |MBD4fksqleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-hashmap) (:type :leaf) (:at 1577844029094) (:by |rJG4IHzWf) (:id |x5kwzEZhh)
|f $ {} (:text |body) (:type :leaf) (:at 1577875290390) (:by |rJG4IHzWf) (:id |55K_wbRI)
|r $ {} (:text |scope) (:type :leaf) (:at 1577844036347) (:by |rJG4IHzWf) (:id |OBnz3Yyo)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676772034) (:by |rJG4IHzWf)
:type :expr
:at 1577844022044
:by |rJG4IHzWf
:id |8JiId-Xuk
:type :expr
:at 1577844011205
:by |rJG4IHzWf
:id |MBD4fksq
|wb $ {}
:data $ {}
|T $ {} (:text "|\"&置") (:type :leaf) (:at 1626679970519) (:by |rJG4IHzWf) (:id |MBD4fksqleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-native-hashmap) (:type :leaf) (:at 1626679975246) (:by |rJG4IHzWf) (:id |x5kwzEZhh)
|f $ {} (:text |body) (:type :leaf) (:at 1577875290390) (:by |rJG4IHzWf) (:id |55K_wbRI)
|r $ {} (:text |scope) (:type :leaf) (:at 1577844036347) (:by |rJG4IHzWf) (:id |OBnz3Yyo)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676772034) (:by |rJG4IHzWf)
:type :expr
:at 1577844022044
:by |rJG4IHzWf
:id |8JiId-Xuk
:type :expr
:at 1577844011205
:by |rJG4IHzWf
:id |MBD4fksq
|wj $ {}
:data $ {}
|T $ {} (:text "|\"并") (:type :leaf) (:at 1577875267192) (:by |rJG4IHzWf) (:id |ZE0gaKCLleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-add) (:type :leaf) (:at 1577875270011) (:by |rJG4IHzWf) (:id |yLADITvWv)
|j $ {} (:text |body) (:type :leaf) (:at 1577875292912) (:by |rJG4IHzWf) (:id |_zTa1oxRC)
|r $ {} (:text |scope) (:type :leaf) (:at 1577875296367) (:by |rJG4IHzWf) (:id |FnJ6EtiH)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676773501) (:by |rJG4IHzWf)
:type :expr
:at 1577875267936
:by |rJG4IHzWf
:id |QBgFZW2v-
:type :expr
:at 1577875263055
:by |rJG4IHzWf
:id |ZE0gaKCL
|wr $ {}
:data $ {}
|T $ {} (:text "|\"乘") (:type :leaf) (:at 1577875468798) (:by |rJG4IHzWf) (:id |ZE0gaKCLleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-multiply) (:type :leaf) (:at 1577878828825) (:by |rJG4IHzWf) (:id |yLADITvWv)
|j $ {} (:text |body) (:type :leaf) (:at 1577875292912) (:by |rJG4IHzWf) (:id |_zTa1oxRC)
|r $ {} (:text |scope) (:type :leaf) (:at 1577875296367) (:by |rJG4IHzWf) (:id |FnJ6EtiH)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676774587) (:by |rJG4IHzWf)
:type :expr
:at 1577875267936
:by |rJG4IHzWf
:id |QBgFZW2v-
:type :expr
:at 1577875263055
:by |rJG4IHzWf
:id |XMb07sXE
|wu $ {}
:data $ {}
|T $ {} (:text "|\"减") (:type :leaf) (:at 1577875570536) (:by |rJG4IHzWf) (:id |ZE0gaKCLleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-minus) (:type :leaf) (:at 1577879173674) (:by |rJG4IHzWf) (:id |yLADITvWv)
|j $ {} (:text |body) (:type :leaf) (:at 1577875292912) (:by |rJG4IHzWf) (:id |_zTa1oxRC)
|r $ {} (:text |scope) (:type :leaf) (:at 1577875296367) (:by |rJG4IHzWf) (:id |FnJ6EtiH)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676775759) (:by |rJG4IHzWf)
:type :expr
:at 1577875267936
:by |rJG4IHzWf
:id |QBgFZW2v-
:type :expr
:at 1577875263055
:by |rJG4IHzWf
:id |UiHuDOCt
|wv $ {}
:data $ {}
|T $ {} (:text "|\"自乘") (:type :leaf) (:at 1577875477798) (:by |rJG4IHzWf) (:id |ZE0gaKCLleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-self-multiply) (:type :leaf) (:at 1577879079212) (:by |rJG4IHzWf) (:id |yLADITvWv)
|f $ {} (:text |x1) (:type :leaf) (:at 1577878873235) (:by |rJG4IHzWf) (:id |Q8d6Cv4c)
|r $ {} (:text |scope) (:type :leaf) (:at 1577875296367) (:by |rJG4IHzWf) (:id |FnJ6EtiH)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676778498) (:by |rJG4IHzWf)
:type :expr
:at 1577875267936
:by |rJG4IHzWf
:id |QBgFZW2v-
:type :expr
:at 1577875263055
:by |rJG4IHzWf
:id |zpqCDB7wD
|ww $ {}
:data $ {}
|T $ {} (:text "|\"负") (:type :leaf) (:at 1577879881871) (:by |rJG4IHzWf) (:id |ZE0gaKCLleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-negate) (:type :leaf) (:at 1577879887851) (:by |rJG4IHzWf) (:id |yLADITvWv)
|f $ {} (:text |x1) (:type :leaf) (:at 1577878873235) (:by |rJG4IHzWf) (:id |Q8d6Cv4c)
|r $ {} (:text |scope) (:type :leaf) (:at 1577875296367) (:by |rJG4IHzWf) (:id |FnJ6EtiH)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676779761) (:by |rJG4IHzWf)
:type :expr
:at 1577875267936
:by |rJG4IHzWf
:id |QBgFZW2v-
:type :expr
:at 1577875263055
:by |rJG4IHzWf
:id |jyYzbCXd9
|wx $ {}
:data $ {}
|T $ {} (:text "|\"按") (:type :leaf) (:at 1577879019282) (:by |rJG4IHzWf) (:id |67pGhXQZleaf)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626652656291) (:by |rJG4IHzWf)
|j $ {} (:text |nil) (:type :leaf) (:at 1626652656291) (:by |rJG4IHzWf)
|x $ {} (:text |scope) (:type :leaf) (:at 1626652656291) (:by |rJG4IHzWf)
:type :expr
:at 1626652656291
:by |rJG4IHzWf
:type :expr
:at 1577879017168
:by |rJG4IHzWf
:id |67pGhXQZ
|wy $ {}
:data $ {}
|T $ {} (:text "|\"案") (:type :leaf) (:at 1577884742014) (:by |rJG4IHzWf) (:id |67pGhXQZleaf)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626652655604) (:by |rJG4IHzWf)
|j $ {} (:text |nil) (:type :leaf) (:at 1626652655604) (:by |rJG4IHzWf)
|x $ {} (:text |scope) (:type :leaf) (:at 1626652655604) (:by |rJG4IHzWf)
:type :expr
:at 1626652655604
:by |rJG4IHzWf
:type :expr
:at 1577879017168
:by |rJG4IHzWf
:id |mSW062oU
|T $ {} (:text |case-default) (:type :leaf) (:at 1626544680080) (:by |rJG4IHzWf) (:id |bmFR1DBXleaf)
|j $ {} (:text |head) (:type :leaf) (:at 1577725919656) (:by |rJG4IHzWf) (:id |hpNhELmP8)
|n $ {}
:data $ {}
|T $ {} (:text |cond) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |.starts-with?) (:type :leaf) (:at 1626544685014) (:by |rJG4IHzWf)
|j $ {} (:text |head) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|r $ {} (:text "|\".") (:type :leaf) (:at 1626652873474) (:by |rJG4IHzWf)
:type :expr
:at 1626544680942
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |call-method) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|j $ {} (:text |head) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|r $ {} (:text |body) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|v $ {} (:text |scope) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|x $ {} (:text |stdout) (:type :leaf) (:at 1626676756582) (:by |rJG4IHzWf)
:type :expr
:at 1626544680942
:by |rJG4IHzWf
:type :expr
:at 1626544680942
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |.starts-with?) (:type :leaf) (:at 1626544687646) (:by |rJG4IHzWf)
|j $ {} (:text |head) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|r $ {} (:text "|\"js/") (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
:type :expr
:at 1626544680942
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |call-native) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|j $ {} (:text |head) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|r $ {} (:text |body) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|v $ {} (:text |scope) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|x $ {} (:text |stdout) (:type :leaf) (:at 1626676757412) (:by |rJG4IHzWf)
:type :expr
:at 1626544680942
:by |rJG4IHzWf
:type :expr
:at 1626544680942
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |.starts-with?) (:type :leaf) (:at 1626544688960) (:by |rJG4IHzWf)
|j $ {} (:text |head) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|r $ {} (:text "|\"clj/") (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
:type :expr
:at 1626544680942
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |call-host) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|j $ {} (:text |head) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|r $ {} (:text |body) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|v $ {} (:text |scope) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|x $ {} (:text |stdout) (:type :leaf) (:at 1626676758427) (:by |rJG4IHzWf)
:type :expr
:at 1626544680942
:by |rJG4IHzWf
:type :expr
:at 1626544680942
:by |rJG4IHzWf
|x $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |contains?) (:type :leaf) (:at 1626654915086) (:by |rJG4IHzWf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|r $ {} (:text |head) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
:type :expr
:at 1626544680942
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |call-call) (:type :leaf) (:at 1626654996879) (:by |rJG4IHzWf)
|j $ {} (:text |head) (:type :leaf) (:at 1626655002265) (:by |rJG4IHzWf)
|r $ {} (:text |body) (:type :leaf) (:at 1626655004776) (:by |rJG4IHzWf)
|v $ {} (:text |scope) (:type :leaf) (:at 1626655005733) (:by |rJG4IHzWf)
|x $ {} (:text |stdout) (:type :leaf) (:at 1626676759298) (:by |rJG4IHzWf)
:type :expr
:at 1626654974364
:by |rJG4IHzWf
:type :expr
:at 1626544680942
:by |rJG4IHzWf
|y $ {}
:data $ {}
|T $ {} (:text |true) (:type :leaf) (:at 1626652598046) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626676853204) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626652601717) (:by |rJG4IHzWf)
|j $ {} (:text "|\"未有术也, 不知") (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
|j $ {} (:text |head) (:type :leaf) (:at 1626544680942) (:by |rJG4IHzWf)
:type :expr
:at 1626544680942
:by |rJG4IHzWf
:type :expr
:at 1626544680942
:by |rJG4IHzWf
:type :expr
:at 1626652602214
:by |rJG4IHzWf
:type :expr
:at 1626544680942
:by |rJG4IHzWf
:type :expr
:at 1626544680942
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text "|\"今有") (:type :leaf) (:at 1577725924870) (:by |rJG4IHzWf) (:id |oI9lxNfiA)
|j $ {}
:data $ {}
|T $ {} (:text |call-define) (:type :leaf) (:at 1577725968584) (:by |rJG4IHzWf) (:id |OkA5SkE26)
|f $ {} (:text |x1) (:type :leaf) (:at 1577874019486) (:by |rJG4IHzWf) (:id |V3ZLxbEjz)
|n $ {} (:text |x2) (:type :leaf) (:at 1577874024098) (:by |rJG4IHzWf) (:id |HOkDBSlF)
|v $ {} (:text |scope) (:type :leaf) (:at 1577726028882) (:by |rJG4IHzWf) (:id |-4Vm6Uvw)
|x $ {} (:text |stdout) (:type :leaf) (:at 1626676761631) (:by |rJG4IHzWf)
:type :expr
:at 1577725957227
:by |rJG4IHzWf
:id |dnhpaQ76
:type :expr
:at 1577725922008
:by |rJG4IHzWf
:id |wSZK8mSgu
|t $ {}
:data $ {}
|T $ {} (:text "|\"有") (:type :leaf) (:at 1577873639527) (:by |rJG4IHzWf) (:id |oI9lxNfiA)
|j $ {}
:data $ {}
|T $ {} (:text |call-define) (:type :leaf) (:at 1577874030928) (:by |rJG4IHzWf) (:id |Z60iEM45P)
|j $ {} (:text |x1) (:type :leaf) (:at 1577874030928) (:by |rJG4IHzWf) (:id |OsTmKZycu)
|r $ {} (:text |x2) (:type :leaf) (:at 1577874030928) (:by |rJG4IHzWf) (:id |pIB6zrCgX)
|v $ {} (:text |scope) (:type :leaf) (:at 1577874030928) (:by |rJG4IHzWf) (:id |r5OWdOo-0)
|x $ {} (:text |stdout) (:type :leaf) (:at 1626676762534) (:by |rJG4IHzWf)
:type :expr
:at 1577874030928
:by |rJG4IHzWf
:id |UAORRyjd2
:type :expr
:at 1577725922008
:by |rJG4IHzWf
:id |u2tJX9Os
|u $ {}
:data $ {}
|T $ {} (:text "|\"又有") (:type :leaf) (:at 1577874005991) (:by |rJG4IHzWf) (:id |oI9lxNfiA)
|j $ {}
:data $ {}
|T $ {} (:text |call-define) (:type :leaf) (:at 1577874031891) (:by |rJG4IHzWf) (:id |6NV0bg0GQ)
|j $ {} (:text |x1) (:type :leaf) (:at 1577874031891) (:by |rJG4IHzWf) (:id |ubTQc6D_5)
|r $ {} (:text |x2) (:type :leaf) (:at 1577874031891) (:by |rJG4IHzWf) (:id |NXiiOaU-j)
|v $ {} (:text |scope) (:type :leaf) (:at 1577874031891) (:by |rJG4IHzWf) (:id |xwu6i7_NF)
|x $ {} (:text |stdout) (:type :leaf) (:at 1626676764339) (:by |rJG4IHzWf)
:type :expr
:at 1577874031891
:by |rJG4IHzWf
:id |giTdIHqYw
:type :expr
:at 1577725922008
:by |rJG4IHzWf
:id |T1Kuf27L
|v $ {}
:data $ {}
|T $ {} (:text "|\"答曰") (:type :leaf) (:at 1577725929191) (:by |rJG4IHzWf) (:id |rCtBGSLMlleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-println) (:type :leaf) (:at 1577725974437) (:by |rJG4IHzWf) (:id |5NEHUUYuW)
|f $ {} (:text |body) (:type :leaf) (:at 1577875286729) (:by |rJG4IHzWf) (:id |Zvai6_v6o)
|r $ {} (:text |scope) (:type :leaf) (:at 1577726193996) (:by |rJG4IHzWf) (:id |DujWsNT5)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676766548) (:by |rJG4IHzWf)
:type :expr
:at 1577725971845
:by |rJG4IHzWf
:id |YgqUvPUb-
:type :expr
:at 1577725925576
:by |rJG4IHzWf
:id |rCtBGSLMl
|w $ {}
:data $ {}
|T $ {} (:text "|\"列") (:type :leaf) (:at 1577843519863) (:by |rJG4IHzWf) (:id |v3FEhGnSleaf)
|j $ {}
:data $ {}
|T $ {} (:text |call-vector) (:type :leaf) (:at 1577843611384) (:by |rJG4IHzWf) (:id |c1oJIRr1)
|f $ {} (:text |body) (:type :leaf) (:at 1577875288792) (:by |rJG4IHzWf) (:id |o9huFZ85b)
|r $ {} (:text |scope) (:type :leaf) (:at 1577843561512) (:by |rJG4IHzWf) (:id |r2rVuW5dG)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626676771213) (:by |rJG4IHzWf)
:type :expr
:at 1577843549518
:by |rJG4IHzWf
:id |K7GClAnz
:type :expr
:at 1577843517558
:by |rJG4IHzWf
:id |v3FEhGnS
:type :expr
:at 1577725916532
:by |rJG4IHzWf
:id |bmFR1DBX
:type :expr
:at 1577725404198
:by |rJG4IHzWf
:id |3cTUmZE3
|r $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |list?) (:type :leaf) (:at 1626544702651) (:by |rJG4IHzWf) (:id |qQfYMT0s)
|j $ {} (:text |head) (:type :leaf) (:at 1577725908083) (:by |rJG4IHzWf) (:id |_6lZTd0i)
:type :expr
:at 1577725404833
:by |rJG4IHzWf
:id |UgqtbPiBc
|j $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626676861545) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626652671168) (:by |rJG4IHzWf) (:id |5XlZM7jaleaf)
|j $ {} (:text "|\"未有术也, 不知") (:type :leaf) (:at 1577725883874) (:by |rJG4IHzWf) (:id |zY0SHKLT)
|r $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1577725885764) (:by |rJG4IHzWf) (:id |lIWtHwQY)
|j $ {} (:text |head) (:type :leaf) (:at 1577725909588) (:by |rJG4IHzWf) (:id |vJ4aT7Ef)
:type :expr
:at 1577725884977
:by |rJG4IHzWf
:id |w-UJ8tyI0
:type :expr
:at 1577725865835
:by |rJG4IHzWf
:id |5XlZM7ja
:type :expr
:at 1626652668913
:by |rJG4IHzWf
:type :expr
:at 1577725404198
:by |rJG4IHzWf
:id |L34SJt2c
|v $ {}
:data $ {}
|T $ {} (:text |true) (:type :leaf) (:at 1626544704686) (:by |rJG4IHzWf) (:id |fONCEQN2leaf)
|j $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626676872565) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626652663824) (:by |rJG4IHzWf) (:id |-JhUN8sJ)
|j $ {} (:text "|\"未知几何也") (:type :leaf) (:at 1577725515567) (:by |rJG4IHzWf) (:id |Nbx-w_5w)
|r $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1577725519932) (:by |rJG4IHzWf) (:id |uBIAW-kb)
|j $ {} (:text |expr) (:type :leaf) (:at 1577725520808) (:by |rJG4IHzWf) (:id |LmUYwfWZ)
:type :expr
:at 1577725518712
:by |rJG4IHzWf
:id |z9VhU67H5
:type :expr
:at 1577725451318
:by |rJG4IHzWf
:id |7fE1K6Lt
:type :expr
:at 1626652660285
:by |rJG4IHzWf
:type :expr
:at 1577725426101
:by |rJG4IHzWf
:id |fONCEQN2
:type :expr
:at 1577725401405
:by |rJG4IHzWf
:id |h5Dh1j3nE
:type :expr
:at 1577725389161
:by |rJG4IHzWf
:id |tO5JQZ58
:type :expr
:at 1577725290251
:by |rJG4IHzWf
:id |6639yWaJ
|r $ {}
:data $ {}
|T $ {} (:text |true) (:type :leaf) (:at 1626544707651) (:by |rJG4IHzWf) (:id |MZiJmGwl1leaf)
|j $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626676877402) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626652513815) (:by |rJG4IHzWf) (:id |Dyg-wk_j)
|j $ {} (:text "|\"未知几何也") (:type :leaf) (:at 1577725541092) (:by |rJG4IHzWf) (:id |iFC00KtYt)
|r $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1577725544781) (:by |rJG4IHzWf) (:id |28HKtjCm)
|j $ {} (:text |expr) (:type :leaf) (:at 1577725545523) (:by |rJG4IHzWf) (:id |pCdXQnHK-)
:type :expr
:at 1577725543763
:by |rJG4IHzWf
:id |zEjT2dKn
:type :expr
:at 1577725528470
:by |rJG4IHzWf
:id |Ph38OGFFf
:type :expr
:at 1626652514757
:by |rJG4IHzWf
:type :expr
:at 1577725526621
:by |rJG4IHzWf
:id |MZiJmGwl1
:type :expr
:at 1577725275093
:by |rJG4IHzWf
:id |u60mfLFk
:type :expr
:at 1577639842767
:by |rJG4IHzWf
:id |U1aCth5Pe
|call-littler $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1578244460470) (:by |rJG4IHzWf) (:id |iVh0xsT6G)
|j $ {} (:text |call-littler) (:type :leaf) (:at 1578244460470) (:by |rJG4IHzWf) (:id |Xwp8XxIId)
|r $ {}
:data $ {}
|T $ {} (:text |xs) (:type :leaf) (:at 1578244522006) (:by |rJG4IHzWf) (:id |gf4Om2LcR)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679314679) (:by |rJG4IHzWf) (:id |8IzeKn3k9)
|r $ {} (:text |stdout) (:type :leaf) (:at 1578244460470) (:by |rJG4IHzWf) (:id |24x856Qin)
:type :expr
:at 1578244460470
:by |rJG4IHzWf
:id |yhu4b3Jmk
|v $ {}
:data $ {}
|T $ {} (:text |assert) (:type :leaf) (:at 1578244462073) (:by |rJG4IHzWf) (:id |EyyhegSRJ)
|b $ {} (:text "|\"\"少于\"需二参数") (:type :leaf) (:at 1626679317622) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578244462073) (:by |rJG4IHzWf) (:id |_hz3e3yaA)
|j $ {} (:text |2) (:type :leaf) (:at 1578244462073) (:by |rJG4IHzWf) (:id |TIpGORRf0)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1578244462073) (:by |rJG4IHzWf) (:id |sq40EAhAO)
|j $ {} (:text |xs) (:type :leaf) (:at 1578244462073) (:by |rJG4IHzWf) (:id |bJrm2AQDZ)
:type :expr
:at 1578244462073
:by |rJG4IHzWf
:id |fD_txEkIJ
:type :expr
:at 1578244462073
:by |rJG4IHzWf
:id |AXO5vRLGW
:type :expr
:at 1578244462073
:by |rJG4IHzWf
:id |MM9C0ybao
|x $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626679320223) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |params) (:type :leaf) (:at 1626679321546) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679323488) (:by |rJG4IHzWf)
:type :expr
:at 1626679320561
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626679326545) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679327653) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626679329272) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626679330628) (:by |rJG4IHzWf)
:type :expr
:at 1626679324482
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626679367873) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |<) (:type :leaf) (:at 1578244469119) (:by |rJG4IHzWf) (:id |41X-RkJ1M)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626679364539) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626679364539) (:by |rJG4IHzWf)
|r $ {} (:text |0) (:type :leaf) (:at 1626679364539) (:by |rJG4IHzWf)
:type :expr
:at 1626679364539
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626679366650) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626695707180) (:by |rJG4IHzWf)
|r $ {} (:text |1) (:type :leaf) (:at 1626679366650) (:by |rJG4IHzWf)
:type :expr
:at 1626679366650
:by |rJG4IHzWf
:type :expr
:at 1578244469119
:by |rJG4IHzWf
:id |G_Ds6jtmB
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679370607) (:by |rJG4IHzWf)
:type :expr
:at 1626679367342
:by |rJG4IHzWf
:type :expr
:at 1626679319135
:by |rJG4IHzWf
:type :expr
:at 1578244460470
:by |rJG4IHzWf
:id |G9UmZkOL-
|scope-contains? $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577897418039) (:by |rJG4IHzWf) (:id |cLrf6__30)
|j $ {} (:text |scope-contains?) (:type :leaf) (:at 1577897418039) (:by |rJG4IHzWf) (:id |b2Z46cCLX)
|r $ {}
:data $ {}
|T $ {} (:text |*scope) (:type :leaf) (:at 1577897434236) (:by |rJG4IHzWf) (:id |lOBZGKpVW)
|j $ {} (:text |x) (:type :leaf) (:at 1577897420168) (:by |rJG4IHzWf) (:id |GTCfNGENT)
:type :expr
:at 1577897418039
:by |rJG4IHzWf
:id |TZXjQqE7v
|t $ {}
:data $ {}
|T $ {} (:text |assert) (:type :leaf) (:at 1577897629512) (:by |rJG4IHzWf) (:id |jHlb2G9xM)
|r $ {} (:text "|\"*scope should be an atom") (:type :leaf) (:at 1577897629512) (:by |rJG4IHzWf) (:id |INHIeA6Xh)
|v $ {}
:data $ {}
|T $ {} (:text |ref?) (:type :leaf) (:at 1626545674289) (:by |rJG4IHzWf)
|r $ {} (:text |*scope) (:type :leaf) (:at 1626545671205) (:by |rJG4IHzWf)
:type :expr
:at 1626545671205
:by |rJG4IHzWf
:type :expr
:at 1577897629512
:by |rJG4IHzWf
:id |t5DtKZO60
|v $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1577897436888) (:by |rJG4IHzWf) (:id |S80et8JBleaf)
|j $ {}
:data $ {}
|T $ {} (:text |contains?) (:type :leaf) (:at 1577897442891) (:by |rJG4IHzWf) (:id |gvoW02psh)
|j $ {} (:text |@*scope) (:type :leaf) (:at 1577897446188) (:by |rJG4IHzWf) (:id |Gkx8oEUq)
|r $ {} (:text |x) (:type :leaf) (:at 1577897446516) (:by |rJG4IHzWf) (:id |03k_dP_Tm)
:type :expr
:at 1577897441444
:by |rJG4IHzWf
:id |GdPsJj4Q
|r $ {} (:text |true) (:type :leaf) (:at 1577897448033) (:by |rJG4IHzWf) (:id |yeQVSAV6)
|v $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1577897451713) (:by |rJG4IHzWf) (:id |JOu60Y98)
|j $ {}
:data $ {}
|T $ {} (:text |contains?) (:type :leaf) (:at 1577897454785) (:by |rJG4IHzWf) (:id |gIvz_hOiB)
|j $ {} (:text |@*scope) (:type :leaf) (:at 1577897456684) (:by |rJG4IHzWf) (:id |n2y7VMnZ)
|r $ {} (:text |:__scope__) (:type :leaf) (:at 1577897463023) (:by |rJG4IHzWf) (:id |lvcy7BlGd)
:type :expr
:at 1577897453649
:by |rJG4IHzWf
:id |44huhg0U
|r $ {}
:data $ {}
|T $ {} (:text |recur) (:type :leaf) (:at 1577897477344) (:by |rJG4IHzWf) (:id |E_QKDhwLleaf)
|j $ {}
:data $ {}
|T $ {} (:text |:__scope__) (:type :leaf) (:at 1577897485939) (:by |rJG4IHzWf) (:id |mzE3E5MN)
|j $ {} (:text |@*scope) (:type :leaf) (:at 1577897489380) (:by |rJG4IHzWf) (:id |ytoURwHy)
:type :expr
:at 1577897480057
:by |rJG4IHzWf
:id |XubiNPkx
|r $ {} (:text |x) (:type :leaf) (:at 1577897491870) (:by |rJG4IHzWf) (:id |7pPYuFG7)
:type :expr
:at 1577897474315
:by |rJG4IHzWf
:id |E_QKDhwL
|v $ {} (:text |false) (:type :leaf) (:at 1577897496629) (:by |rJG4IHzWf) (:id |EVhZJQ5BY)
:type :expr
:at 1577897448727
:by |rJG4IHzWf
:id |JHbs0ZhSE
:type :expr
:at 1577897435121
:by |rJG4IHzWf
:id |S80et8JB
:type :expr
:at 1577897418039
:by |rJG4IHzWf
:id |YM2O03N8c
|call-call $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1626655006728) (:by |rJG4IHzWf)
|j $ {} (:text |call-call) (:type :leaf) (:at 1626655006728) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |head) (:type :leaf) (:at 1626655006728) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626655006728) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626655006728) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626677422860) (:by |rJG4IHzWf)
:type :expr
:at 1626655006728
:by |rJG4IHzWf
|v $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626655014115) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|b $ {} (:text |params) (:type :leaf) (:at 1626655023366) (:by |rJG4IHzWf)
|r $ {} (:text |new-scope) (:type :leaf) (:at 1626655042966) (:by |rJG4IHzWf)
:type :expr
:at 1626655014484
:by |rJG4IHzWf
|N $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626655066062) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626655069931) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626655074265) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626682080711) (:by |rJG4IHzWf)
:type :expr
:at 1626655063304
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |f) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|r $ {} (:text |head) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
:type :expr
:at 1626655046966
:by |rJG4IHzWf
:type :expr
:at 1626655046966
:by |rJG4IHzWf
:type :expr
:at 1626655046966
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |;) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|j $ {} (:text |println) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|r $ {} (:text "|\"*scope") (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|v $ {} (:text |@scope) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|x $ {} (:text |f) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
:type :expr
:at 1626655046966
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |fn?) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|j $ {} (:text |f) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
:type :expr
:at 1626655046966
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |f) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|j $ {} (:text |&) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|r $ {} (:text |params) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
:type :expr
:at 1626655046966
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |raise) (:type :leaf) (:at 1626677436535) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|j $ {} (:text "|\"未有法也, 得") (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|j $ {} (:text |head) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
:type :expr
:at 1626655046966
:by |rJG4IHzWf
|v $ {} (:text "|\"乃") (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
|x $ {} (:text |f) (:type :leaf) (:at 1626655046966) (:by |rJG4IHzWf)
:type :expr
:at 1626655046966
:by |rJG4IHzWf
:type :expr
:at 1626655046966
:by |rJG4IHzWf
:type :expr
:at 1626655046966
:by |rJG4IHzWf
:type :expr
:at 1626655046966
:by |rJG4IHzWf
:type :expr
:at 1626655012840
:by |rJG4IHzWf
:type :expr
:at 1626655006728
:by |rJG4IHzWf
|call-defn $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577893020634) (:by |rJG4IHzWf) (:id |NVuHKoC9a)
|j $ {} (:text |call-defn) (:type :leaf) (:at 1577893020634) (:by |rJG4IHzWf) (:id |Ko92PvpNw)
|r $ {}
:data $ {}
|T $ {} (:text |body) (:type :leaf) (:at 1577893020634) (:by |rJG4IHzWf) (:id |Oxog4SW7F)
|j $ {} (:text |parent-scope) (:type :leaf) (:at 1626548281458) (:by |rJG4IHzWf) (:id |VvOxTqYdG)
|r $ {} (:text |stdout) (:type :leaf) (:at 1577893020634) (:by |rJG4IHzWf) (:id |bc5vedJc2)
:type :expr
:at 1577893020634
:by |rJG4IHzWf
:id |5f3GNPYlZ
|x $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1577896404256) (:by |rJG4IHzWf) (:id |eQUy0GHlleaf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |f-name) (:type :leaf) (:at 1577896408404) (:by |rJG4IHzWf) (:id |6FKvKj_yz)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1577896441106) (:by |rJG4IHzWf) (:id |l-NdQnlyt)
|j $ {} (:text |body) (:type :leaf) (:at 1577896411901) (:by |rJG4IHzWf) (:id |rDXfI0xR-)
|r $ {} (:text |0) (:type :leaf) (:at 1577896442109) (:by |rJG4IHzWf) (:id |bo5hZuYOv)
:type :expr
:at 1577896410629
:by |rJG4IHzWf
:id |xEnKecCA
:type :expr
:at 1577896404612
:by |rJG4IHzWf
:id |W5uRoTji3
|j $ {}
:data $ {}
|T $ {} (:text |f-params) (:type :leaf) (:at 1577896416060) (:by |rJG4IHzWf) (:id |2AHN4TuHhleaf)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1577896428499) (:by |rJG4IHzWf) (:id |9IhjL8dL)
|j $ {} (:text |body) (:type :leaf) (:at 1577896437055) (:by |rJG4IHzWf) (:id |JKOioFhB)
|r $ {} (:text |1) (:type :leaf) (:at 1577896443576) (:by |rJG4IHzWf) (:id |iTygR-mc3)
:type :expr
:at 1577896416597
:by |rJG4IHzWf
:id |oAc0x1YxA
:type :expr
:at 1577896413453
:by |rJG4IHzWf
:id |2AHN4TuHh
|r $ {}
:data $ {}
|T $ {} (:text |f-body) (:type :leaf) (:at 1577896448869) (:by |rJG4IHzWf) (:id |oDCShMn6cleaf)
|j $ {}
:data $ {}
|T $ {} (:text |.slice) (:type :leaf) (:at 1626547484025) (:by |rJG4IHzWf) (:id |tHFVZlW2)
|j $ {} (:text |body) (:type :leaf) (:at 1577896453336) (:by |rJG4IHzWf) (:id |i9hIMTf2U)
|r $ {} (:text |2) (:type :leaf) (:at 1577896453942) (:by |rJG4IHzWf) (:id |T9IODlsKy)
:type :expr
:at 1577896450383
:by |rJG4IHzWf
:id |_SuHcDKdH
:type :expr
:at 1577896444765
:by |rJG4IHzWf
:id |oDCShMn6c
:type :expr
:at 1577896404458
:by |rJG4IHzWf
:id |F5IYPfxoH
|r $ {}
:data $ {}
|T $ {} (:text |when-not) (:type :leaf) (:at 1577896462427) (:by |rJG4IHzWf) (:id |4NQ2T3ltoleaf)
|j $ {}
:data $ {}
|T $ {} (:text |string?) (:type :leaf) (:at 1577896463644) (:by |rJG4IHzWf) (:id |asadc_w4m)
|j $ {} (:text |f-name) (:type :leaf) (:at 1577896469466) (:by |rJG4IHzWf) (:id |IuvShJNyL)
:type :expr
:at 1577896462715
:by |rJG4IHzWf
:id |Vf7L_IASz
|r $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626682040597) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626682038878) (:by |rJG4IHzWf) (:id |zBBbuVGj)
|j $ {} (:text "|\"未知") (:type :leaf) (:at 1577896494388) (:by |rJG4IHzWf) (:id |F5HpZ9sJ)
|r $ {}
:data $ {}
|D $ {} (:text |pr-str) (:type :leaf) (:at 1577896501804) (:by |rJG4IHzWf) (:id |1vtJCN0J)
|T $ {} (:text |f-name) (:type :leaf) (:at 1577896499330) (:by |rJG4IHzWf) (:id |dsJImGK86)
:type :expr
:at 1577896496150
:by |rJG4IHzWf
:id |-yvVUm8CG
:type :expr
:at 1577896470951
:by |rJG4IHzWf
:id |XIHK7GMvg
:type :expr
:at 1626682039738
:by |rJG4IHzWf
:type :expr
:at 1577896457807
:by |rJG4IHzWf
:id |4NQ2T3lto
|v $ {}
:data $ {}
|T $ {} (:text |when-not) (:type :leaf) (:at 1577896462427) (:by |rJG4IHzWf) (:id |4NQ2T3ltoleaf)
|j $ {}
:data $ {}
|D $ {} (:text |every?) (:type :leaf) (:at 1577896506349) (:by |rJG4IHzWf) (:id |66KD-f3G-)
|j $ {} (:text |f-params) (:type :leaf) (:at 1577896509299) (:by |rJG4IHzWf) (:id |IuvShJNyL)
|r $ {} (:text |string?) (:type :leaf) (:at 1626629706357) (:by |rJG4IHzWf)
:type :expr
:at 1577896462715
:by |rJG4IHzWf
:id |Vf7L_IASz
|r $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626682045329) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626682044232) (:by |rJG4IHzWf) (:id |zBBbuVGj)
|j $ {} (:text "|\"未知") (:type :leaf) (:at 1577896494388) (:by |rJG4IHzWf) (:id |F5HpZ9sJ)
|r $ {}
:data $ {}
|D $ {} (:text |pr-str) (:type :leaf) (:at 1577896501804) (:by |rJG4IHzWf) (:id |1vtJCN0J)
|T $ {} (:text |f-params) (:type :leaf) (:at 1577896512090) (:by |rJG4IHzWf) (:id |dsJImGK86)
:type :expr
:at 1577896496150
:by |rJG4IHzWf
:id |-yvVUm8CG
:type :expr
:at 1577896470951
:by |rJG4IHzWf
:id |XIHK7GMvg
:type :expr
:at 1626682044764
:by |rJG4IHzWf
:type :expr
:at 1577896457807
:by |rJG4IHzWf
:id |o-G3Uhpv
|x $ {}
:data $ {}
|T $ {} (:text |when) (:type :leaf) (:at 1577896520728) (:by |rJG4IHzWf) (:id |TqzADReWleaf)
|j $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1577896522237) (:by |rJG4IHzWf) (:id |pc9Io9SGp)
|j $ {} (:text |f-body) (:type :leaf) (:at 1577896524877) (:by |rJG4IHzWf) (:id |5mLSg61w8)
:type :expr
:at 1577896521044
:by |rJG4IHzWf
:id |bfReuYu8M
|r $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626682049580) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626682047082) (:by |rJG4IHzWf) (:id |M9jOO1ba1leaf)
|j $ {} (:text "|\"未有函数体") (:type :leaf) (:at 1577896534674) (:by |rJG4IHzWf) (:id |tiyJJuGu4)
:type :expr
:at 1577896525548
:by |rJG4IHzWf
:id |M9jOO1ba1
:type :expr
:at 1626682048194
:by |rJG4IHzWf
:type :expr
:at 1577896515316
:by |rJG4IHzWf
:id |TqzADReW
|y $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1626679086494) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {}
:data $ {}
|D $ {} (:text |f) (:type :leaf) (:at 1626679089970) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |&) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |ys) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |when-not) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |ys) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |f-params) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|r $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626682052217) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626682050950) (:by |rJG4IHzWf)
|j $ {} (:text "|\"长度未相符") (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |ys) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |f-params) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
:type :expr
:at 1626682051455
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |scope) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |apply-args) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |parent-scope) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |f-params) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|r $ {} (:text |0) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |s) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|r $ {} (:text |idx) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|r $ {} (:text |s) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|v $ {}
:data $ {}
|T $ {} (:text |recur) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |s) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626683490876) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |ys) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|r $ {} (:text |idx) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |rest) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626683477856) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |inc) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
|j $ {} (:text |idx) (:type :leaf) (:at 1626548311491) (:by |rJG4IHzWf)
:type :expr
:at 1626548311491
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |scope-inner) (:type :leaf) (:at 1626695247901) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1626695249144) (:by |rJG4IHzWf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626695253062) (:by |rJG4IHzWf)
|r $ {} (:text |f-name) (:type :leaf) (:at 1626695255799) (:by |rJG4IHzWf)
|v $ {} (:text |f) (:type :leaf) (:at 1626695256036) (:by |rJG4IHzWf)
:type :expr
:at 1626695248158
:by |rJG4IHzWf
:type :expr
:at 1626695243948
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |apply-args) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |nil) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {} (:text |scope-inner) (:type :leaf) (:at 1626695260199) (:by |rJG4IHzWf)
|r $ {} (:text |f-body) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
:type :expr
:at 1626679073782
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |ret) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {} (:text |s) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|r $ {} (:text |xs) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
:type :expr
:at 1626679073782
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
:type :expr
:at 1626679073782
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {} (:text |ret) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|r $ {} (:text |s) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
:type :expr
:at 1626679073782
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |let[]) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |v) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {} (:text |s2) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
:type :expr
:at 1626679073782
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
:type :expr
:at 1626679073782
:by |rJG4IHzWf
|r $ {} (:text |s) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
:type :expr
:at 1626679073782
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |recur) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {} (:text |v) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|r $ {} (:text |s2) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|v $ {}
:data $ {}
|T $ {} (:text |rest) (:type :leaf) (:at 1626679073782) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626696662004) (:by |rJG4IHzWf)
:type :expr
:at 1626679073782
:by |rJG4IHzWf
:type :expr
:at 1626679073782
:by |rJG4IHzWf
:type :expr
:at 1626679073782
:by |rJG4IHzWf
:type :expr
:at 1626679073782
:by |rJG4IHzWf
:type :expr
:at 1626679073782
:by |rJG4IHzWf
:type :expr
:at 1626679073782
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
:type :expr
:at 1626548311491
:by |rJG4IHzWf
:type :expr
:at 1626679089361
:by |rJG4IHzWf
:type :expr
:at 1626679090534
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626679092684) (:by |rJG4IHzWf)
|j $ {} (:text |f) (:type :leaf) (:at 1626679093867) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|D $ {} (:text |assoc) (:type :leaf) (:at 1626679102566) (:by |rJG4IHzWf)
|T $ {} (:text |parent-scope) (:type :leaf) (:at 1626679109862) (:by |rJG4IHzWf)
|j $ {} (:text |f-name) (:type :leaf) (:at 1626679112398) (:by |rJG4IHzWf)
|r $ {} (:text |f) (:type :leaf) (:at 1626679114246) (:by |rJG4IHzWf)
:type :expr
:at 1626679095043
:by |rJG4IHzWf
:type :expr
:at 1626679091827
:by |rJG4IHzWf
:type :expr
:at 1626679085807
:by |rJG4IHzWf
:type :expr
:at 1577896391218
:by |rJG4IHzWf
:id |eQUy0GHl
:type :expr
:at 1577893020634
:by |rJG4IHzWf
:id |Ny2HJAGlh
|call-host $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1585672459319) (:by |rJG4IHzWf) (:id |FTHZoURZye)
|j $ {} (:text |call-host) (:type :leaf) (:at 1585672459319) (:by |rJG4IHzWf) (:id |plf84QUGPS)
|r $ {}
:data $ {}
|T $ {} (:text |head) (:type :leaf) (:at 1585672459319) (:by |rJG4IHzWf) (:id |JNwpIkxrIE)
|j $ {} (:text |body) (:type :leaf) (:at 1585672459319) (:by |rJG4IHzWf) (:id |KmBCqXP_FQ)
|r $ {} (:text |scope) (:type :leaf) (:at 1626654856736) (:by |rJG4IHzWf) (:id |VV1a_2ffH7)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626677380093) (:by |rJG4IHzWf)
:type :expr
:at 1585672459319
:by |rJG4IHzWf
:id |I2uvOobKmg
|v $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626654840063) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|j $ {} (:text |params) (:type :leaf) (:at 1626654848293) (:by |rJG4IHzWf)
|v $ {} (:text |new-scope) (:type :leaf) (:at 1626654853401) (:by |rJG4IHzWf)
:type :expr
:at 1626654840337
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626654863920) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626654865625) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626654868646) (:by |rJG4IHzWf)
:type :expr
:at 1626654859793
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |W6zgJ1ClZo)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |method) (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |QwC75m2ksJ)
|j $ {}
:data $ {}
|T $ {} (:text |.slice) (:type :leaf) (:at 1626545211858) (:by |rJG4IHzWf) (:id |fCgB9YPWr0)
|j $ {} (:text |head) (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |Iqfj-A2QqH)
|r $ {} (:text |4) (:type :leaf) (:at 1585672469793) (:by |rJG4IHzWf) (:id |0xRCziyKTp)
:type :expr
:at 1585672466783
:by |rJG4IHzWf
:id |7DMosnDuTa
:type :expr
:at 1585672466783
:by |rJG4IHzWf
:id |pvK0xS28Xt
|j $ {}
:data $ {}
|T $ {} (:text |f) (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |viCVHY39x0)
|j $ {}
:data $ {}
|T $ {} (:text |case-default) (:type :leaf) (:at 1626545203124) (:by |rJG4IHzWf) (:id |-erEXdHR1D)
|j $ {} (:text |method) (:type :leaf) (:at 1585672477329) (:by |rJG4IHzWf) (:id |o8jYqNxbR7)
|n $ {}
:data $ {}
|T $ {} (:text |do) (:type :leaf) (:at 1626545203970) (:by |rJG4IHzWf)
|j $ {} (:text |nil) (:type :leaf) (:at 1626545203970) (:by |rJG4IHzWf)
:type :expr
:at 1626545203970
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text "|\"九章->js") (:type :leaf) (:at 1626545233816) (:by |rJG4IHzWf) (:id |161bvd_DdO)
|j $ {} (:text |to-js-data) (:type :leaf) (:at 1626545250697) (:by |rJG4IHzWf) (:id |BB8qgsZjS)
:type :expr
:at 1585672477701
:by |rJG4IHzWf
:id |8q7lQzucxo
|t $ {}
:data $ {}
|T $ {} (:text "|\"js->九章") (:type :leaf) (:at 1626545238645) (:by |rJG4IHzWf) (:id |161bvd_DdO)
|j $ {} (:text |to-cirru-edn) (:type :leaf) (:at 1626545272009) (:by |rJG4IHzWf) (:id |BB8qgsZjS)
:type :expr
:at 1585672477701
:by |rJG4IHzWf
:id |xgNo1Nz6Ar
:type :expr
:at 1585672474098
:by |rJG4IHzWf
:id |F9Hzu1Nsb
:type :expr
:at 1585672466783
:by |rJG4IHzWf
:id |kGKZZwLDdk
:type :expr
:at 1585672466783
:by |rJG4IHzWf
:id |dVXu7fDxPB
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |Sl4RAhaM2zo)
|j $ {}
:data $ {}
|T $ {} (:text |fn?) (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |tvJ26q1lMdy)
|j $ {} (:text |f) (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |ItVYGRXO3Tl)
:type :expr
:at 1585672466783
:by |rJG4IHzWf
:id |lK3oIq2d_rv
|p $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626677404566) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|j $ {} (:text |f) (:type :leaf) (:at 1585672498886) (:by |rJG4IHzWf) (:id |xD4EvL1Do3)
|n $ {} (:text |&) (:type :leaf) (:at 1626654898852) (:by |rJG4IHzWf)
|r $ {} (:text |params) (:type :leaf) (:at 1626654894998) (:by |rJG4IHzWf)
:type :expr
:at 1585672496842
:by |rJG4IHzWf
:id |eGhkL0XRKk
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626677411506) (:by |rJG4IHzWf)
:type :expr
:at 1626677403036
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |raise) (:type :leaf) (:at 1626677401878) (:by |rJG4IHzWf) (:id |S7NlEUUveqJ)
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |ky-WzAxZwQ1)
|j $ {} (:text "|\"不知其术: ") (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |MfwTkhQi5PQ)
|r $ {} (:text |head) (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |FOMaoSAC6kM)
|v $ {} (:text "|\" ") (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |Q4pvmwpFfz4)
|x $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |Mogn1WRzBRU)
|j $ {} (:text |f) (:type :leaf) (:at 1585672466783) (:by |rJG4IHzWf) (:id |yRqAt26N5WO)
:type :expr
:at 1585672466783
:by |rJG4IHzWf
:id |_sL2wnzdoAc
:type :expr
:at 1585672466783
:by |rJG4IHzWf
:id |s6i9DVJoLgT
:type :expr
:at 1585672466783
:by |rJG4IHzWf
:id |1weRjjJT4_0
:type :expr
:at 1585672466783
:by |rJG4IHzWf
:id |Af7cR7RUOfn
:type :expr
:at 1585672466783
:by |rJG4IHzWf
:id |spVndR_pVS
:type :expr
:at 1626654836589
:by |rJG4IHzWf
:type :expr
:at 1585672459319
:by |rJG4IHzWf
:id |XCZ2VhflB9
|run-program $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577639779029) (:by |rJG4IHzWf) (:id |s6VjkQrJ_)
|j $ {} (:text |run-program) (:type :leaf) (:at 1577639779029) (:by |rJG4IHzWf) (:id |emDSKq5qW)
|r $ {}
:data $ {}
|T $ {} (:text |source) (:type :leaf) (:at 1577867639506) (:by |rJG4IHzWf) (:id |0jBHrwcp)
:type :expr
:at 1577639779029
:by |rJG4IHzWf
:id |xRXhENtbv
|t $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |instructions) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |parse-cirru) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {} (:text |source) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |stdout) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |&) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {} (:text |args) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
:type :expr
:at 1626676701316
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |reset!) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {} (:text |*stdout-logs) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {} (:text |@*stdout-logs) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|r $ {} (:text |&newline) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|v $ {}
:data $ {}
|T $ {} (:text |.join-str) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {} (:text |args) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|r $ {} (:text "|\" ") (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |reset!) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {} (:text |*stdout-logs) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|r $ {} (:text "|\"") (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
:type :expr
:at 1626676701316
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {} (:text |instructions) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626681321786) (:by |rJG4IHzWf)
|j $ {} (:text |nil) (:type :leaf) (:at 1626681324457) (:by |rJG4IHzWf)
|r $ {} (:text "|\"") (:type :leaf) (:at 1626681327770) (:by |rJG4IHzWf)
:type :expr
:at 1626681322044
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |apply-args) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |nil) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
:type :expr
:at 1626676701316
:by |rJG4IHzWf
|r $ {} (:text |instructions) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
:type :expr
:at 1626676701316
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |ret) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|r $ {} (:text |xs) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
:type :expr
:at 1626676701316
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
:type :expr
:at 1626676701316
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|r $ {} (:text |ret) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|x $ {} (:text |@*stdout-logs) (:type :leaf) (:at 1626681315561) (:by |rJG4IHzWf)
:type :expr
:at 1626676701316
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |let[]) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|j $ {} (:text |r) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
|r $ {} (:text |next-scope) (:type :leaf) (:at 1626676701316) (:by |rJG4IHzWf)
:type :expr
:at 1626676701316
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1626681684987) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626681688574) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626681688574) (:by |rJG4IHzWf)
:type :expr
:at 1626681688574
:by |rJG4IHzWf
|r $ {} (:text |scope) (:type :leaf) (:at 1626681684987) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626681684987) (:by |rJG4IHzWf)
:type :expr
:at 1626681684987
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |recur) (:type :leaf) (:at 1626676709184) (:by |rJG4IHzWf)
|j $ {} (:text |r) (:type :leaf) (:at 1626676709184) (:by |rJG4IHzWf)
|v $ {} (:text |next-scope) (:type :leaf) (:at 1626681674911) (:by |rJG4IHzWf)
|x $ {}
:data $ {}
|T $ {} (:text |rest) (:type :leaf) (:at 1626676709184) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626676709184) (:by |rJG4IHzWf)
:type :expr
:at 1626676709184
:by |rJG4IHzWf
:type :expr
:at 1626676709184
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1626676701316
:by |rJG4IHzWf
:type :expr
:at 1577639779029
:by |rJG4IHzWf
:id |6cBVemAro
|call-hashmap $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577844074322) (:by |rJG4IHzWf) (:id |gNb8Wxp7d)
|j $ {} (:text |call-hashmap) (:type :leaf) (:at 1577844074322) (:by |rJG4IHzWf) (:id |XnxmXnoUS)
|r $ {}
:data $ {}
|L $ {} (:text |xs) (:type :leaf) (:at 1577844077714) (:by |rJG4IHzWf) (:id |_rx7S_SY)
|j $ {} (:text |scope) (:type :leaf) (:at 1626681734827) (:by |rJG4IHzWf) (:id |0CKr9_Py_)
|r $ {} (:text |stdout) (:type :leaf) (:at 1577867789209) (:by |rJG4IHzWf) (:id |q5hRdA-ov)
:type :expr
:at 1577844074322
:by |rJG4IHzWf
:id |HVO2lfiDx
|v $ {}
:data $ {}
|D $ {} (:text |if) (:type :leaf) (:at 1626680657805) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |every?) (:type :leaf) (:at 1577844161673) (:by |rJG4IHzWf) (:id |qpP7-CKY)
|b $ {} (:text |xs) (:type :leaf) (:at 1626545740845) (:by |rJG4IHzWf)
|j $ {} (:text |list?) (:type :leaf) (:at 1626545763189) (:by |rJG4IHzWf) (:id |8YUAZvzG-)
:type :expr
:at 1577844153316
:by |rJG4IHzWf
:id |nRvQ7-P15
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626681885189) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1626545743262) (:by |rJG4IHzWf) (:id |xboL688oB)
|j $ {} (:text |xs) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |mxR8eslF2)
|r $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |8r6_OHhi-)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |C6QfxDBkl)
|j $ {}
:data $ {}
|T $ {} (:text |pair) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |E4MkwnnlW)
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |uVqb5HiVo
|r $ {}
:data $ {}
|T $ {} (:text |when-not) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |nX-ZljwNj)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |mipraVLte)
|j $ {} (:text |2) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |60arQaw-t)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |H1Uoaa32j0)
|j $ {} (:text |pair) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |8EZ9zJBaDX)
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |VDBjO56hzr
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |a4lmwPjUQ
|r $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626680695484) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626680693804) (:by |rJG4IHzWf) (:id |79YN8ZaPpB)
|j $ {} (:text "|\"Invalid length") (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |kIW768M83T)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |6SzFQWDc3K)
|j $ {} (:text |pair) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |fqUV7mnPBW)
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |zsNCVOPDrd
|v $ {} (:text "|\"of") (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |Wod2VWEFF8)
|x $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |ZwoV0I3fTL)
|j $ {} (:text |pair) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |WR0ddmDQX-)
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |yjN1oZor54
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |wSPvHmItHo
:type :expr
:at 1626680694567
:by |rJG4IHzWf
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |b79_nP-co
|v $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1626545767832) (:by |rJG4IHzWf) (:id |niRA36kMm1)
|j $ {} (:text |pair) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |s02EjjWs_s)
|r $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |0rLJbQHJIn)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |24E9PXAALA)
|j $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |Ep7FJ8BLX_)
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |ZApQUDo0B7
|v $ {}
:data $ {}
|D $ {} (:text |first) (:type :leaf) (:at 1626680687458) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |JvHaUx3ff3)
|j $ {} (:text |x) (:type :leaf) (:at 1577845987579) (:by |rJG4IHzWf) (:id |7mVSfSDeUy)
|r $ {} (:text |scope) (:type :leaf) (:at 1626681736709) (:by |rJG4IHzWf) (:id |ekxP0kM4Od)
|v $ {} (:text |stdout) (:type :leaf) (:at 1577867808435) (:by |rJG4IHzWf) (:id |_x42mfqoHC)
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |n87OdgMMRR
:type :expr
:at 1626680682303
:by |rJG4IHzWf
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |KXUDVjk_9K
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |0hV9vJg6aV
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |TMKIGCZbrQ
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |OjHevBIdz
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |n06CbKTbz
|v $ {}
:data $ {}
|T $ {} (:text |pairs-map) (:type :leaf) (:at 1626680709406) (:by |rJG4IHzWf)
:type :expr
:at 1626680697502
:by |rJG4IHzWf
:type :expr
:at 1577845987579
:by |rJG4IHzWf
:id |jfnrKnSe_
|j $ {} (:text |scope) (:type :leaf) (:at 1626681887691) (:by |rJG4IHzWf)
:type :expr
:at 1626681883822
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |raise) (:type :leaf) (:at 1626680672314) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626680672314) (:by |rJG4IHzWf)
|j $ {} (:text "|\"Unknown structure of map") (:type :leaf) (:at 1626680672314) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1626680672314) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626680672314) (:by |rJG4IHzWf)
:type :expr
:at 1626680672314
:by |rJG4IHzWf
|v $ {} (:text |&newline) (:type :leaf) (:at 1626680672314) (:by |rJG4IHzWf)
:type :expr
:at 1626680672314
:by |rJG4IHzWf
:type :expr
:at 1626680672314
:by |rJG4IHzWf
:type :expr
:at 1577844191426
:by |rJG4IHzWf
:id |K6oJrk45
:type :expr
:at 1577844074322
:by |rJG4IHzWf
:id |yaSsgaIDg
|call-self-multiply $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577879085112) (:by |rJG4IHzWf) (:id |xh0C95wrP)
|j $ {} (:text |call-self-multiply) (:type :leaf) (:at 1577879085112) (:by |rJG4IHzWf) (:id |vfXUCMt_G)
|r $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1577879089006) (:by |rJG4IHzWf) (:id |B9qa-JNFx)
|j $ {} (:text |scope) (:type :leaf) (:at 1626678322463) (:by |rJG4IHzWf) (:id |-x2EJdUWF)
|r $ {} (:text |stdout) (:type :leaf) (:at 1577879085112) (:by |rJG4IHzWf) (:id |XiMYCoPIO)
:type :expr
:at 1577879085112
:by |rJG4IHzWf
:id |giJXpokhQ
|v $ {}
:data $ {}
|T $ {} (:text |let[]) (:type :leaf) (:at 1626678304852) (:by |rJG4IHzWf) (:id |FeY4oxb7Y)
|j $ {}
:data $ {}
|T $ {} (:text |v) (:type :leaf) (:at 1577879087832) (:by |rJG4IHzWf) (:id |gS8ZIvdTL)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678316948) (:by |rJG4IHzWf)
:type :expr
:at 1626678312440
:by |rJG4IHzWf
|n $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1577879087832) (:by |rJG4IHzWf) (:id |w8YvUgWbF)
|j $ {} (:text |x) (:type :leaf) (:at 1577879087832) (:by |rJG4IHzWf) (:id |B1aasUWY1)
|r $ {} (:text |scope) (:type :leaf) (:at 1626678325262) (:by |rJG4IHzWf) (:id |7xfIiu2ky)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626678330704) (:by |rJG4IHzWf)
:type :expr
:at 1577879087832
:by |rJG4IHzWf
:id |ET-LhBd8v
|r $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626678333141) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |*) (:type :leaf) (:at 1577879087832) (:by |rJG4IHzWf) (:id |gnEGa-y1-)
|j $ {} (:text |v) (:type :leaf) (:at 1577879087832) (:by |rJG4IHzWf) (:id |Eg3iESNnpQ)
|r $ {} (:text |v) (:type :leaf) (:at 1577879087832) (:by |rJG4IHzWf) (:id |plqFeICh_2)
:type :expr
:at 1577879087832
:by |rJG4IHzWf
:id |RHC8UxFfM
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678335620) (:by |rJG4IHzWf)
:type :expr
:at 1626678332662
:by |rJG4IHzWf
:type :expr
:at 1577879087832
:by |rJG4IHzWf
:id |1cuDeTuTp
:type :expr
:at 1577879085112
:by |rJG4IHzWf
:id |OK0F5gXH8
|call-add $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577878565868) (:by |rJG4IHzWf) (:id |zHCz58kiy)
|j $ {} (:text |call-add) (:type :leaf) (:at 1577878565868) (:by |rJG4IHzWf) (:id |_tsfXgM2-)
|r $ {}
:data $ {}
|T $ {} (:text |xs) (:type :leaf) (:at 1577879070917) (:by |rJG4IHzWf) (:id |Vk0bsl4_U)
|j $ {} (:text |scope) (:type :leaf) (:at 1626677984239) (:by |rJG4IHzWf) (:id |EeakkbHnU)
|r $ {} (:text |stdout) (:type :leaf) (:at 1577878565868) (:by |rJG4IHzWf) (:id |fxrVqZmvv)
:type :expr
:at 1577878565868
:by |rJG4IHzWf
:id |AjhT1mk7J
|u $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626677931785) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |params) (:type :leaf) (:at 1626677939808) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626677941710) (:by |rJG4IHzWf)
:type :expr
:at 1626677932250
:by |rJG4IHzWf
|T $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626677929062) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626677929062) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626677929062) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626677929062) (:by |rJG4IHzWf)
:type :expr
:at 1626677929062
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626677948083) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |+) (:type :leaf) (:at 1626677964873) (:by |rJG4IHzWf)
|j $ {} (:text |&) (:type :leaf) (:at 1626677966002) (:by |rJG4IHzWf)
|r $ {} (:text |params) (:type :leaf) (:at 1626677968991) (:by |rJG4IHzWf)
:type :expr
:at 1626677950651
:by |rJG4IHzWf
|r $ {} (:text |new-scope) (:type :leaf) (:at 1626677955005) (:by |rJG4IHzWf)
:type :expr
:at 1626677945400
:by |rJG4IHzWf
:type :expr
:at 1626677929953
:by |rJG4IHzWf
:type :expr
:at 1577878565868
:by |rJG4IHzWf
:id |nlVYmYiGc
|call-get $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1578327085631) (:by |rJG4IHzWf) (:id |tIfLTRYsC)
|j $ {} (:text |call-get) (:type :leaf) (:at 1578327085631) (:by |rJG4IHzWf) (:id |hhpgskTEV)
|r $ {}
:data $ {}
|T $ {} (:text |xs) (:type :leaf) (:at 1578327131193) (:by |rJG4IHzWf) (:id |2VucPkzp6)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679683941) (:by |rJG4IHzWf) (:id |OL9vf2crb)
|r $ {} (:text |stdout) (:type :leaf) (:at 1578327085631) (:by |rJG4IHzWf) (:id |TbhZU02f2)
:type :expr
:at 1578327085631
:by |rJG4IHzWf
:id |rLATiMEHy
|v $ {}
:data $ {}
|T $ {} (:text |assert) (:type :leaf) (:at 1578327093404) (:by |rJG4IHzWf) (:id |D8U-FCE02)
|b $ {} (:text "|\"\"取\"需二参数") (:type :leaf) (:at 1626632541055) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578327093404) (:by |rJG4IHzWf) (:id |I7WzN38QD)
|j $ {} (:text |2) (:type :leaf) (:at 1578327093404) (:by |rJG4IHzWf) (:id |PCjqfhnch)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1578327093404) (:by |rJG4IHzWf) (:id |jfNLUwSev)
|j $ {} (:text |xs) (:type :leaf) (:at 1578327093404) (:by |rJG4IHzWf) (:id |1Vc3kGNps)
:type :expr
:at 1578327093404
:by |rJG4IHzWf
:id |cqevfCvYY
:type :expr
:at 1578327093404
:by |rJG4IHzWf
:id |toJHQ6Tm5
:type :expr
:at 1578327093404
:by |rJG4IHzWf
:id |KTircInv8
|x $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626679658116) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |params) (:type :leaf) (:at 1626679665718) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679674758) (:by |rJG4IHzWf)
:type :expr
:at 1626679658491
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626679678971) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679679404) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626679680708) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626679682149) (:by |rJG4IHzWf)
:type :expr
:at 1626679675280
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626679688299) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1578327112888) (:by |rJG4IHzWf) (:id |X6k-JS-V0leaf)
|b $ {}
:data $ {}
|T $ {} (:text |nth) (:type :leaf) (:at 1626679698587) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626679699590) (:by |rJG4IHzWf)
|r $ {} (:text |0) (:type :leaf) (:at 1626679700152) (:by |rJG4IHzWf)
:type :expr
:at 1626679693977
:by |rJG4IHzWf
|f $ {}
:data $ {}
|T $ {} (:text |nth) (:type :leaf) (:at 1626679698587) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626679699590) (:by |rJG4IHzWf)
|r $ {} (:text |1) (:type :leaf) (:at 1626679702594) (:by |rJG4IHzWf)
:type :expr
:at 1626679693977
:by |rJG4IHzWf
:type :expr
:at 1578327102656
:by |rJG4IHzWf
:id |X6k-JS-V0
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679691265) (:by |rJG4IHzWf)
:type :expr
:at 1626679687719
:by |rJG4IHzWf
:type :expr
:at 1626679654287
:by |rJG4IHzWf
:type :expr
:at 1578327085631
:by |rJG4IHzWf
:id |vInPPvpSX
|call-map $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1578327965530) (:by |rJG4IHzWf) (:id |HdDsraatM)
|j $ {} (:text |call-map) (:type :leaf) (:at 1578327965530) (:by |rJG4IHzWf) (:id |aI-Ki_R8E)
|r $ {}
:data $ {}
|T $ {} (:text |xs) (:type :leaf) (:at 1578327978069) (:by |rJG4IHzWf) (:id |aE1Z7CrtK)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679792065) (:by |rJG4IHzWf) (:id |jxSCqw45m)
|r $ {} (:text |stdout) (:type :leaf) (:at 1578327965530) (:by |rJG4IHzWf) (:id |2Aznimrbi)
:type :expr
:at 1578327965530
:by |rJG4IHzWf
:id |Dn-eX0_7W
|v $ {}
:data $ {}
|T $ {} (:text |assert) (:type :leaf) (:at 1578327973397) (:by |rJG4IHzWf) (:id |enYRvLwry)
|b $ {} (:text "|\"\"各\"需二参数") (:type :leaf) (:at 1626545374677) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578327973397) (:by |rJG4IHzWf) (:id |wmJZfxGDL)
|j $ {} (:text |2) (:type :leaf) (:at 1578327973397) (:by |rJG4IHzWf) (:id |c2f9w_4oK)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1578327973397) (:by |rJG4IHzWf) (:id |zq--wHHhI)
|j $ {} (:text |xs) (:type :leaf) (:at 1578327973397) (:by |rJG4IHzWf) (:id |hB9N_B0D2)
:type :expr
:at 1578327973397
:by |rJG4IHzWf
:id |UGewI4Qz5
:type :expr
:at 1578327973397
:by |rJG4IHzWf
:id |bQ26EdEEi
:type :expr
:at 1578327973397
:by |rJG4IHzWf
:id |noFA6suQZ
|x $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626679725537) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |params) (:type :leaf) (:at 1626679727872) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679732617) (:by |rJG4IHzWf)
:type :expr
:at 1626679725929
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626679802566) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679805398) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626679809049) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626679810304) (:by |rJG4IHzWf)
:type :expr
:at 1626679797658
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626698016181) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1626697719696) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |nth) (:type :leaf) (:at 1626697719696) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626697719696) (:by |rJG4IHzWf)
|r $ {} (:text |0) (:type :leaf) (:at 1626697719696) (:by |rJG4IHzWf)
:type :expr
:at 1626697719696
:by |rJG4IHzWf
|r $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1626698000387) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1626698002989) (:by |rJG4IHzWf)
:type :expr
:at 1626698002713
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |first) (:type :leaf) (:at 1626698014225) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626697719696) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626697719696) (:by |rJG4IHzWf)
|r $ {} (:text |1) (:type :leaf) (:at 1626697719696) (:by |rJG4IHzWf)
:type :expr
:at 1626697719696
:by |rJG4IHzWf
|j $ {} (:text |x) (:type :leaf) (:at 1626698009659) (:by |rJG4IHzWf)
:type :expr
:at 1626698008233
:by |rJG4IHzWf
:type :expr
:at 1626698011249
:by |rJG4IHzWf
:type :expr
:at 1626697999719
:by |rJG4IHzWf
:type :expr
:at 1626697719696
:by |rJG4IHzWf
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626698018590) (:by |rJG4IHzWf)
:type :expr
:at 1626698015695
:by |rJG4IHzWf
:type :expr
:at 1626679722037
:by |rJG4IHzWf
:type :expr
:at 1578327965530
:by |rJG4IHzWf
:id |2SLB0WZIX
|call-new $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1578327013129) (:by |rJG4IHzWf) (:id |_5tZe6qys)
|j $ {} (:text |call-new) (:type :leaf) (:at 1578327007175) (:by |rJG4IHzWf) (:id |a8oO-juKB)
|r $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1578327024944) (:by |rJG4IHzWf) (:id |1PZR5EkxF)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679590001) (:by |rJG4IHzWf) (:id |dhdZHTP4y)
|r $ {} (:text |stdout) (:type :leaf) (:at 1578327023501) (:by |rJG4IHzWf) (:id |qNJZbsphR)
:type :expr
:at 1578327023501
:by |rJG4IHzWf
:id |ekqc-nrTP
|v $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626679602051) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |v) (:type :leaf) (:at 1626679602579) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679605754) (:by |rJG4IHzWf)
:type :expr
:at 1626679602313
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1626679608565) (:by |rJG4IHzWf)
|j $ {} (:text |x) (:type :leaf) (:at 1626679608565) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626679824367) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626679608565) (:by |rJG4IHzWf)
:type :expr
:at 1626679608565
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626679610490) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |new) (:type :leaf) (:at 1578327011709) (:by |rJG4IHzWf) (:id |699qLT5jZ)
|b $ {} (:text |v) (:type :leaf) (:at 1626679612856) (:by |rJG4IHzWf)
:type :expr
:at 1578327009146
:by |rJG4IHzWf
:id |SAxo9_Sj-
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679617151) (:by |rJG4IHzWf)
:type :expr
:at 1626679610031
:by |rJG4IHzWf
:type :expr
:at 1626679596899
:by |rJG4IHzWf
:type :expr
:at 1578327007175
:by |rJG4IHzWf
:id |UBhWSjrU-
|call-not $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1578326926991) (:by |rJG4IHzWf) (:id |j3Se1_1WR)
|j $ {} (:text |call-not) (:type :leaf) (:at 1578326944145) (:by |rJG4IHzWf) (:id |xQ2isiKU_)
|r $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1578326936714) (:by |rJG4IHzWf) (:id |rLjXFNr-T)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679552648) (:by |rJG4IHzWf) (:id |rcpCJVvfM)
|r $ {} (:text |stdout) (:type :leaf) (:at 1578326926991) (:by |rJG4IHzWf) (:id |hPuhOhW3M)
:type :expr
:at 1578326926991
:by |rJG4IHzWf
:id |VF36rz2XJ
|v $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626679567992) (:by |rJG4IHzWf) (:id |717xmV-4)
|L $ {}
:data $ {}
|T $ {} (:text |v) (:type :leaf) (:at 1626679568619) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679573411) (:by |rJG4IHzWf)
:type :expr
:at 1626679568361
:by |rJG4IHzWf
|T $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1578326935527) (:by |rJG4IHzWf) (:id |nk8eEBcBw)
|f $ {} (:text |x) (:type :leaf) (:at 1578326939329) (:by |rJG4IHzWf) (:id |AfrmmIFFv)
|r $ {} (:text |scope) (:type :leaf) (:at 1626679558745) (:by |rJG4IHzWf) (:id |RWCp-eKU7)
|v $ {} (:text |stdout) (:type :leaf) (:at 1578326935527) (:by |rJG4IHzWf) (:id |dOFbbW2e6)
:type :expr
:at 1578326935527
:by |rJG4IHzWf
:id |Lolp1xWXY
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626679577350) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |not) (:type :leaf) (:at 1626679578094) (:by |rJG4IHzWf)
|j $ {} (:text |v) (:type :leaf) (:at 1626679578449) (:by |rJG4IHzWf)
:type :expr
:at 1626679577747
:by |rJG4IHzWf
|r $ {} (:text |new-scope) (:type :leaf) (:at 1626679580512) (:by |rJG4IHzWf)
:type :expr
:at 1626679575289
:by |rJG4IHzWf
:type :expr
:at 1578326939998
:by |rJG4IHzWf
:id |S4E7EH4Jc
:type :expr
:at 1578326926991
:by |rJG4IHzWf
:id |qR6e-pFg3
|call-require $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1585672190739) (:by |rJG4IHzWf) (:id |X0eodnKthm)
|j $ {} (:text |call-require) (:type :leaf) (:at 1585672190739) (:by |rJG4IHzWf) (:id |5X9aJXx57Y)
|r $ {}
:data $ {}
|T $ {} (:text |xs) (:type :leaf) (:at 1585672224700) (:by |rJG4IHzWf) (:id |vFLdNIt4vC)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679908651) (:by |rJG4IHzWf) (:id |-ZlUTUGLOT)
|r $ {} (:text |stdout) (:type :leaf) (:at 1585672190739) (:by |rJG4IHzWf) (:id |BF497ivcZ0)
:type :expr
:at 1585672190739
:by |rJG4IHzWf
:id |_C_nyQjlJg
|v $ {}
:data $ {}
|T $ {} (:text |assert) (:type :leaf) (:at 1585672202412) (:by |rJG4IHzWf) (:id |c5BwqoX8xB)
|b $ {} (:text "|\"\"引\"需一参数") (:type :leaf) (:at 1626679906793) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1585672202412) (:by |rJG4IHzWf) (:id |O3-mAz-kua)
|j $ {} (:text |1) (:type :leaf) (:at 1585672204777) (:by |rJG4IHzWf) (:id |g047rOQh2G)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1585672202412) (:by |rJG4IHzWf) (:id |LYBKjnQm9I)
|j $ {} (:text |xs) (:type :leaf) (:at 1585672202412) (:by |rJG4IHzWf) (:id |JAqSaEyIPp)
:type :expr
:at 1585672202412
:by |rJG4IHzWf
:id |xoYiplxKnP
:type :expr
:at 1585672202412
:by |rJG4IHzWf
:id |hnbvHkoTBX
:type :expr
:at 1585672202412
:by |rJG4IHzWf
:id |2gU7ungL79
|x $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626679912950) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |.!require) (:type :leaf) (:at 1626631323799) (:by |rJG4IHzWf) (:id |y-8ctqVheleaf)
|b $ {} (:text |js/globalThis) (:type :leaf) (:at 1626631328503) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1585672219995) (:by |rJG4IHzWf) (:id |OsNhYJBpZj)
|j $ {} (:text |xs) (:type :leaf) (:at 1585672225730) (:by |rJG4IHzWf) (:id |S8fw-2M7m)
:type :expr
:at 1585672219266
:by |rJG4IHzWf
:id |ahxIipUYx
:type :expr
:at 1585672211102
:by |rJG4IHzWf
:id |y-8ctqVhe
|j $ {} (:text |scope) (:type :leaf) (:at 1626679917367) (:by |rJG4IHzWf)
:type :expr
:at 1626679912398
:by |rJG4IHzWf
:type :expr
:at 1585672190739
:by |rJG4IHzWf
:id |xtIFkATpgK
|read-native-fn $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1585670059432) (:by |rJG4IHzWf) (:id |AQ0d5E7gHs)
|j $ {} (:text |read-native-fn) (:type :leaf) (:at 1585670059432) (:by |rJG4IHzWf) (:id |2L7mQV8Jpt)
|r $ {}
:data $ {}
|T $ {} (:text |o) (:type :leaf) (:at 1585670063311) (:by |rJG4IHzWf) (:id |lzvzc_nexS)
|j $ {} (:text |xs) (:type :leaf) (:at 1585670064887) (:by |rJG4IHzWf) (:id |y0JdKhCcH)
:type :expr
:at 1585670059432
:by |rJG4IHzWf
:id |FaY2YyTro3
|t $ {}
:data $ {}
|D $ {} (:text |;) (:type :leaf) (:at 1585673182505) (:by |rJG4IHzWf) (:id |C0Y7Z7ik7)
|T $ {} (:text |println) (:type :leaf) (:at 1585673088454) (:by |rJG4IHzWf) (:id |zp8CWWa7Xleaf)
|j $ {} (:text "|\"取") (:type :leaf) (:at 1585673091978) (:by |rJG4IHzWf) (:id |EqZ8tcBHx4)
|r $ {} (:text |xs) (:type :leaf) (:at 1585673093108) (:by |rJG4IHzWf) (:id |prkuXa6oc)
:type :expr
:at 1585673087547
:by |rJG4IHzWf
:id |zp8CWWa7X
|v $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1585670066265) (:by |rJG4IHzWf) (:id |XmIG2-s8NUleaf)
|j $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1585670068026) (:by |rJG4IHzWf) (:id |UmV_p6MtDF)
|j $ {} (:text |xs) (:type :leaf) (:at 1585670068508) (:by |rJG4IHzWf) (:id |J5flhJ2Eb)
:type :expr
:at 1585670067051
:by |rJG4IHzWf
:id |_aXFVhWg5O
|p $ {} (:text |o) (:type :leaf) (:at 1585671058185) (:by |rJG4IHzWf) (:id |HrVQx7rEFj)
|v $ {}
:data $ {}
|D $ {} (:text |if) (:type :leaf) (:at 1585670160220) (:by |rJG4IHzWf) (:id |wukYBHhW91)
|L $ {}
:data $ {}
|D $ {} (:text |nil?) (:type :leaf) (:at 1585670164422) (:by |rJG4IHzWf) (:id |Ib-VsxiDjp)
|T $ {} (:text |o) (:type :leaf) (:at 1585670160632) (:by |rJG4IHzWf) (:id |FpBCklOJlq)
:type :expr
:at 1585670162071
:by |rJG4IHzWf
:id |sgbEQf2r6
|P $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626680613529) (:by |rJG4IHzWf) (:id |o8-3Z_DfhX)
|T $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626680622259) (:by |rJG4IHzWf) (:id |Fuh1x4bFgleaf)
|j $ {} (:text "|\"Failed to load native function:") (:type :leaf) (:at 1585670190450) (:by |rJG4IHzWf) (:id |cRcKFPpNwl)
|r $ {} (:text |o) (:type :leaf) (:at 1585670191185) (:by |rJG4IHzWf) (:id |Iq7P5Dk-DP)
|v $ {} (:text |xs) (:type :leaf) (:at 1585670192370) (:by |rJG4IHzWf) (:id |lt73DdWOf)
:type :expr
:at 1585670165086
:by |rJG4IHzWf
:id |Fuh1x4bFg
:type :expr
:at 1585670172626
:by |rJG4IHzWf
:id |2TYs3hOr0y
|T $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1585670080882) (:by |rJG4IHzWf) (:id |2zffQgdh7)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |o') (:type :leaf) (:at 1585670085054) (:by |rJG4IHzWf) (:id |JfPNHjo1_Q)
|j $ {}
:data $ {}
|T $ {} (:text |aget) (:type :leaf) (:at 1585670094235) (:by |rJG4IHzWf) (:id |lKZ-iutbh)
|b $ {} (:text |o) (:type :leaf) (:at 1585670204106) (:by |rJG4IHzWf) (:id |48b2qtqGE3)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1585670099470) (:by |rJG4IHzWf) (:id |gUBcXdl0Sf)
|j $ {} (:text |xs) (:type :leaf) (:at 1585670104260) (:by |rJG4IHzWf) (:id |JsXC2glfQs)
:type :expr
:at 1585670095199
:by |rJG4IHzWf
:id |ZG2YGxWrg
:type :expr
:at 1585670085834
:by |rJG4IHzWf
:id |BkdZegJqY8
:type :expr
:at 1585670083089
:by |rJG4IHzWf
:id |tcXHEUq1-
:type :expr
:at 1585670082851
:by |rJG4IHzWf
:id |MeH136E74
|r $ {}
:data $ {}
|T $ {} (:text |recur) (:type :leaf) (:at 1585670109873) (:by |rJG4IHzWf) (:id |BzDTJq7khxleaf)
|j $ {} (:text |o') (:type :leaf) (:at 1585670113153) (:by |rJG4IHzWf) (:id |szmi_J62W)
|r $ {}
:data $ {}
|T $ {} (:text |rest) (:type :leaf) (:at 1585670117459) (:by |rJG4IHzWf) (:id |HlgVPUddu)
|j $ {} (:text |xs) (:type :leaf) (:at 1585670118265) (:by |rJG4IHzWf) (:id |CZ_5Fm4kvc)
:type :expr
:at 1585670116409
:by |rJG4IHzWf
:id |Tx6UVFWdBP
:type :expr
:at 1585670108921
:by |rJG4IHzWf
:id |BzDTJq7khx
:type :expr
:at 1585670079625
:by |rJG4IHzWf
:id |_sK1O8QIAT
:type :expr
:at 1585670158460
:by |rJG4IHzWf
:id |Dlxk48B83
:type :expr
:at 1585670065809
:by |rJG4IHzWf
:id |XmIG2-s8NU
:type :expr
:at 1585670059432
:by |rJG4IHzWf
:id |O_cVRsDDRN
|simple-str-pattern $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1577856396083) (:by |rJG4IHzWf) (:id |tjC4Y66XU)
|j $ {} (:text |simple-str-pattern) (:type :leaf) (:at 1577856396083) (:by |rJG4IHzWf) (:id |kmGeIjlYV)
|r $ {}
:data $ {}
|D $ {} (:text |new) (:type :leaf) (:at 1626544589397) (:by |rJG4IHzWf)
|L $ {} (:text |js/RegExp) (:type :leaf) (:at 1626544594126) (:by |rJG4IHzWf)
|T $ {} (:text "|\"[\\u4e00-\\u9fa5\\w\\d_\\-=\\+\\?\\!\\|\\.%]+") (:type :leaf) (:at 1626544600968) (:by |rJG4IHzWf) (:id |K1cVMot53)
:type :expr
:at 1626544588106
:by |rJG4IHzWf
:type :expr
:at 1577856396083
:by |rJG4IHzWf
:id |PZ87pD-Ex
|*stdout-logs $ {}
:data $ {}
|T $ {} (:text |defatom) (:type :leaf) (:at 1626676599255) (:by |rJG4IHzWf)
|j $ {} (:text |*stdout-logs) (:type :leaf) (:at 1626676597419) (:by |rJG4IHzWf)
|r $ {} (:text "|\"") (:type :leaf) (:at 1626676600315) (:by |rJG4IHzWf)
:type :expr
:at 1626676597419
:by |rJG4IHzWf
|call-native-hashmap $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1626679975799) (:by |rJG4IHzWf)
|j $ {} (:text |call-native-hashmap) (:type :leaf) (:at 1626679975799) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |body) (:type :leaf) (:at 1626679975799) (:by |rJG4IHzWf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679975799) (:by |rJG4IHzWf)
|r $ {} (:text |stdout) (:type :leaf) (:at 1626679975799) (:by |rJG4IHzWf)
:type :expr
:at 1626679975799
:by |rJG4IHzWf
|v $ {}
:data $ {}
|D $ {} (:text |if) (:type :leaf) (:at 1626679982592) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |and) (:type :leaf) (:at 1626679977439) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1626679977439) (:by |rJG4IHzWf)
|j $ {} (:text |0) (:type :leaf) (:at 1626679977439) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |.rem) (:type :leaf) (:at 1626679977439) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1626679977439) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626680815871) (:by |rJG4IHzWf)
:type :expr
:at 1626679977439
:by |rJG4IHzWf
|r $ {} (:text |2) (:type :leaf) (:at 1626679977439) (:by |rJG4IHzWf)
:type :expr
:at 1626679977439
:by |rJG4IHzWf
:type :expr
:at 1626679977439
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |flat-map-structure?) (:type :leaf) (:at 1626679977439) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626680819831) (:by |rJG4IHzWf)
:type :expr
:at 1626679977439
:by |rJG4IHzWf
:type :expr
:at 1626679977439
:by |rJG4IHzWf
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626681873992) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626680733829) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |params) (:type :leaf) (:at 1626680734927) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626680739794) (:by |rJG4IHzWf)
:type :expr
:at 1626680734202
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626680744031) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626680746069) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626680749564) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626680750922) (:by |rJG4IHzWf)
:type :expr
:at 1626680741400
:by |rJG4IHzWf
|T $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1626679977439) (:by |rJG4IHzWf)
|b $ {} (:text |params) (:type :leaf) (:at 1626680763180) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |.section-by) (:type :leaf) (:at 1626679977439) (:by |rJG4IHzWf)
|r $ {} (:text |2) (:type :leaf) (:at 1626679977439) (:by |rJG4IHzWf)
:type :expr
:at 1626679977439
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |pairs-map) (:type :leaf) (:at 1626680770774) (:by |rJG4IHzWf)
:type :expr
:at 1626680769330
:by |rJG4IHzWf
:type :expr
:at 1626679977439
:by |rJG4IHzWf
:type :expr
:at 1626680731979
:by |rJG4IHzWf
|j $ {} (:text |scope) (:type :leaf) (:at 1626681878189) (:by |rJG4IHzWf)
:type :expr
:at 1626681872858
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |raise) (:type :leaf) (:at 1626679986866) (:by |rJG4IHzWf)
|j $ {} (:text "|\"unknown structure for &置") (:type :leaf) (:at 1626680004859) (:by |rJG4IHzWf)
:type :expr
:at 1626679987895
:by |rJG4IHzWf
:type :expr
:at 1626679977439
:by |rJG4IHzWf
:type :expr
:at 1626679975799
:by |rJG4IHzWf
|flat-map-structure? $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577844662953) (:by |rJG4IHzWf) (:id |tRWZoqAHh)
|j $ {} (:text |flat-map-structure?) (:type :leaf) (:at 1577844662953) (:by |rJG4IHzWf) (:id |IPa2jteUV)
|r $ {}
:data $ {}
|T $ {} (:text |xs) (:type :leaf) (:at 1577844662953) (:by |rJG4IHzWf) (:id |wBzi92R2x)
:type :expr
:at 1577844662953
:by |rJG4IHzWf
:id |NvxhOc683
|v $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1626547095909) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |size) (:type :leaf) (:at 1626547097308) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1626547100564) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626547203399) (:by |rJG4IHzWf)
:type :expr
:at 1626547098728
:by |rJG4IHzWf
:type :expr
:at 1626547096285
:by |rJG4IHzWf
:type :expr
:at 1626547096133
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |if) (:type :leaf) (:at 1626547108945) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1626547112636) (:by |rJG4IHzWf)
|j $ {} (:text |0) (:type :leaf) (:at 1626547117782) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |.rem) (:type :leaf) (:at 1626547113968) (:by |rJG4IHzWf)
|j $ {} (:text |size) (:type :leaf) (:at 1626547115164) (:by |rJG4IHzWf)
|r $ {} (:text |2) (:type :leaf) (:at 1626547116030) (:by |rJG4IHzWf)
:type :expr
:at 1626547113306
:by |rJG4IHzWf
:type :expr
:at 1626547109180
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1626547124344) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |n) (:type :leaf) (:at 1626547126993) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |bit-shr) (:type :leaf) (:at 1626547147418) (:by |rJG4IHzWf)
|j $ {} (:text |size) (:type :leaf) (:at 1626547150285) (:by |rJG4IHzWf)
:type :expr
:at 1626547143898
:by |rJG4IHzWf
:type :expr
:at 1626547124891
:by |rJG4IHzWf
:type :expr
:at 1626547124735
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |->) (:type :leaf) (:at 1626547159479) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |range) (:type :leaf) (:at 1626547162092) (:by |rJG4IHzWf)
|j $ {} (:text |n) (:type :leaf) (:at 1626547163140) (:by |rJG4IHzWf)
:type :expr
:at 1626547161509
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |every?) (:type :leaf) (:at 1626547177320) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626547177923) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |i) (:type :leaf) (:at 1626547182510) (:by |rJG4IHzWf)
:type :expr
:at 1626547178728
:by |rJG4IHzWf
|r $ {}
:data $ {}
|D $ {} (:text |string?) (:type :leaf) (:at 1626547188854) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|D $ {} (:text |get) (:type :leaf) (:at 1626547190229) (:by |rJG4IHzWf)
|L $ {} (:text |xs) (:type :leaf) (:at 1626547192431) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |*) (:type :leaf) (:at 1626547184103) (:by |rJG4IHzWf)
|j $ {} (:text |2) (:type :leaf) (:at 1626547184695) (:by |rJG4IHzWf)
|r $ {} (:text |i) (:type :leaf) (:at 1626547185539) (:by |rJG4IHzWf)
:type :expr
:at 1626547183345
:by |rJG4IHzWf
:type :expr
:at 1626547189394
:by |rJG4IHzWf
:type :expr
:at 1626547186713
:by |rJG4IHzWf
:type :expr
:at 1626547177667
:by |rJG4IHzWf
:type :expr
:at 1626547173901
:by |rJG4IHzWf
:type :expr
:at 1626547157221
:by |rJG4IHzWf
:type :expr
:at 1626547123768
:by |rJG4IHzWf
|j $ {} (:text |false) (:type :leaf) (:at 1626547121184) (:by |rJG4IHzWf)
:type :expr
:at 1626547108410
:by |rJG4IHzWf
:type :expr
:at 1626547094109
:by |rJG4IHzWf
:type :expr
:at 1577844662953
:by |rJG4IHzWf
:id |pfuDy6Taj
|call-do $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577898278045) (:by |rJG4IHzWf) (:id |ITHFEBhjc)
|j $ {} (:text |call-do) (:type :leaf) (:at 1577898278045) (:by |rJG4IHzWf) (:id |upUx7dWxB)
|r $ {}
:data $ {}
|T $ {} (:text |body) (:type :leaf) (:at 1577898278045) (:by |rJG4IHzWf) (:id |I1qKNII45)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679431554) (:by |rJG4IHzWf) (:id |W7P01MI2h)
|r $ {} (:text |stdout) (:type :leaf) (:at 1577898278045) (:by |rJG4IHzWf) (:id |7eUcNXrXU)
:type :expr
:at 1577898278045
:by |rJG4IHzWf
:id |3YRsVq3rN
|v $ {}
:data $ {}
|T $ {} (:text |apply-args) (:type :leaf) (:at 1626679449360) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |nil) (:type :leaf) (:at 1626679456092) (:by |rJG4IHzWf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679460855) (:by |rJG4IHzWf)
|r $ {} (:text |body) (:type :leaf) (:at 1626679467939) (:by |rJG4IHzWf)
:type :expr
:at 1626679449623
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626679451394) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |ret) (:type :leaf) (:at 1626679452656) (:by |rJG4IHzWf)
|j $ {} (:text |s) (:type :leaf) (:at 1626679462463) (:by |rJG4IHzWf)
|r $ {} (:text |xs) (:type :leaf) (:at 1626679470798) (:by |rJG4IHzWf)
:type :expr
:at 1626679451675
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1626679472543) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1626679474292) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679474850) (:by |rJG4IHzWf)
:type :expr
:at 1626679472787
:by |rJG4IHzWf
|r $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626679480818) (:by |rJG4IHzWf)
|T $ {} (:text |ret) (:type :leaf) (:at 1626679477839) (:by |rJG4IHzWf)
|j $ {} (:text |s) (:type :leaf) (:at 1626679478328) (:by |rJG4IHzWf)
:type :expr
:at 1626679477415
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |let[]) (:type :leaf) (:at 1626679490603) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |v) (:type :leaf) (:at 1626679493227) (:by |rJG4IHzWf)
|j $ {} (:text |s2) (:type :leaf) (:at 1626679495395) (:by |rJG4IHzWf)
:type :expr
:at 1626679491066
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1626679505377) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626679511842) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679512282) (:by |rJG4IHzWf)
:type :expr
:at 1626679509169
:by |rJG4IHzWf
|r $ {} (:text |s) (:type :leaf) (:at 1626679514469) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626679527618) (:by |rJG4IHzWf)
:type :expr
:at 1626679496827
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |recur) (:type :leaf) (:at 1626679536759) (:by |rJG4IHzWf)
|j $ {} (:text |v) (:type :leaf) (:at 1626679538522) (:by |rJG4IHzWf)
|r $ {} (:text |s2) (:type :leaf) (:at 1626679540315) (:by |rJG4IHzWf)
|v $ {}
:data $ {}
|T $ {} (:text |rest) (:type :leaf) (:at 1626679542196) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679545074) (:by |rJG4IHzWf)
:type :expr
:at 1626679541586
:by |rJG4IHzWf
:type :expr
:at 1626679529624
:by |rJG4IHzWf
:type :expr
:at 1626679481462
:by |rJG4IHzWf
:type :expr
:at 1626679471399
:by |rJG4IHzWf
:type :expr
:at 1626679451064
:by |rJG4IHzWf
:type :expr
:at 1626679444060
:by |rJG4IHzWf
:type :expr
:at 1577898278045
:by |rJG4IHzWf
:id |8-13K3Ero
|call-fn $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577893030592) (:by |rJG4IHzWf) (:id |HlMlJnaZ0)
|j $ {} (:text |call-fn) (:type :leaf) (:at 1577893030592) (:by |rJG4IHzWf) (:id |LJlf3-8kx)
|r $ {}
:data $ {}
|T $ {} (:text |body) (:type :leaf) (:at 1577893030592) (:by |rJG4IHzWf) (:id |IbYXJXLop)
|j $ {} (:text |parent-scope) (:type :leaf) (:at 1626547961469) (:by |rJG4IHzWf) (:id |Yh30920O8)
|r $ {} (:text |stdout) (:type :leaf) (:at 1577893030592) (:by |rJG4IHzWf) (:id |S8zPGz8M8)
:type :expr
:at 1577893030592
:by |rJG4IHzWf
:id |RGXZqdPn_
|v $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |IXdzc75xt)
|j $ {}
:data $ {}
|j $ {}
:data $ {}
|T $ {} (:text |f-params) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |_hYqghk3a8)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |8iIJoS7of8)
|j $ {} (:text |body) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |qMY7msxXLN)
|r $ {} (:text |0) (:type :leaf) (:at 1578242220628) (:by |rJG4IHzWf) (:id |8XpTJawuE3)
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |BUz4vGVJ7H
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |zmn9n6pMId
|r $ {}
:data $ {}
|T $ {} (:text |f-body) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |1HcVq1wXfe)
|j $ {}
:data $ {}
|T $ {} (:text |.slice) (:type :leaf) (:at 1626545420562) (:by |rJG4IHzWf) (:id |IXN91sNTMz)
|j $ {} (:text |body) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |9YvEOJ9GLT)
|r $ {} (:text |1) (:type :leaf) (:at 1578242222154) (:by |rJG4IHzWf) (:id |E204J8S7OS)
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |szsekbFIj_
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |57mk9LTIEa
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |jPlai4YYx
|v $ {}
:data $ {}
|T $ {} (:text |when-not) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |YPKY54RBRd)
|j $ {}
:data $ {}
|T $ {} (:text |every?) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |JzmvFcogG2)
|r $ {} (:text |f-params) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |tFm-BH8W9P)
|v $ {} (:text |string?) (:type :leaf) (:at 1626545510088) (:by |rJG4IHzWf)
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |LYjpDARNhe
|r $ {}
:data $ {}
|T $ {} (:text |raise) (:type :leaf) (:at 1626678723270) (:by |rJG4IHzWf) (:id |fHqE7raJuC)
|j $ {} (:text "|\"未知") (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |o3n-RPpByZ)
|r $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |1f3OICR6tb)
|j $ {} (:text |f-params) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |v9O5w5pDsB)
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |VM5A6ESnyt
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |Zytt9Hr52C
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |Y1_yHfgT5g
|x $ {}
:data $ {}
|T $ {} (:text |when) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |_8MJk1a5Qf)
|j $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |D_J5n1gVhK)
|j $ {} (:text |f-body) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |I75sVGyo6t)
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |sQnGMohRVn
|r $ {}
:data $ {}
|T $ {} (:text |raise) (:type :leaf) (:at 1626678725041) (:by |rJG4IHzWf) (:id |1S9ft129TY)
|j $ {} (:text "|\"未有函数体") (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |wNlZND0Fa1)
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |S2eoAGGEJJ
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |OyDvyRolsS
|y $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626678739487) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |iEa63m4a52)
|j $ {}
:data $ {}
|T $ {} (:text |&) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |OUcyKGyTo1)
|j $ {} (:text |ys) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |qiDs_GU2Cr)
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |wNklsc2IPQ
|n $ {}
:data $ {}
|T $ {} (:text |when-not) (:type :leaf) (:at 1626547670554) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1626547670554) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1626547670554) (:by |rJG4IHzWf)
|j $ {} (:text |ys) (:type :leaf) (:at 1626547670554) (:by |rJG4IHzWf)
:type :expr
:at 1626547670554
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1626547670554) (:by |rJG4IHzWf)
|j $ {} (:text |f-params) (:type :leaf) (:at 1626547670554) (:by |rJG4IHzWf)
:type :expr
:at 1626547670554
:by |rJG4IHzWf
:type :expr
:at 1626547670554
:by |rJG4IHzWf
|r $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626678755653) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626678753473) (:by |rJG4IHzWf)
|j $ {} (:text "|\"长度未相符") (:type :leaf) (:at 1626547670554) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1626547670554) (:by |rJG4IHzWf)
|j $ {} (:text |ys) (:type :leaf) (:at 1626547670554) (:by |rJG4IHzWf)
:type :expr
:at 1626547670554
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1626547670554) (:by |rJG4IHzWf)
|j $ {} (:text |f-params) (:type :leaf) (:at 1626547670554) (:by |rJG4IHzWf)
:type :expr
:at 1626547670554
:by |rJG4IHzWf
:type :expr
:at 1626547670554
:by |rJG4IHzWf
:type :expr
:at 1626678754632
:by |rJG4IHzWf
:type :expr
:at 1626547670554
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1578242195412) (:by |rJG4IHzWf) (:id |moIC1hSC-u)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |scope) (:type :leaf) (:at 1626547937278) (:by |rJG4IHzWf) (:id |9EbbyUglEJ)
|j $ {}
:data $ {}
|T $ {} (:text |apply-args) (:type :leaf) (:at 1626547970456) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |parent-scope) (:type :leaf) (:at 1626547971245) (:by |rJG4IHzWf)
|j $ {} (:text |f-params) (:type :leaf) (:at 1626547979044) (:by |rJG4IHzWf)
|r $ {} (:text |0) (:type :leaf) (:at 1626548022125) (:by |rJG4IHzWf)
:type :expr
:at 1626547970927
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626547983877) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |s) (:type :leaf) (:at 1626547985625) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626547988189) (:by |rJG4IHzWf)
|r $ {} (:text |idx) (:type :leaf) (:at 1626548025646) (:by |rJG4IHzWf)
:type :expr
:at 1626547984192
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1626547991980) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1626547995374) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626547996244) (:by |rJG4IHzWf)
:type :expr
:at 1626547992656
:by |rJG4IHzWf
|r $ {} (:text |s) (:type :leaf) (:at 1626547997502) (:by |rJG4IHzWf)
|v $ {}
:data $ {}
|D $ {} (:text |recur) (:type :leaf) (:at 1626548062500) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1626548006528) (:by |rJG4IHzWf)
|j $ {} (:text |s) (:type :leaf) (:at 1626548008064) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626683505605) (:by |rJG4IHzWf)
|b $ {} (:text |params) (:type :leaf) (:at 1626548036932) (:by |rJG4IHzWf)
:type :expr
:at 1626548029617
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626548053886) (:by |rJG4IHzWf)
|j $ {} (:text |ys) (:type :leaf) (:at 1626548055013) (:by |rJG4IHzWf)
|r $ {} (:text |idx) (:type :leaf) (:at 1626548055578) (:by |rJG4IHzWf)
:type :expr
:at 1626548053478
:by |rJG4IHzWf
:type :expr
:at 1626547998097
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |rest) (:type :leaf) (:at 1626548064356) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626683502545) (:by |rJG4IHzWf)
:type :expr
:at 1626548063447
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |inc) (:type :leaf) (:at 1626548068154) (:by |rJG4IHzWf)
|j $ {} (:text |idx) (:type :leaf) (:at 1626548070978) (:by |rJG4IHzWf)
:type :expr
:at 1626548067628
:by |rJG4IHzWf
:type :expr
:at 1626548061489
:by |rJG4IHzWf
:type :expr
:at 1626547991463
:by |rJG4IHzWf
:type :expr
:at 1626547982204
:by |rJG4IHzWf
:type :expr
:at 1626547968825
:by |rJG4IHzWf
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |aEc_rdfMEq
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |oSqep8MNnJ
|q $ {}
:data $ {}
|T $ {} (:text |apply-args) (:type :leaf) (:at 1626678947855) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |nil) (:type :leaf) (:at 1626678959563) (:by |rJG4IHzWf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626678961498) (:by |rJG4IHzWf)
|r $ {} (:text |f-body) (:type :leaf) (:at 1626678974718) (:by |rJG4IHzWf)
:type :expr
:at 1626678948226
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626678949352) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |ret) (:type :leaf) (:at 1626678952537) (:by |rJG4IHzWf)
|j $ {} (:text |s) (:type :leaf) (:at 1626678955766) (:by |rJG4IHzWf)
|r $ {} (:text |xs) (:type :leaf) (:at 1626678979307) (:by |rJG4IHzWf)
:type :expr
:at 1626678949698
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1626678981896) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1626678986621) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626678987137) (:by |rJG4IHzWf)
:type :expr
:at 1626678982095
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626678988612) (:by |rJG4IHzWf)
|j $ {} (:text |ret) (:type :leaf) (:at 1626678993600) (:by |rJG4IHzWf)
|r $ {} (:text |s) (:type :leaf) (:at 1626678991614) (:by |rJG4IHzWf)
:type :expr
:at 1626678988249
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |let[]) (:type :leaf) (:at 1626679005397) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |v) (:type :leaf) (:at 1626679000314) (:by |rJG4IHzWf)
|j $ {} (:text |s2) (:type :leaf) (:at 1626679001893) (:by |rJG4IHzWf)
:type :expr
:at 1626678999883
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1626679016243) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626679017754) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679019455) (:by |rJG4IHzWf)
:type :expr
:at 1626679017124
:by |rJG4IHzWf
|r $ {} (:text |s) (:type :leaf) (:at 1626679025582) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626679027740) (:by |rJG4IHzWf)
:type :expr
:at 1626679008334
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |recur) (:type :leaf) (:at 1626679038656) (:by |rJG4IHzWf)
|j $ {} (:text |v) (:type :leaf) (:at 1626679042688) (:by |rJG4IHzWf)
|r $ {} (:text |s2) (:type :leaf) (:at 1626679045818) (:by |rJG4IHzWf)
|v $ {}
:data $ {}
|T $ {} (:text |rest) (:type :leaf) (:at 1626679048693) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626696706567) (:by |rJG4IHzWf)
:type :expr
:at 1626679048060
:by |rJG4IHzWf
:type :expr
:at 1626679032447
:by |rJG4IHzWf
:type :expr
:at 1626678996254
:by |rJG4IHzWf
:type :expr
:at 1626678981347
:by |rJG4IHzWf
:type :expr
:at 1626678948985
:by |rJG4IHzWf
:type :expr
:at 1626678944506
:by |rJG4IHzWf
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |Vs47V-yyXX
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |x3GOy85zbq
|j $ {} (:text |parent-scope) (:type :leaf) (:at 1626678746200) (:by |rJG4IHzWf)
:type :expr
:at 1626678736479
:by |rJG4IHzWf
:type :expr
:at 1578242195412
:by |rJG4IHzWf
:id |JRtTQg2BC
:type :expr
:at 1577893030592
:by |rJG4IHzWf
:id |3vBv17X59
|call-if $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577898288899) (:by |rJG4IHzWf) (:id |3-LhUwrN_)
|j $ {} (:text |call-if) (:type :leaf) (:at 1577898288899) (:by |rJG4IHzWf) (:id |_RlNOVKtQ)
|r $ {}
:data $ {}
|T $ {} (:text |body) (:type :leaf) (:at 1577898288899) (:by |rJG4IHzWf) (:id |0cNUEHxaj)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679210353) (:by |rJG4IHzWf) (:id |1fara5UXf)
|r $ {} (:text |stdout) (:type :leaf) (:at 1577898288899) (:by |rJG4IHzWf) (:id |uKr53ysqc)
:type :expr
:at 1577898288899
:by |rJG4IHzWf
:id |iJYWVpHb1
|u $ {}
:data $ {}
|T $ {} (:text |assert) (:type :leaf) (:at 1578242944397) (:by |rJG4IHzWf) (:id |Y6cs3q2wleaf)
|b $ {} (:text "|\"\"若\"需传入\"条件\"及\"结果\"") (:type :leaf) (:at 1626679213247) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |>=) (:type :leaf) (:at 1578242951184) (:by |rJG4IHzWf) (:id |2vbvK8HSw)
|j $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1578242946728) (:by |rJG4IHzWf) (:id |o8cVwlgok)
|j $ {} (:text |body) (:type :leaf) (:at 1578242947246) (:by |rJG4IHzWf) (:id |yoFVh63Gc)
:type :expr
:at 1578242945831
:by |rJG4IHzWf
:id |7vpaZOJed
|r $ {} (:text |2) (:type :leaf) (:at 1578242949030) (:by |rJG4IHzWf) (:id |WM5PGBg2V)
:type :expr
:at 1578242944717
:by |rJG4IHzWf
:id |IqQD8L7un
:type :expr
:at 1578242941600
:by |rJG4IHzWf
:id |Y6cs3q2w
|x $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1578242929627) (:by |rJG4IHzWf) (:id |82CvRPteleaf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |condition) (:type :leaf) (:at 1578242934061) (:by |rJG4IHzWf) (:id |x5GeAsqVl)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1578244814987) (:by |rJG4IHzWf) (:id |KH_CMbzy)
|j $ {} (:text |body) (:type :leaf) (:at 1578242998335) (:by |rJG4IHzWf) (:id |EVGxfDR_j)
|r $ {} (:text |0) (:type :leaf) (:at 1578244816646) (:by |rJG4IHzWf) (:id |GPUJFvbt)
:type :expr
:at 1578242935756
:by |rJG4IHzWf
:id |ac4CzQji2
:type :expr
:at 1578242931193
:by |rJG4IHzWf
:id |OpIQZHpp
|j $ {}
:data $ {}
|T $ {} (:text |then-part) (:type :leaf) (:at 1578243004775) (:by |rJG4IHzWf) (:id |lrjsJBlN1leaf)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1578243007130) (:by |rJG4IHzWf) (:id |HYoAxvEY3)
|j $ {} (:text |body) (:type :leaf) (:at 1578243008121) (:by |rJG4IHzWf) (:id |On4iFZ5rJ)
|r $ {} (:text |1) (:type :leaf) (:at 1578243008659) (:by |rJG4IHzWf) (:id |sgCJ3nO9k)
:type :expr
:at 1578243005135
:by |rJG4IHzWf
:id |kvSLXiXx
:type :expr
:at 1578242999423
:by |rJG4IHzWf
:id |lrjsJBlN1
|r $ {}
:data $ {}
|T $ {} (:text |else-part) (:type :leaf) (:at 1578243012776) (:by |rJG4IHzWf) (:id |7cu_Q4KCVleaf)
|j $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1578243014860) (:by |rJG4IHzWf) (:id |MIO69-aS)
|j $ {}
:data $ {}
|T $ {} (:text |>=) (:type :leaf) (:at 1578243024526) (:by |rJG4IHzWf) (:id |h0njF1EfZ)
|j $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1578243017043) (:by |rJG4IHzWf) (:id |77Os8ANDr)
|j $ {} (:text |body) (:type :leaf) (:at 1578243018278) (:by |rJG4IHzWf) (:id |ztZHjpcLy)
:type :expr
:at 1578243017579
:by |rJG4IHzWf
:id |3ffFhs9Bw
|r $ {} (:text |3) (:type :leaf) (:at 1578243026201) (:by |rJG4IHzWf) (:id |88iSUF5Sl)
:type :expr
:at 1578243015735
:by |rJG4IHzWf
:id |NLAmEZli
|r $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1578243029404) (:by |rJG4IHzWf) (:id |26qXOETK)
|j $ {} (:text |body) (:type :leaf) (:at 1578243029920) (:by |rJG4IHzWf) (:id |YHzKDwhB8)
|r $ {} (:text |2) (:type :leaf) (:at 1578243030276) (:by |rJG4IHzWf) (:id |sUW3HKBV)
:type :expr
:at 1578243028898
:by |rJG4IHzWf
:id |vgxxoeH2
|v $ {} (:text |nil) (:type :leaf) (:at 1578243031992) (:by |rJG4IHzWf) (:id |43aywrRIp)
:type :expr
:at 1578243014548
:by |rJG4IHzWf
:id |YrA26zahf
:type :expr
:at 1578243009821
:by |rJG4IHzWf
:id |7cu_Q4KCV
:type :expr
:at 1578242930495
:by |rJG4IHzWf
:id |JjexURbz
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1578243040222) (:by |rJG4IHzWf) (:id |0QTjXoo7leaf)
|j $ {}
:data $ {}
|D $ {} (:text |first) (:type :leaf) (:at 1626679244460) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1578243050830) (:by |rJG4IHzWf) (:id |0il5yLOu9)
|j $ {} (:text |condition) (:type :leaf) (:at 1578243055677) (:by |rJG4IHzWf) (:id |V_S7zwWiC)
|r $ {} (:text |scope) (:type :leaf) (:at 1626679252917) (:by |rJG4IHzWf) (:id |ql4-CNYrw)
|v $ {} (:text |stdout) (:type :leaf) (:at 1578243050830) (:by |rJG4IHzWf) (:id |krBiZIWyw)
:type :expr
:at 1578243050830
:by |rJG4IHzWf
:id |k3sFYaY_4
:type :expr
:at 1626679242957
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1578243050830) (:by |rJG4IHzWf) (:id |0il5yLOu9)
|j $ {} (:text |then-part) (:type :leaf) (:at 1578243067466) (:by |rJG4IHzWf) (:id |V_S7zwWiC)
|r $ {} (:text |scope) (:type :leaf) (:at 1626679254227) (:by |rJG4IHzWf) (:id |ql4-CNYrw)
|v $ {} (:text |stdout) (:type :leaf) (:at 1578243050830) (:by |rJG4IHzWf) (:id |krBiZIWyw)
:type :expr
:at 1578243050830
:by |rJG4IHzWf
:id |VdYBdJ-nI
|v $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1578243069195) (:by |rJG4IHzWf) (:id |YUYT6X51leaf)
|j $ {}
:data $ {}
|T $ {} (:text |nil?) (:type :leaf) (:at 1578243073162) (:by |rJG4IHzWf) (:id |Xsa_wFGLR)
|j $ {} (:text |else-part) (:type :leaf) (:at 1578243074576) (:by |rJG4IHzWf) (:id |VLyYNPJ0V)
:type :expr
:at 1578243069500
:by |rJG4IHzWf
:id |JA2wj1V-4
|r $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626679248447) (:by |rJG4IHzWf)
|T $ {} (:text |nil) (:type :leaf) (:at 1578243076264) (:by |rJG4IHzWf) (:id |TFK3HReTN)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679250059) (:by |rJG4IHzWf)
:type :expr
:at 1626679247808
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1578243091893) (:by |rJG4IHzWf) (:id |lzky63sCy)
|j $ {} (:text |else-part) (:type :leaf) (:at 1578243093628) (:by |rJG4IHzWf) (:id |cttpQSCOH)
|r $ {} (:text |scope) (:type :leaf) (:at 1626679258952) (:by |rJG4IHzWf) (:id |jvij7suyl)
|v $ {} (:text |stdout) (:type :leaf) (:at 1578243091893) (:by |rJG4IHzWf) (:id |yi1JxpfZO)
:type :expr
:at 1578243091893
:by |rJG4IHzWf
:id |GLwzCDb8w
:type :expr
:at 1578243068804
:by |rJG4IHzWf
:id |YUYT6X51
:type :expr
:at 1578243033849
:by |rJG4IHzWf
:id |0QTjXoo7
:type :expr
:at 1578242927381
:by |rJG4IHzWf
:id |82CvRPte
:type :expr
:at 1577898288899
:by |rJG4IHzWf
:id |r_tbgCtYG
|extract-params $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1626653818008) (:by |rJG4IHzWf)
|j $ {} (:text |extract-params) (:type :leaf) (:at 1626653816164) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |xs) (:type :leaf) (:at 1626653830740) (:by |rJG4IHzWf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626653824880) (:by |rJG4IHzWf)
|r $ {} (:text |stdout) (:type :leaf) (:at 1626677066807) (:by |rJG4IHzWf)
:type :expr
:at 1626653816164
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |apply-args) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
:type :expr
:at 1626653826371
:by |rJG4IHzWf
|v $ {} (:text |xs) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
:type :expr
:at 1626653826371
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |acc) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|v $ {} (:text |params) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
:type :expr
:at 1626653826371
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
:type :expr
:at 1626653826371
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|r $ {} (:text |acc) (:type :leaf) (:at 1626653838864) (:by |rJG4IHzWf)
|x $ {} (:text |scope) (:type :leaf) (:at 1626653840389) (:by |rJG4IHzWf)
:type :expr
:at 1626653826371
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |let-sugar) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |p0) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|D $ {} (:text |first) (:type :leaf) (:at 1626677092442) (:by |rJG4IHzWf)
|T $ {} (:text |params) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
:type :expr
:at 1626653826371
:by |rJG4IHzWf
:type :expr
:at 1626653826371
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|r $ {} (:text |ret) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|x $ {} (:text |new-scope) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
:type :expr
:at 1626653826371
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|j $ {} (:text |p0) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626677084690) (:by |rJG4IHzWf)
:type :expr
:at 1626653826371
:by |rJG4IHzWf
:type :expr
:at 1626653826371
:by |rJG4IHzWf
:type :expr
:at 1626653826371
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |recur) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |conj) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|j $ {} (:text |acc) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|r $ {} (:text |ret) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
:type :expr
:at 1626653826371
:by |rJG4IHzWf
|x $ {}
:data $ {}
|T $ {} (:text |rest) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626653826371) (:by |rJG4IHzWf)
:type :expr
:at 1626653826371
:by |rJG4IHzWf
:type :expr
:at 1626653826371
:by |rJG4IHzWf
:type :expr
:at 1626653826371
:by |rJG4IHzWf
:type :expr
:at 1626653826371
:by |rJG4IHzWf
:type :expr
:at 1626653826371
:by |rJG4IHzWf
:type :expr
:at 1626653826371
:by |rJG4IHzWf
:type :expr
:at 1626653816164
:by |rJG4IHzWf
|call-multiply $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577878835841) (:by |rJG4IHzWf) (:id |7YhREAhcb)
|j $ {} (:text |call-multiply) (:type :leaf) (:at 1577878835841) (:by |rJG4IHzWf) (:id |LHZ-_inTd)
|r $ {}
:data $ {}
|T $ {} (:text |xs) (:type :leaf) (:at 1577878838240) (:by |rJG4IHzWf) (:id |MFA3fQbhj)
|j $ {} (:text |scope) (:type :leaf) (:at 1626678443040) (:by |rJG4IHzWf) (:id |8EqWxRfqG)
|r $ {} (:text |stdout) (:type :leaf) (:at 1577878835841) (:by |rJG4IHzWf) (:id |HbA0EWWKn)
:type :expr
:at 1577878835841
:by |rJG4IHzWf
:id |WaedyvQzS
|t $ {}
:data $ {}
|T $ {} (:text |let[]) (:type :leaf) (:at 1626678024068) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |params) (:type :leaf) (:at 1626678024068) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678024068) (:by |rJG4IHzWf)
:type :expr
:at 1626678024068
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626678024068) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626678024068) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626678024068) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626678024068) (:by |rJG4IHzWf)
:type :expr
:at 1626678024068
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626678024068) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |*) (:type :leaf) (:at 1626678028936) (:by |rJG4IHzWf)
|j $ {} (:text |&) (:type :leaf) (:at 1626678024068) (:by |rJG4IHzWf)
|r $ {} (:text |params) (:type :leaf) (:at 1626678024068) (:by |rJG4IHzWf)
:type :expr
:at 1626678024068
:by |rJG4IHzWf
|r $ {} (:text |new-scope) (:type :leaf) (:at 1626678024068) (:by |rJG4IHzWf)
:type :expr
:at 1626678024068
:by |rJG4IHzWf
:type :expr
:at 1626678024068
:by |rJG4IHzWf
:type :expr
:at 1577878835841
:by |rJG4IHzWf
:id |0RUmnYN-5
|*tmp-scope $ {}
:data $ {}
|T $ {} (:text |defatom) (:type :leaf) (:at 1626545163038) (:by |rJG4IHzWf)
|j $ {} (:text |*tmp-scope) (:type :leaf) (:at 1626543889486) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1626543891974) (:by |rJG4IHzWf)
:type :expr
:at 1626543889486
:by |rJG4IHzWf
:type :expr
:at 1626543889486
:by |rJG4IHzWf
|number-pattern $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1577725682186) (:by |rJG4IHzWf) (:id |BEJ11Nhyb)
|j $ {} (:text |number-pattern) (:type :leaf) (:at 1577725682186) (:by |rJG4IHzWf) (:id |8J0t9xQOC)
|r $ {}
:data $ {}
|D $ {} (:text |new) (:type :leaf) (:at 1626545645718) (:by |rJG4IHzWf)
|L $ {} (:text |js/RegExp) (:type :leaf) (:at 1626545649918) (:by |rJG4IHzWf)
|T $ {} (:text "|\"[一二两三四五六七八九零十百千万亿负点]+") (:type :leaf) (:at 1626545642223) (:by |rJG4IHzWf) (:id |49bwDDS0)
:type :expr
:at 1626545642704
:by |rJG4IHzWf
:type :expr
:at 1577725682186
:by |rJG4IHzWf
:id |6XgihQ6vC
|call-define $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577726007448) (:by |rJG4IHzWf) (:id |kj5WcZMLo)
|j $ {} (:text |call-define) (:type :leaf) (:at 1577726004534) (:by |rJG4IHzWf) (:id |UQs3Nkc2h)
|r $ {}
:data $ {}
|T $ {} (:text |var-name) (:type :leaf) (:at 1577726011456) (:by |rJG4IHzWf) (:id |n5Arys9O)
|j $ {} (:text |value-name) (:type :leaf) (:at 1577726016640) (:by |rJG4IHzWf) (:id |hzcgtqca8)
|r $ {} (:text |scope) (:type :leaf) (:at 1626676221222) (:by |rJG4IHzWf) (:id |zSrex3TYb)
|v $ {} (:text |stdout) (:type :leaf) (:at 1577867912271) (:by |rJG4IHzWf) (:id |mJ6fv3hV)
:type :expr
:at 1577726004534
:by |rJG4IHzWf
:id |mj1LVELlM
|v $ {}
:data $ {}
|D $ {} (:text |cond) (:type :leaf) (:at 1577726097814) (:by |rJG4IHzWf) (:id |Wpfgk6s05)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |nil?) (:type :leaf) (:at 1577726106821) (:by |rJG4IHzWf) (:id |2gWIAHxL)
|j $ {} (:text |var-name) (:type :leaf) (:at 1577726170634) (:by |rJG4IHzWf) (:id |Zmfhvs6io)
:type :expr
:at 1577726105386
:by |rJG4IHzWf
:id |qtcHeOUUE
|j $ {}
:data $ {}
|T $ {} (:text |raise) (:type :leaf) (:at 1626676259222) (:by |rJG4IHzWf) (:id |ONNL48z13leaf)
|j $ {} (:text "|\"未知名也") (:type :leaf) (:at 1577726127439) (:by |rJG4IHzWf) (:id |-nj0WaG90)
:type :expr
:at 1577726108754
:by |rJG4IHzWf
:id |ONNL48z13
:type :expr
:at 1577726098382
:by |rJG4IHzWf
:id |L6eNZsogM
|P $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |nil?) (:type :leaf) (:at 1577726131694) (:by |rJG4IHzWf) (:id |o7HUEBjOHleaf)
|j $ {} (:text |value-name) (:type :leaf) (:at 1577726133670) (:by |rJG4IHzWf) (:id |POVTLNDsO)
:type :expr
:at 1577726130813
:by |rJG4IHzWf
:id |uTYRANT1
|j $ {}
:data $ {}
|T $ {} (:text |raise) (:type :leaf) (:at 1626676265307) (:by |rJG4IHzWf) (:id |0CV1xwZqfleaf)
|j $ {} (:text "|\"未知实也") (:type :leaf) (:at 1577726149242) (:by |rJG4IHzWf) (:id |EMxZO2wT)
:type :expr
:at 1577726134695
:by |rJG4IHzWf
:id |0CV1xwZqf
:type :expr
:at 1577726129809
:by |rJG4IHzWf
:id |o7HUEBjOH
|T $ {}
:data $ {}
|D $ {} (:text |true) (:type :leaf) (:at 1626632569937) (:by |rJG4IHzWf) (:id |ZGPP62RD)
|T $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626677763815) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |v) (:type :leaf) (:at 1626677764779) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626677768807) (:by |rJG4IHzWf)
:type :expr
:at 1626677764146
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1626677772027) (:by |rJG4IHzWf)
|j $ {} (:text |value-name) (:type :leaf) (:at 1626677772027) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626677772027) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626677772027) (:by |rJG4IHzWf)
:type :expr
:at 1626677772027
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626677775502) (:by |rJG4IHzWf)
|L $ {} (:text |v) (:type :leaf) (:at 1626677780741) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|r $ {} (:text |assoc) (:type :leaf) (:at 1577726049042) (:by |rJG4IHzWf) (:id |YMsNogof)
|s $ {} (:text |scope) (:type :leaf) (:at 1626677750840) (:by |rJG4IHzWf)
|t $ {} (:text |var-name) (:type :leaf) (:at 1577726064109) (:by |rJG4IHzWf) (:id |QLAtbzwX)
|w $ {} (:text |v) (:type :leaf) (:at 1626677777814) (:by |rJG4IHzWf)
:type :expr
:at 1577726042935
:by |rJG4IHzWf
:id |FmonAPv8T
:type :expr
:at 1626677774854
:by |rJG4IHzWf
:type :expr
:at 1626677761618
:by |rJG4IHzWf
:type :expr
:at 1577726099947
:by |rJG4IHzWf
:id |N9G15wM6h
:type :expr
:at 1577726096319
:by |rJG4IHzWf
:id |7kEh35EH
:type :expr
:at 1577726004534
:by |rJG4IHzWf
:id |BzZDPUsFX
|call-divide $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577879366739) (:by |rJG4IHzWf) (:id |qJXYdfLrY)
|j $ {} (:text |call-divide) (:type :leaf) (:at 1577879366739) (:by |rJG4IHzWf) (:id |nIbHLJGjo)
|r $ {}
:data $ {}
|T $ {} (:text |body) (:type :leaf) (:at 1577879366739) (:by |rJG4IHzWf) (:id |4JXLYX6qD)
|j $ {} (:text |scope) (:type :leaf) (:at 1626678367032) (:by |rJG4IHzWf) (:id |LB--z6g5z)
|r $ {} (:text |stdout) (:type :leaf) (:at 1577879366739) (:by |rJG4IHzWf) (:id |BAAm2pQHu)
:type :expr
:at 1577879366739
:by |rJG4IHzWf
:id |D1ztb6LO9
|v $ {}
:data $ {}
|T $ {} (:text |cond) (:type :leaf) (:at 1577879369247) (:by |rJG4IHzWf) (:id |a4v_ay6Bn)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1577879369247) (:by |rJG4IHzWf) (:id |xBmWzQxBj)
|j $ {} (:text |body) (:type :leaf) (:at 1577879369247) (:by |rJG4IHzWf) (:id |Mnhgj6-Bx)
:type :expr
:at 1577879369247
:by |rJG4IHzWf
:id |_1ceNqpuZ
|j $ {}
:data $ {}
|5 $ {} (:text |[]) (:type :leaf) (:at 1626678365300) (:by |rJG4IHzWf)
|T $ {} (:text |1) (:type :leaf) (:at 1577879401737) (:by |rJG4IHzWf) (:id |OTd7oJpbf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626678371850) (:by |rJG4IHzWf)
:type :expr
:at 1626678362083
:by |rJG4IHzWf
:type :expr
:at 1577879369247
:by |rJG4IHzWf
:id |2w5gNyeBB
|r $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1577879369247) (:by |rJG4IHzWf) (:id |F8-20MOws)
|j $ {} (:text |1) (:type :leaf) (:at 1577879369247) (:by |rJG4IHzWf) (:id |ynKXnsBfh)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1577879369247) (:by |rJG4IHzWf) (:id |Y3YRlfFYo)
|j $ {} (:text |body) (:type :leaf) (:at 1577879369247) (:by |rJG4IHzWf) (:id |hkAbP8ry7)
:type :expr
:at 1577879369247
:by |rJG4IHzWf
:id |xm_raIuD8
:type :expr
:at 1577879369247
:by |rJG4IHzWf
:id |MGvZFe86S
|j $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626678380269) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |v) (:type :leaf) (:at 1626678384565) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678386812) (:by |rJG4IHzWf)
:type :expr
:at 1626678380725
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1626678393721) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626678393721) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626678393721) (:by |rJG4IHzWf)
:type :expr
:at 1626678393721
:by |rJG4IHzWf
|r $ {} (:text |scope) (:type :leaf) (:at 1626678399513) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626678393721) (:by |rJG4IHzWf)
:type :expr
:at 1626678393721
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626678401945) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|D $ {} (:text |/) (:type :leaf) (:at 1577879968340) (:by |rJG4IHzWf) (:id |vYPze08uo)
|L $ {} (:text |1) (:type :leaf) (:at 1577879968675) (:by |rJG4IHzWf) (:id |FcikfEpG7)
|f $ {} (:text |v) (:type :leaf) (:at 1626678404470) (:by |rJG4IHzWf)
:type :expr
:at 1577879966114
:by |rJG4IHzWf
:id |AEP6vBPk
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678408101) (:by |rJG4IHzWf)
:type :expr
:at 1626678401393
:by |rJG4IHzWf
:type :expr
:at 1626678377532
:by |rJG4IHzWf
:type :expr
:at 1577879369247
:by |rJG4IHzWf
:id |vhYEdlhP0
|v $ {}
:data $ {}
|T $ {} (:text |true) (:type :leaf) (:at 1626678410361) (:by |rJG4IHzWf) (:id |EQj77pjQuU)
|j $ {}
:data $ {}
|T $ {} (:text |let[]) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |params) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
:type :expr
:at 1626678422495
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
:type :expr
:at 1626678422495
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |x0) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
:type :expr
:at 1626678422495
:by |rJG4IHzWf
:type :expr
:at 1626678422495
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |delta) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |+) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|j $ {} (:text |&) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |rest) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
:type :expr
:at 1626678422495
:by |rJG4IHzWf
:type :expr
:at 1626678422495
:by |rJG4IHzWf
:type :expr
:at 1626678422495
:by |rJG4IHzWf
:type :expr
:at 1626678422495
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |&/) (:type :leaf) (:at 1626678426423) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
:type :expr
:at 1626678422495
:by |rJG4IHzWf
|r $ {} (:text |delta) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
:type :expr
:at 1626678422495
:by |rJG4IHzWf
|r $ {} (:text |new-scope) (:type :leaf) (:at 1626678422495) (:by |rJG4IHzWf)
:type :expr
:at 1626678422495
:by |rJG4IHzWf
:type :expr
:at 1626678422495
:by |rJG4IHzWf
:type :expr
:at 1626678422495
:by |rJG4IHzWf
:type :expr
:at 1577879369247
:by |rJG4IHzWf
:id |3KNgJ4-YwW
:type :expr
:at 1577879369247
:by |rJG4IHzWf
:id |i_ADYqIO5
:type :expr
:at 1577879366739
:by |rJG4IHzWf
:id |M9yl8DmzS
|call-filter $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1578328213401) (:by |rJG4IHzWf) (:id |2jp2CHOFt)
|j $ {} (:text |call-filter) (:type :leaf) (:at 1578328213401) (:by |rJG4IHzWf) (:id |_ebyXkI1j)
|r $ {}
:data $ {}
|T $ {} (:text |xs) (:type :leaf) (:at 1578328249421) (:by |rJG4IHzWf) (:id |WCIYkMIfI)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679862288) (:by |rJG4IHzWf) (:id |DQ6-HasNN)
|r $ {} (:text |stdout) (:type :leaf) (:at 1578328213401) (:by |rJG4IHzWf) (:id |7GPalRZwq)
:type :expr
:at 1578328213401
:by |rJG4IHzWf
:id |4Bl4FoMlT
|v $ {}
:data $ {}
|T $ {} (:text |assert) (:type :leaf) (:at 1578328220128) (:by |rJG4IHzWf) (:id |xdUmFuP9v)
|b $ {} (:text "|\"\"其\"需二参数") (:type :leaf) (:at 1626545335669) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578328220128) (:by |rJG4IHzWf) (:id |v6ZInAnK1)
|j $ {} (:text |2) (:type :leaf) (:at 1578328220128) (:by |rJG4IHzWf) (:id |mB-QQmsW-)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1578328220128) (:by |rJG4IHzWf) (:id |AUUVjEf08)
|j $ {} (:text |xs) (:type :leaf) (:at 1578328220128) (:by |rJG4IHzWf) (:id |7dd61DQAW)
:type :expr
:at 1578328220128
:by |rJG4IHzWf
:id |KEoacBUGn
:type :expr
:at 1578328220128
:by |rJG4IHzWf
:id |zt28uq3f_
:type :expr
:at 1578328220128
:by |rJG4IHzWf
:id |jYf-pcdkQ
|x $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626679841662) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |params) (:type :leaf) (:at 1626679843914) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679847794) (:by |rJG4IHzWf)
:type :expr
:at 1626679842449
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626679852471) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679854567) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626679856209) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626679857753) (:by |rJG4IHzWf)
:type :expr
:at 1626679848561
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626697769775) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |filter) (:type :leaf) (:at 1626697728260) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |nth) (:type :leaf) (:at 1626697728260) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626697728260) (:by |rJG4IHzWf)
|r $ {} (:text |0) (:type :leaf) (:at 1626697728260) (:by |rJG4IHzWf)
:type :expr
:at 1626697728260
:by |rJG4IHzWf
|r $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1626697922632) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1626697923371) (:by |rJG4IHzWf)
:type :expr
:at 1626697923123
:by |rJG4IHzWf
|f $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1626697984395) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |nth) (:type :leaf) (:at 1626697984890) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626697984890) (:by |rJG4IHzWf)
|r $ {} (:text |1) (:type :leaf) (:at 1626697984890) (:by |rJG4IHzWf)
:type :expr
:at 1626697984890
:by |rJG4IHzWf
|j $ {} (:text |x) (:type :leaf) (:at 1626697984890) (:by |rJG4IHzWf)
:type :expr
:at 1626697984890
:by |rJG4IHzWf
:type :expr
:at 1626697982720
:by |rJG4IHzWf
:type :expr
:at 1626697921922
:by |rJG4IHzWf
:type :expr
:at 1626697728260
:by |rJG4IHzWf
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626697774915) (:by |rJG4IHzWf)
:type :expr
:at 1626697768800
:by |rJG4IHzWf
:type :expr
:at 1626679837608
:by |rJG4IHzWf
:type :expr
:at 1578328213401
:by |rJG4IHzWf
:id |3xCXGXrNJ
|global-object $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1578327357267) (:by |rJG4IHzWf) (:id |a6s-AEhKt)
|j $ {} (:text |global-object) (:type :leaf) (:at 1578327357267) (:by |rJG4IHzWf) (:id |8nZ4QTfbP)
|r $ {}
:data $ {}
|T $ {} (:text |cond) (:type :leaf) (:at 1578327364102) (:by |rJG4IHzWf) (:id |jTiKPMqM)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |exists?) (:type :leaf) (:at 1578327411823) (:by |rJG4IHzWf) (:id |QppL5HvfK)
|j $ {} (:text |js/window) (:type :leaf) (:at 1578327372286) (:by |rJG4IHzWf) (:id |IhuqXB49)
:type :expr
:at 1578327364787
:by |rJG4IHzWf
:id |PIsqRhKfI
|j $ {} (:text |js/window) (:type :leaf) (:at 1578327375271) (:by |rJG4IHzWf) (:id |TPpTO_Ck)
:type :expr
:at 1578327364442
:by |rJG4IHzWf
:id |sgFxW9ylY
|r $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |exists?) (:type :leaf) (:at 1578327414245) (:by |rJG4IHzWf) (:id |QppL5HvfK)
|j $ {} (:text |js/global) (:type :leaf) (:at 1578327388727) (:by |rJG4IHzWf) (:id |IhuqXB49)
:type :expr
:at 1578327364787
:by |rJG4IHzWf
:id |PIsqRhKfI
|j $ {} (:text |js/global) (:type :leaf) (:at 1578327385465) (:by |rJG4IHzWf) (:id |TPpTO_Ck)
:type :expr
:at 1578327364442
:by |rJG4IHzWf
:id |BSUjXak-
|v $ {}
:data $ {}
|T $ {} (:text |:else) (:type :leaf) (:at 1578327392821) (:by |rJG4IHzWf) (:id |iO2CNtt7)
|j $ {} (:text |js/Object) (:type :leaf) (:at 1578327402554) (:by |rJG4IHzWf) (:id |yZLVCCNq)
:type :expr
:at 1578327392215
:by |rJG4IHzWf
:id |6L02SIzW
:type :expr
:at 1578327357267
:by |rJG4IHzWf
:id |ISFvDhpPj
:type :expr
:at 1578327357267
:by |rJG4IHzWf
:id |3yZ8jz33R
|call-larger $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1578244478397) (:by |rJG4IHzWf) (:id |8vwV3ut53)
|j $ {} (:text |call-larger) (:type :leaf) (:at 1578244478397) (:by |rJG4IHzWf) (:id |DAn4ThRJr)
|r $ {}
:data $ {}
|T $ {} (:text |xs) (:type :leaf) (:at 1578244525613) (:by |rJG4IHzWf) (:id |Fw_x1F-D-)
|j $ {} (:text |scope) (:type :leaf) (:at 1626679278752) (:by |rJG4IHzWf) (:id |hQuKlWpBZ)
|r $ {} (:text |stdout) (:type :leaf) (:at 1578244478397) (:by |rJG4IHzWf) (:id |C4Dbe8wvX)
:type :expr
:at 1578244478397
:by |rJG4IHzWf
:id |BatDAJnvY
|t $ {}
:data $ {}
|T $ {} (:text |assert) (:type :leaf) (:at 1578244484293) (:by |rJG4IHzWf) (:id |kG23QcZKP)
|b $ {} (:text "|\"\"多于\"需二参数") (:type :leaf) (:at 1626679274569) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578244484293) (:by |rJG4IHzWf) (:id |BqH8iX7_K)
|j $ {} (:text |2) (:type :leaf) (:at 1578244484293) (:by |rJG4IHzWf) (:id |qW14VMwq_)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1578244484293) (:by |rJG4IHzWf) (:id |0EMIIo25D)
|j $ {} (:text |xs) (:type :leaf) (:at 1578244484293) (:by |rJG4IHzWf) (:id |kioFphwNO)
:type :expr
:at 1578244484293
:by |rJG4IHzWf
:id |NCNvVTvrE
:type :expr
:at 1578244484293
:by |rJG4IHzWf
:id |JZTnFppRy
:type :expr
:at 1578244484293
:by |rJG4IHzWf
:id |Jvn0KsCZH
|v $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626679281825) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |params) (:type :leaf) (:at 1626679284894) (:by |rJG4IHzWf)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679287861) (:by |rJG4IHzWf)
:type :expr
:at 1626679282438
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626679292442) (:by |rJG4IHzWf)
|j $ {} (:text |xs) (:type :leaf) (:at 1626679293548) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626679297117) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626679298677) (:by |rJG4IHzWf)
:type :expr
:at 1626679289268
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626679354095) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |>) (:type :leaf) (:at 1578244493192) (:by |rJG4IHzWf) (:id |zxXiqgrGn)
|b $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626679347012) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626679347012) (:by |rJG4IHzWf)
|r $ {} (:text |0) (:type :leaf) (:at 1626679347012) (:by |rJG4IHzWf)
:type :expr
:at 1626679347012
:by |rJG4IHzWf
|f $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626679350822) (:by |rJG4IHzWf)
|j $ {} (:text |params) (:type :leaf) (:at 1626679350822) (:by |rJG4IHzWf)
|r $ {} (:text |1) (:type :leaf) (:at 1626679350822) (:by |rJG4IHzWf)
:type :expr
:at 1626679352465
:by |rJG4IHzWf
:type :expr
:at 1578244479673
:by |rJG4IHzWf
:id |qX0bR8tEn
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626679356877) (:by |rJG4IHzWf)
:type :expr
:at 1626679353579
:by |rJG4IHzWf
:type :expr
:at 1626679276151
:by |rJG4IHzWf
:type :expr
:at 1578244478397
:by |rJG4IHzWf
:id |YiOkYf8dT
|call-method $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1578328522147) (:by |rJG4IHzWf) (:id |_jDyY_CRo)
|j $ {} (:text |call-method) (:type :leaf) (:at 1578328522147) (:by |rJG4IHzWf) (:id |NfzFTzpuy)
|r $ {}
:data $ {}
|D $ {} (:text |head) (:type :leaf) (:at 1578328589603) (:by |rJG4IHzWf) (:id |djJENJEU)
|T $ {} (:text |body) (:type :leaf) (:at 1578328522147) (:by |rJG4IHzWf) (:id |kAuAU3BBf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626632509228) (:by |rJG4IHzWf) (:id |NADFZOZzO)
|r $ {} (:text |stdout) (:type :leaf) (:at 1626677027355) (:by |rJG4IHzWf)
:type :expr
:at 1578328522147
:by |rJG4IHzWf
:id |GJUTKjdfo
|t $ {}
:data $ {}
|D $ {} (:text |;) (:type :leaf) (:at 1585672326577) (:by |rJG4IHzWf) (:id |OAO22zCuf)
|T $ {} (:text |js/console.log) (:type :leaf) (:at 1578328829267) (:by |rJG4IHzWf) (:id |5zK7xVJR)
|j $ {} (:text |head) (:type :leaf) (:at 1578328812731) (:by |rJG4IHzWf) (:id |3D0TSQ4jq)
|r $ {} (:text |body) (:type :leaf) (:at 1578328813801) (:by |rJG4IHzWf) (:id |m6nKv-fj)
:type :expr
:at 1578328803142
:by |rJG4IHzWf
:id |DuY9qZR7
|v $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626654074293) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|j $ {} (:text |ret) (:type :leaf) (:at 1626654077156) (:by |rJG4IHzWf)
|v $ {} (:text |params) (:type :leaf) (:at 1626654080693) (:by |rJG4IHzWf)
:type :expr
:at 1626654074629
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626654086544) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626654091236) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626654093341) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626677028944) (:by |rJG4IHzWf)
:type :expr
:at 1626654083820
:by |rJG4IHzWf
|T $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1578328533884) (:by |rJG4IHzWf) (:id |TSdJvT1tleaf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |obj) (:type :leaf) (:at 1578328536161) (:by |rJG4IHzWf) (:id |ZmdJaElbW)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626654299219) (:by |rJG4IHzWf)
|j $ {} (:text |ret) (:type :leaf) (:at 1626654299219) (:by |rJG4IHzWf)
|r $ {} (:text |0) (:type :leaf) (:at 1626654299219) (:by |rJG4IHzWf)
:type :expr
:at 1626654299219
:by |rJG4IHzWf
:type :expr
:at 1578328535007
:by |rJG4IHzWf
:id |vbCJXfwTs
|j $ {}
:data $ {}
|T $ {} (:text |method) (:type :leaf) (:at 1578328574263) (:by |rJG4IHzWf) (:id |5QmEgyUOLleaf)
|j $ {}
:data $ {}
|T $ {} (:text |aget) (:type :leaf) (:at 1578328575513) (:by |rJG4IHzWf) (:id |URvZsj-E7)
|j $ {} (:text |obj) (:type :leaf) (:at 1578328577685) (:by |rJG4IHzWf) (:id |AwdlIVsWh)
|r $ {}
:data $ {}
|T $ {} (:text |.slice) (:type :leaf) (:at 1626545312744) (:by |rJG4IHzWf) (:id |tvX0jR3d)
|j $ {} (:text |head) (:type :leaf) (:at 1578328591628) (:by |rJG4IHzWf) (:id |rsaaoRqcG)
|r $ {} (:text |1) (:type :leaf) (:at 1578328592069) (:by |rJG4IHzWf) (:id |5fL4eR32n)
:type :expr
:at 1578328578515
:by |rJG4IHzWf
:id |0EqWbxjzC
:type :expr
:at 1578328574721
:by |rJG4IHzWf
:id |_J21vlaEw
:type :expr
:at 1578328571891
:by |rJG4IHzWf
:id |5QmEgyUOL
|r $ {}
:data $ {}
|T $ {} (:text |args) (:type :leaf) (:at 1578328597161) (:by |rJG4IHzWf) (:id |_1mlKmi-leaf)
|j $ {}
:data $ {}
|T $ {} (:text |.slice) (:type :leaf) (:at 1626545307422) (:by |rJG4IHzWf) (:id |YV9QvB910)
|j $ {} (:text |ret) (:type :leaf) (:at 1626654261414) (:by |rJG4IHzWf) (:id |hs-ioyEEA)
|r $ {} (:text |1) (:type :leaf) (:at 1578328605626) (:by |rJG4IHzWf) (:id |jYYBn_U7)
:type :expr
:at 1578328597807
:by |rJG4IHzWf
:id |IjYBhjlLM
:type :expr
:at 1578328596558
:by |rJG4IHzWf
:id |_1mlKmi-
:type :expr
:at 1578328534694
:by |rJG4IHzWf
:id |rVB1dAbK
|n $ {}
:data $ {}
|D $ {} (:text |;) (:type :leaf) (:at 1585672328716) (:by |rJG4IHzWf) (:id |DaX94KypOO)
|T $ {} (:text |js/console.log) (:type :leaf) (:at 1578328772793) (:by |rJG4IHzWf) (:id |rLpEC5HLleaf)
|b $ {} (:text |obj) (:type :leaf) (:at 1578328873882) (:by |rJG4IHzWf) (:id |XWAuknPZv)
|j $ {}
:data $ {}
|T $ {} (:text |.-call) (:type :leaf) (:at 1578328776100) (:by |rJG4IHzWf) (:id |vuMj3msN7)
|j $ {} (:text |method) (:type :leaf) (:at 1578328939652) (:by |rJG4IHzWf) (:id |_uJ5YnLUm)
:type :expr
:at 1578328776100
:by |rJG4IHzWf
:id |JGW9Z_9GD
:type :expr
:at 1578328765672
:by |rJG4IHzWf
:id |rLpEC5HL
|r $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626677050397) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |.!apply) (:type :leaf) (:at 1626545303427) (:by |rJG4IHzWf) (:id |WXOoLo2n3leaf)
|j $ {} (:text |method) (:type :leaf) (:at 1578329065059) (:by |rJG4IHzWf) (:id |B0fUYyZp)
|r $ {} (:text |obj) (:type :leaf) (:at 1578329084883) (:by |rJG4IHzWf) (:id |eKuRG-Ya)
|v $ {}
:data $ {}
|T $ {} (:text |to-js-data) (:type :leaf) (:at 1626545324326) (:by |rJG4IHzWf) (:id |XKiqfofyG)
|j $ {} (:text |args) (:type :leaf) (:at 1578329078730) (:by |rJG4IHzWf) (:id |MmB9bbPw)
:type :expr
:at 1578329072268
:by |rJG4IHzWf
:id |P-26s91_
:type :expr
:at 1578328708421
:by |rJG4IHzWf
:id |X59xOENW
|j $ {} (:text |scope) (:type :leaf) (:at 1626677052721) (:by |rJG4IHzWf)
:type :expr
:at 1626677047911
:by |rJG4IHzWf
:type :expr
:at 1578328533446
:by |rJG4IHzWf
:id |TSdJvT1t
:type :expr
:at 1626654066688
:by |rJG4IHzWf
:type :expr
:at 1578328522147
:by |rJG4IHzWf
:id |W1NaDXBt8
|resolve-literal $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577725550824) (:by |rJG4IHzWf) (:id |_CNCKsVPb)
|j $ {} (:text |resolve-literal) (:type :leaf) (:at 1577725550824) (:by |rJG4IHzWf) (:id |HBBRUf0RT)
|r $ {}
:data $ {}
|T $ {} (:text |token) (:type :leaf) (:at 1577725579587) (:by |rJG4IHzWf) (:id |YBq0UG_g2)
|j $ {} (:text |scope) (:type :leaf) (:at 1626632467314) (:by |rJG4IHzWf) (:id |n4YyR_ZMp)
|r $ {} (:text |stdout) (:type :leaf) (:at 1626676746107) (:by |rJG4IHzWf)
:type :expr
:at 1577725550824
:by |rJG4IHzWf
:id |5mdsOfH-_
|t $ {}
:data $ {}
|D $ {} (:text |;) (:type :leaf) (:at 1585673167606) (:by |rJG4IHzWf) (:id |6ESi8Qwa85)
|T $ {} (:text |println) (:type :leaf) (:at 1577726340443) (:by |rJG4IHzWf) (:id |bzGhwUK-leaf)
|j $ {} (:text "|\"reading literal") (:type :leaf) (:at 1577726344332) (:by |rJG4IHzWf) (:id |NWQ2_zBLb)
|r $ {} (:text |token) (:type :leaf) (:at 1577726345835) (:by |rJG4IHzWf) (:id |SPrZYEHkc)
|v $ {} (:text |scope) (:type :leaf) (:at 1626632468714) (:by |rJG4IHzWf) (:id |lCJwchKK)
:type :expr
:at 1577726339588
:by |rJG4IHzWf
:id |bzGhwUK-
|v $ {}
:data $ {}
|oT $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |.starts-with?) (:type :leaf) (:at 1626543942427) (:by |rJG4IHzWf) (:id |LyR65wA1oV)
|j $ {} (:text |token) (:type :leaf) (:at 1585673144549) (:by |rJG4IHzWf) (:id |wd6OuVMGc2)
|r $ {} (:text "|\"js/") (:type :leaf) (:at 1585673144549) (:by |rJG4IHzWf) (:id |4FJt2C9t9R)
:type :expr
:at 1585673144549
:by |rJG4IHzWf
:id |0nDxceHSIa
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626652436434) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |read-native-fn) (:type :leaf) (:at 1585673144549) (:by |rJG4IHzWf) (:id |WgSz-7Mh1S)
|j $ {} (:text |js/globalThis) (:type :leaf) (:at 1585673144549) (:by |rJG4IHzWf) (:id |Kg8E7W6dW2)
|r $ {}
:data $ {}
|T $ {} (:text |.split) (:type :leaf) (:at 1626543945909) (:by |rJG4IHzWf) (:id |unucix0-ta)
|j $ {}
:data $ {}
|T $ {} (:text |.slice) (:type :leaf) (:at 1626543949025) (:by |rJG4IHzWf) (:id |-pH2epI2RM)
|j $ {} (:text |token) (:type :leaf) (:at 1585673144549) (:by |rJG4IHzWf) (:id |i0n_d-p2ln)
|r $ {} (:text |3) (:type :leaf) (:at 1585673144549) (:by |rJG4IHzWf) (:id |RSKZUBcAEQ)
:type :expr
:at 1585673144549
:by |rJG4IHzWf
:id |l2nevQGxxg
|r $ {} (:text "|\".") (:type :leaf) (:at 1585673144549) (:by |rJG4IHzWf) (:id |YOXRT3-sngr)
:type :expr
:at 1585673144549
:by |rJG4IHzWf
:id |69jY1T901O
:type :expr
:at 1585673144549
:by |rJG4IHzWf
:id |_C7XcP4gRj
|r $ {} (:text |scope) (:type :leaf) (:at 1626652440617) (:by |rJG4IHzWf)
:type :expr
:at 1626652435880
:by |rJG4IHzWf
:type :expr
:at 1585673144549
:by |rJG4IHzWf
:id |UxVkCx2Rpl
|qT $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578242671625) (:by |rJG4IHzWf) (:id |_SSaA9hoIleaf)
|j $ {} (:text |token) (:type :leaf) (:at 1578242672783) (:by |rJG4IHzWf) (:id |HkodAAriT)
|r $ {} (:text "|\"空") (:type :leaf) (:at 1578242679295) (:by |rJG4IHzWf) (:id |O6eBywaSP)
:type :expr
:at 1578242671253
:by |rJG4IHzWf
:id |vxSrEGzL
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626652456138) (:by |rJG4IHzWf)
|j $ {} (:text |nil) (:type :leaf) (:at 1626652457800) (:by |rJG4IHzWf)
|v $ {} (:text |scope) (:type :leaf) (:at 1626652459736) (:by |rJG4IHzWf)
:type :expr
:at 1626652455391
:by |rJG4IHzWf
:type :expr
:at 1578242578052
:by |rJG4IHzWf
:id |_SSaA9hoI
|T $ {} (:text |cond) (:type :leaf) (:at 1577725590116) (:by |rJG4IHzWf) (:id |ImrocNiI)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1577725569952) (:by |rJG4IHzWf) (:id |0HmhAE2-G)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1577725581701) (:by |rJG4IHzWf) (:id |XB3wbocK)
|j $ {} (:text |token) (:type :leaf) (:at 1577725583670) (:by |rJG4IHzWf) (:id |3A-htPm55)
:type :expr
:at 1577725571680
:by |rJG4IHzWf
:id |R721_fVdm
|r $ {} (:text "|\"|") (:type :leaf) (:at 1577725585599) (:by |rJG4IHzWf) (:id |SV4Ku4jvw)
:type :expr
:at 1577725569176
:by |rJG4IHzWf
:id |JJcoXI3g
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626652421693) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |.slice) (:type :leaf) (:at 1626543957797) (:by |rJG4IHzWf) (:id |766PJUE-)
|j $ {} (:text |token) (:type :leaf) (:at 1577725597399) (:by |rJG4IHzWf) (:id |PX90VuJm)
|r $ {} (:text |1) (:type :leaf) (:at 1577725597917) (:by |rJG4IHzWf) (:id |gABZ-uPW5)
:type :expr
:at 1577725592231
:by |rJG4IHzWf
:id |bC7KS2Hz
|r $ {} (:text |scope) (:type :leaf) (:at 1626652425909) (:by |rJG4IHzWf)
:type :expr
:at 1626652420834
:by |rJG4IHzWf
:type :expr
:at 1577725590660
:by |rJG4IHzWf
:id |wMApIQlxT
|n $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1577725569952) (:by |rJG4IHzWf) (:id |0HmhAE2-G)
|j $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1577725581701) (:by |rJG4IHzWf) (:id |XB3wbocK)
|j $ {} (:text |token) (:type :leaf) (:at 1577725583670) (:by |rJG4IHzWf) (:id |3A-htPm55)
:type :expr
:at 1577725571680
:by |rJG4IHzWf
:id |R721_fVdm
|r $ {} (:text "|\":") (:type :leaf) (:at 1577895264449) (:by |rJG4IHzWf) (:id |SV4Ku4jvw)
:type :expr
:at 1577725569176
:by |rJG4IHzWf
:id |JJcoXI3g
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626652427917) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |.slice) (:type :leaf) (:at 1626543960173) (:by |rJG4IHzWf) (:id |766PJUE-)
|j $ {} (:text |token) (:type :leaf) (:at 1577725597399) (:by |rJG4IHzWf) (:id |PX90VuJm)
|r $ {} (:text |1) (:type :leaf) (:at 1577725597917) (:by |rJG4IHzWf) (:id |gABZ-uPW5)
:type :expr
:at 1577725592231
:by |rJG4IHzWf
:id |bC7KS2Hz
|r $ {} (:text |scope) (:type :leaf) (:at 1626652431199) (:by |rJG4IHzWf)
:type :expr
:at 1626652427428
:by |rJG4IHzWf
:type :expr
:at 1577725590660
:by |rJG4IHzWf
:id |PxjjIhFW1
|p $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578242557325) (:by |rJG4IHzWf) (:id |MTFoicipleaf)
|j $ {} (:text |token) (:type :leaf) (:at 1578242561765) (:by |rJG4IHzWf) (:id |46FEQXQ81)
|r $ {} (:text "|\"实") (:type :leaf) (:at 1578242565753) (:by |rJG4IHzWf) (:id |tk5pOHAiZ)
:type :expr
:at 1578242558239
:by |rJG4IHzWf
:id |nR6JVam6
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626652442719) (:by |rJG4IHzWf)
|T $ {} (:text |true) (:type :leaf) (:at 1578242569492) (:by |rJG4IHzWf) (:id |HxuW2F_6)
|r $ {} (:text |scope) (:type :leaf) (:at 1626652448485) (:by |rJG4IHzWf)
:type :expr
:at 1626652442086
:by |rJG4IHzWf
:type :expr
:at 1578242556375
:by |rJG4IHzWf
:id |MTFoicip
|q $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578242557325) (:by |rJG4IHzWf) (:id |MTFoicipleaf)
|j $ {} (:text |token) (:type :leaf) (:at 1578242561765) (:by |rJG4IHzWf) (:id |46FEQXQ81)
|r $ {} (:text "|\"虚") (:type :leaf) (:at 1578242573657) (:by |rJG4IHzWf) (:id |tk5pOHAiZ)
:type :expr
:at 1578242558239
:by |rJG4IHzWf
:id |nR6JVam6
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626652450041) (:by |rJG4IHzWf)
|T $ {} (:text |false) (:type :leaf) (:at 1578242575818) (:by |rJG4IHzWf) (:id |HxuW2F_6)
|r $ {} (:text |scope) (:type :leaf) (:at 1626652454195) (:by |rJG4IHzWf)
:type :expr
:at 1626652449458
:by |rJG4IHzWf
:type :expr
:at 1578242556375
:by |rJG4IHzWf
:id |V-sW3CZf
|r $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |.!test) (:type :leaf) (:at 1626652475384) (:by |rJG4IHzWf) (:id |0D7A2KAsFleaf)
|j $ {} (:text |number-pattern) (:type :leaf) (:at 1577725609065) (:by |rJG4IHzWf) (:id |16O-vVPr)
|r $ {} (:text |token) (:type :leaf) (:at 1577725611558) (:by |rJG4IHzWf) (:id |UXFTHjf6)
:type :expr
:at 1577725599581
:by |rJG4IHzWf
:id |E_P3zzk8
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626652478636) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |nzh/decodeS) (:type :leaf) (:at 1577725629424) (:by |rJG4IHzWf) (:id |FRT0eOpnPleaf)
|j $ {}
:data $ {}
|D $ {} (:text |.replace) (:type :leaf) (:at 1626543963654) (:by |rJG4IHzWf) (:id |zc-JJJmO)
|T $ {} (:text |token) (:type :leaf) (:at 1577725631737) (:by |rJG4IHzWf) (:id |sBzmK1N_)
|j $ {} (:text "|\"两") (:type :leaf) (:at 1578244687547) (:by |rJG4IHzWf) (:id |5KtSfk3r)
|r $ {} (:text "|\"二") (:type :leaf) (:at 1578244689212) (:by |rJG4IHzWf) (:id |cKtw2f_Ix)
:type :expr
:at 1578244677649
:by |rJG4IHzWf
:id |7lqwATdHJ
:type :expr
:at 1577725612830
:by |rJG4IHzWf
:id |FRT0eOpnP
|r $ {} (:text |scope) (:type :leaf) (:at 1626652482050) (:by |rJG4IHzWf)
:type :expr
:at 1626652476968
:by |rJG4IHzWf
:type :expr
:at 1577725598708
:by |rJG4IHzWf
:id |0D7A2KAsF
|t $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |contains?) (:type :leaf) (:at 1626632480881) (:by |rJG4IHzWf) (:id |BOJRAMHNqleaf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626632471186) (:by |rJG4IHzWf) (:id |JQREQXkJ)
|r $ {} (:text |token) (:type :leaf) (:at 1577726410508) (:by |rJG4IHzWf) (:id |veuP8gPh)
:type :expr
:at 1577726400300
:by |rJG4IHzWf
:id |-t9XcHmE
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626652484508) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1626632483517) (:by |rJG4IHzWf) (:id |3G2rO8-ZVleaf)
|j $ {} (:text |scope) (:type :leaf) (:at 1626632473309) (:by |rJG4IHzWf) (:id |HJfFtVuE0)
|r $ {} (:text |token) (:type :leaf) (:at 1577726419849) (:by |rJG4IHzWf) (:id |5wVsp4-r)
:type :expr
:at 1577726413969
:by |rJG4IHzWf
:id |3G2rO8-ZV
|r $ {} (:text |scope) (:type :leaf) (:at 1626652489257) (:by |rJG4IHzWf)
:type :expr
:at 1626652483965
:by |rJG4IHzWf
:type :expr
:at 1577726394834
:by |rJG4IHzWf
:id |BOJRAMHNq
|v $ {}
:data $ {}
|T $ {} (:text |true) (:type :leaf) (:at 1626543935919) (:by |rJG4IHzWf) (:id |1duOjk_8Jleaf)
|j $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626676995607) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1626652564101) (:by |rJG4IHzWf)
|j $ {} (:text "|\"未知几何也") (:type :leaf) (:at 1626652564101) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1626652564101) (:by |rJG4IHzWf)
|j $ {} (:text |token) (:type :leaf) (:at 1626652564101) (:by |rJG4IHzWf)
:type :expr
:at 1626652564101
:by |rJG4IHzWf
:type :expr
:at 1626652564101
:by |rJG4IHzWf
:type :expr
:at 1626652495250
:by |rJG4IHzWf
:type :expr
:at 1577725632933
:by |rJG4IHzWf
:id |1duOjk_8J
:type :expr
:at 1577725557639
:by |rJG4IHzWf
:id |06qvMqCb
:type :expr
:at 1577725550824
:by |rJG4IHzWf
:id |ueW8dd7b6
|call-native $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1585669937646) (:by |rJG4IHzWf) (:id |pXuC7sawYR)
|j $ {} (:text |call-native) (:type :leaf) (:at 1585669937646) (:by |rJG4IHzWf) (:id |B5atKvMAdN)
|r $ {}
:data $ {}
|T $ {} (:text |head) (:type :leaf) (:at 1585669937646) (:by |rJG4IHzWf) (:id |2hedbq8hHX)
|j $ {} (:text |body) (:type :leaf) (:at 1585669937646) (:by |rJG4IHzWf) (:id |qWyI07my8A)
|r $ {} (:text |scope) (:type :leaf) (:at 1626654607326) (:by |rJG4IHzWf) (:id |7A_4gOlPhv)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626677327766) (:by |rJG4IHzWf)
:type :expr
:at 1585669937646
:by |rJG4IHzWf
:id |a0pPujt4MR
|v $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626654651337) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|j $ {} (:text |params) (:type :leaf) (:at 1626654755730) (:by |rJG4IHzWf)
|v $ {} (:text |new-scope) (:type :leaf) (:at 1626654662476) (:by |rJG4IHzWf)
:type :expr
:at 1626654651788
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |extract-params) (:type :leaf) (:at 1626654667184) (:by |rJG4IHzWf)
|j $ {} (:text |body) (:type :leaf) (:at 1626654668756) (:by |rJG4IHzWf)
|r $ {} (:text |scope) (:type :leaf) (:at 1626654669596) (:by |rJG4IHzWf)
|v $ {} (:text |stdout) (:type :leaf) (:at 1626683772285) (:by |rJG4IHzWf)
:type :expr
:at 1626654663879
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1585669967530) (:by |rJG4IHzWf) (:id |giJViTPih)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |method) (:type :leaf) (:at 1585670014663) (:by |rJG4IHzWf) (:id |XRuC3kLqZe)
|j $ {}
:data $ {}
|D $ {} (:text |.slice) (:type :leaf) (:at 1626545290251) (:by |rJG4IHzWf) (:id |_Hqp6avwH)
|T $ {} (:text |head) (:type :leaf) (:at 1585669995132) (:by |rJG4IHzWf) (:id |v9KLhcjUh)
|j $ {} (:text |3) (:type :leaf) (:at 1585670001154) (:by |rJG4IHzWf) (:id |n-N18d7jFX)
:type :expr
:at 1585669995966
:by |rJG4IHzWf
:id |gPl80rfbD_
:type :expr
:at 1585669967885
:by |rJG4IHzWf
:id |hwZiPzHjF8
|j $ {}
:data $ {}
|T $ {} (:text |f) (:type :leaf) (:at 1585670023884) (:by |rJG4IHzWf) (:id |5NSBqIhCTleaf)
|j $ {}
:data $ {}
|T $ {} (:text |read-native-fn) (:type :leaf) (:at 1585670041555) (:by |rJG4IHzWf) (:id |qwzcerc_X)
|j $ {} (:text |js/globalThis) (:type :leaf) (:at 1585672022572) (:by |rJG4IHzWf) (:id |634ofG59q)
|r $ {}
:data $ {}
|T $ {} (:text |.split) (:type :leaf) (:at 1626545282692) (:by |rJG4IHzWf) (:id |9mzPQUyRmp)
|r $ {} (:text |method) (:type :leaf) (:at 1585670054031) (:by |rJG4IHzWf) (:id |ZbGEmDTGah)
|v $ {} (:text "|\".") (:type :leaf) (:at 1585670437476) (:by |rJG4IHzWf) (:id |vsNG9HT76)
:type :expr
:at 1585670043201
:by |rJG4IHzWf
:id |WqXvW2-vZ
:type :expr
:at 1585670024560
:by |rJG4IHzWf
:id |gDdCoTsJvx
:type :expr
:at 1585670017887
:by |rJG4IHzWf
:id |5NSBqIhCT
:type :expr
:at 1585669967746
:by |rJG4IHzWf
:id |HDyIdQAsnt
|T $ {}
:data $ {}
|D $ {} (:text |if) (:type :leaf) (:at 1585670314374) (:by |rJG4IHzWf) (:id |-mivLSkPHk)
|L $ {}
:data $ {}
|T $ {} (:text |fn?) (:type :leaf) (:at 1585670316706) (:by |rJG4IHzWf) (:id |7QUUQx_PDA)
|j $ {} (:text |f) (:type :leaf) (:at 1585670317279) (:by |rJG4IHzWf) (:id |aHlApwatR)
:type :expr
:at 1585670314803
:by |rJG4IHzWf
:id |X4XSWtvDmP
|T $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1585671073345) (:by |rJG4IHzWf) (:id |jw87fJUbP)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |args) (:type :leaf) (:at 1585671076870) (:by |rJG4IHzWf) (:id |DE9IonG4cj)
|j $ {}
:data $ {}
|T $ {} (:text |new) (:type :leaf) (:at 1626544736004) (:by |rJG4IHzWf) (:id |k-go0zzDw)
|j $ {} (:text |js/Array) (:type :leaf) (:at 1626544740571) (:by |rJG4IHzWf)
:type :expr
:at 1585671077267
:by |rJG4IHzWf
:id |m5fRtKxbqv
:type :expr
:at 1585671073981
:by |rJG4IHzWf
:id |KDw_jqceYi
:type :expr
:at 1585671073583
:by |rJG4IHzWf
:id |ri8l5kRQAm
|T $ {}
:data $ {}
|D $ {} (:text |&doseq) (:type :leaf) (:at 1626544744020) (:by |rJG4IHzWf) (:id |5X1OO-VgK)
|T $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1585671098991) (:by |rJG4IHzWf) (:id |mgbjnn5s1)
|j $ {} (:text |params) (:type :leaf) (:at 1626654705381) (:by |rJG4IHzWf) (:id |aUTQ-Aq7tY)
:type :expr
:at 1585671099767
:by |rJG4IHzWf
:id |YUQsvikwV8
|j $ {}
:data $ {}
|T $ {} (:text |.!push) (:type :leaf) (:at 1626544751582) (:by |rJG4IHzWf) (:id |EWnOLdqeUleaf)
|j $ {} (:text |args) (:type :leaf) (:at 1585671105415) (:by |rJG4IHzWf) (:id |4UgkBTFVmL)
|r $ {} (:text |x) (:type :leaf) (:at 1585671108996) (:by |rJG4IHzWf) (:id |w_6I3VYHOr)
:type :expr
:at 1585671102133
:by |rJG4IHzWf
:id |EWnOLdqeU
:type :expr
:at 1585671091793
:by |rJG4IHzWf
:id |u0pjTA9Jmk
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626677355044) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |.!apply) (:type :leaf) (:at 1626544753473) (:by |rJG4IHzWf) (:id |WCzHBtSS5leaf)
|j $ {} (:text |f) (:type :leaf) (:at 1585671119689) (:by |rJG4IHzWf) (:id |yoRgObprT)
|r $ {} (:text |nil) (:type :leaf) (:at 1585671120884) (:by |rJG4IHzWf) (:id |sMo7FZFd7m)
|v $ {} (:text |args) (:type :leaf) (:at 1585671123123) (:by |rJG4IHzWf) (:id |wdUyJbC3s)
:type :expr
:at 1585671113403
:by |rJG4IHzWf
:id |WCzHBtSS5
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626677357804) (:by |rJG4IHzWf)
:type :expr
:at 1626677353983
:by |rJG4IHzWf
:type :expr
:at 1585671071794
:by |rJG4IHzWf
:id |oKY2xidrMG
|j $ {}
:data $ {}
|D $ {} (:text |raise) (:type :leaf) (:at 1626677373886) (:by |rJG4IHzWf) (:id |XFcKG3bz6)
|L $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1585670356129) (:by |rJG4IHzWf) (:id |Asvo_NYqK0)
|j $ {} (:text "|\"不知其术: ") (:type :leaf) (:at 1585670379326) (:by |rJG4IHzWf) (:id |KZgG1YQspW)
|r $ {} (:text |head) (:type :leaf) (:at 1585670378200) (:by |rJG4IHzWf) (:id |pL9O6agbU)
|t $ {} (:text "|\" ") (:type :leaf) (:at 1585671505647) (:by |rJG4IHzWf) (:id |EYVuYDaSeJ)
|v $ {}
:data $ {}
|D $ {} (:text |pr-str) (:type :leaf) (:at 1585671498311) (:by |rJG4IHzWf) (:id |3IZawO4VB)
|T $ {} (:text |f) (:type :leaf) (:at 1585671487793) (:by |rJG4IHzWf) (:id |b-g7F71KB)
:type :expr
:at 1585671496511
:by |rJG4IHzWf
:id |9mWQxaYsh
:type :expr
:at 1585670355266
:by |rJG4IHzWf
:id |aVj3EY9d_
:type :expr
:at 1585670318619
:by |rJG4IHzWf
:id |xjnw9tkItj
:type :expr
:at 1585670310106
:by |rJG4IHzWf
:id |s12vB4PR0
:type :expr
:at 1585669966908
:by |rJG4IHzWf
:id |l941W_ZnbZ
:type :expr
:at 1626654649062
:by |rJG4IHzWf
:type :expr
:at 1585669937646
:by |rJG4IHzWf
:id |UxzibCFRdU
|call-negate $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577879891439) (:by |rJG4IHzWf) (:id |H3G4pBO1u)
|j $ {} (:text |call-negate) (:type :leaf) (:at 1577879891439) (:by |rJG4IHzWf) (:id |CcNtP-SII)
|r $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1577879904452) (:by |rJG4IHzWf) (:id |mzgATCVBt)
|j $ {} (:text |scope) (:type :leaf) (:at 1626678601270) (:by |rJG4IHzWf) (:id |mKBx7Apxm)
|r $ {} (:text |stdout) (:type :leaf) (:at 1577879891439) (:by |rJG4IHzWf) (:id |V2N5rGB3W)
:type :expr
:at 1577879891439
:by |rJG4IHzWf
:id |G3GBSQrxF
|v $ {}
:data $ {}
|T $ {} (:text |let[]) (:type :leaf) (:at 1626678605375) (:by |rJG4IHzWf) (:id |MpEPcpcT0)
|j $ {}
:data $ {}
|T $ {} (:text |v) (:type :leaf) (:at 1577879901457) (:by |rJG4IHzWf) (:id |OY55CPEms)
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678613755) (:by |rJG4IHzWf)
:type :expr
:at 1626678610274
:by |rJG4IHzWf
|n $ {}
:data $ {}
|T $ {} (:text |call-expression) (:type :leaf) (:at 1577879901457) (:by |rJG4IHzWf) (:id |vIvknh5fs)
|j $ {} (:text |x) (:type :leaf) (:at 1577879901457) (:by |rJG4IHzWf) (:id |Ug1B-blF2)
|r $ {} (:text |scope) (:type :leaf) (:at 1626678631365) (:by |rJG4IHzWf) (:id |FtV6xWq5N)
|v $ {} (:text |stdout) (:type :leaf) (:at 1577879901457) (:by |rJG4IHzWf) (:id |wQlyWNP1M)
:type :expr
:at 1577879901457
:by |rJG4IHzWf
:id |V4QpbI6Ld
|r $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1626678628077) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |negate) (:type :leaf) (:at 1626678620099) (:by |rJG4IHzWf) (:id |K2hTRtj5a)
|j $ {} (:text |v) (:type :leaf) (:at 1577879909250) (:by |rJG4IHzWf) (:id |FlRGKt1i)
:type :expr
:at 1577879901457
:by |rJG4IHzWf
:id |wRHGLiM5n
|j $ {} (:text |new-scope) (:type :leaf) (:at 1626678629880) (:by |rJG4IHzWf)
:type :expr
:at 1626678620887
:by |rJG4IHzWf
:type :expr
:at 1577879901457
:by |rJG4IHzWf
:id |YGB2ufDPI
:type :expr
:at 1577879891439
:by |rJG4IHzWf
:id |tqxqH68dg
|scope-get $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577897515876) (:by |rJG4IHzWf) (:id |CVJgMnAKC)
|j $ {} (:text |scope-get) (:type :leaf) (:at 1577897513523) (:by |rJG4IHzWf) (:id |o3N71YVws)
|r $ {}
:data $ {}
|T $ {} (:text |*scope) (:type :leaf) (:at 1577897518696) (:by |rJG4IHzWf) (:id |DrRC_KCH-)
|j $ {} (:text |x) (:type :leaf) (:at 1577897519865) (:by |rJG4IHzWf) (:id |hDUq5nC3T)
:type :expr
:at 1577897513523
:by |rJG4IHzWf
:id |x4rtu7mfA
|t $ {}
:data $ {}
|T $ {} (:text |assert) (:type :leaf) (:at 1577897613414) (:by |rJG4IHzWf) (:id |NS1i-2Lxleaf)
|b $ {} (:text "|\"*scope should be an atom") (:type :leaf) (:at 1626543985271) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |ref?) (:type :leaf) (:at 1626543988780) (:by |rJG4IHzWf) (:id |H1z85ZTFM)
|r $ {} (:text |*scope) (:type :leaf) (:at 1577897683149) (:by |rJG4IHzWf) (:id |Nty-J2rRH)
:type :expr
:at 1577897683149
:by |rJG4IHzWf
:id |RhEWZeyRL
:type :expr
:at 1577897612389
:by |rJG4IHzWf
:id |NS1i-2Lx
|v $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1577897526983) (:by |rJG4IHzWf) (:id |olZLVXlBleaf)
|j $ {}
:data $ {}
|D $ {} (:text |contains?) (:type :leaf) (:at 1577897537362) (:by |rJG4IHzWf) (:id |A0Bm3Xi3)
|T $ {} (:text |@*scope) (:type :leaf) (:at 1577897539483) (:by |rJG4IHzWf) (:id |FJXO9x5e)
|j $ {} (:text |x) (:type :leaf) (:at 1577897540408) (:by |rJG4IHzWf) (:id |Cqc-xSvu)
:type :expr
:at 1577897535391
:by |rJG4IHzWf
:id |TYsds9-4
|r $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1577897541844) (:by |rJG4IHzWf) (:id |esfmrMVhleaf)
|j $ {} (:text |@*scope) (:type :leaf) (:at 1577897544583) (:by |rJG4IHzWf) (:id |BK43E3kpe)
|r $ {} (:text |x) (:type :leaf) (:at 1577897545367) (:by |rJG4IHzWf) (:id |o8xjVcy5)
:type :expr
:at 1577897541308
:by |rJG4IHzWf
:id |esfmrMVh
|v $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1577897548710) (:by |rJG4IHzWf) (:id |ydPqA2mZleaf)
|j $ {}
:data $ {}
|T $ {} (:text |contains?) (:type :leaf) (:at 1577897552102) (:by |rJG4IHzWf) (:id |5spbDOePI)
|j $ {} (:text |@*scope) (:type :leaf) (:at 1577897555068) (:by |rJG4IHzWf) (:id |6XexNGaHX)
|r $ {} (:text |:__scope__) (:type :leaf) (:at 1577897559800) (:by |rJG4IHzWf) (:id |0GdcUk0r)
:type :expr
:at 1577897550051
:by |rJG4IHzWf
:id |ShgEfi_L
|r $ {}
:data $ {}
|T $ {} (:text |recur) (:type :leaf) (:at 1577897562371) (:by |rJG4IHzWf) (:id |_p37510Ileaf)
|j $ {}
:data $ {}
|T $ {} (:text |:__scope__) (:type :leaf) (:at 1577897567459) (:by |rJG4IHzWf) (:id |5UNQxLyh)
|j $ {} (:text |@*scope) (:type :leaf) (:at 1577897570437) (:by |rJG4IHzWf) (:id |v5evhN7L)
:type :expr
:at 1577897565245
:by |rJG4IHzWf
:id |8ogACt52
|r $ {} (:text |x) (:type :leaf) (:at 1577897572431) (:by |rJG4IHzWf) (:id |i8NFCQjX)
:type :expr
:at 1577897561612
:by |rJG4IHzWf
:id |_p37510I
|v $ {} (:text |nil) (:type :leaf) (:at 1577897574538) (:by |rJG4IHzWf) (:id |510C4LSH)
:type :expr
:at 1577897547588
:by |rJG4IHzWf
:id |ydPqA2mZ
:type :expr
:at 1577897526558
:by |rJG4IHzWf
:id |olZLVXlB
:type :expr
:at 1577897513523
:by |rJG4IHzWf
:id |CPt5MPbBc
:proc $ {}
:data $ {}
:type :expr
:at 1577639773232
:by |rJG4IHzWf
:id |Hr-wgypOV
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1577639773232) (:by |rJG4IHzWf) (:id |nalmP6gh5)
|j $ {} (:text |app.program) (:type :leaf) (:at 1577639773232) (:by |rJG4IHzWf) (:id |YL3PoUZf9)
|r $ {}
:data $ {}
|T $ {} (:text |:require) (:type :leaf) (:at 1577725129694) (:by |rJG4IHzWf) (:id |xIbSNoJ09)
|j $ {}
:data $ {}
|j $ {} (:text "|\"nzh/cn") (:type :leaf) (:at 1577725136858) (:by |rJG4IHzWf) (:id |7LPaIEW0n)
|r $ {} (:text |:as) (:type :leaf) (:at 1577725137667) (:by |rJG4IHzWf) (:id |_WJRCdkv)
|v $ {} (:text |nzh) (:type :leaf) (:at 1577725139583) (:by |rJG4IHzWf) (:id |ORijw1CNI)
:type :expr
:at 1577725130447
:by |rJG4IHzWf
:id |lmg9-uB3
:type :expr
:at 1577725128991
:by |rJG4IHzWf
:id |qZ4kO54Od
:type :expr
:at 1577639773232
:by |rJG4IHzWf
:id |3SWcMRCDx
|app.updater $ {}
:defs $ {}
|updater $ {}
:data $ {}
|T $ {} (:author |root) (:text |defn) (:time 1499755354983) (:type :leaf) (:id |H1U1esuY5TBZ)
|j $ {} (:author |root) (:text |updater) (:time 1499755354983) (:type :leaf) (:id |SJwJxj_Y5aHZ)
|r $ {}
:data $ {}
|T $ {} (:author |root) (:text |store) (:time 1499755354983) (:type :leaf) (:id |r1YyxidF96rW)
|j $ {} (:author |root) (:text |op) (:time 1499755354983) (:type :leaf) (:id |r1cJxouK5aSZ)
|r $ {} (:author |root) (:text |op-data) (:time 1499755354983) (:type :leaf) (:id |Bkj1ljdY5Tr-)
|v $ {} (:text |op-id) (:type :leaf) (:at 1519489491135) (:by |root) (:id |S1gUCbfy_G)
|x $ {} (:text |op-time) (:type :leaf) (:at 1519489492110) (:by |root) (:id |ryzsAWMkdG)
:time 1499755354983
:type :expr
:id |SkdkeiOK5TBZ
|v $ {}
:data $ {}
|sT $ {}
:data $ {}
|T $ {} (:author |rJG4IHzWf) (:text |:error-result) (:time 1512359657160) (:type :leaf) (:at 1577868555905) (:by |rJG4IHzWf) (:id |S1lxeout56HW)
|j $ {}
:data $ {}
|T $ {} (:author |rJG4IHzWf) (:text |assoc) (:time 1512359666053) (:type :leaf) (:id |BkfgesdF9TH-)
|j $ {} (:author |root) (:text |store) (:time 1499755354983) (:type :leaf) (:id |HJQeloOt5TrZ)
|r $ {} (:author |rJG4IHzWf) (:text |:error-result) (:time 1512359660859) (:type :leaf) (:at 1577868556946) (:by |rJG4IHzWf) (:id |HkNexodK9Tr-)
|v $ {} (:author |rJG4IHzWf) (:text |op-data) (:time 1512359663126) (:type :leaf) (:id |B1eIlwHzbz)
:time 1499755354983
:type :expr
:id |SJ-gxidtcTrZ
:time 1499755354983
:type :expr
:id |u3vSfyWVL
|T $ {} (:author |root) (:text |case-default) (:time 1499755354983) (:type :leaf) (:at 1626544875675) (:by |rJG4IHzWf) (:id |ry61gjOFqpH-)
|j $ {} (:author |root) (:text |op) (:time 1499755354983) (:type :leaf) (:id |HyAylout56Hb)
|l $ {} (:text |store) (:type :leaf) (:at 1626544877263) (:by |rJG4IHzWf)
|n $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |:states) (:time 1507399855618) (:type :leaf) (:id |HJxX2OqUh-)
|j $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |update-states) (:time 1507399857991) (:type :leaf) (:at 1585589739890) (:by |rJG4IHzWf) (:id |rylOn_5I2Z)
|j $ {} (:author |root) (:text |store) (:time 1507399858922) (:type :leaf) (:id |ByE92uq82b)
|n $ {} (:author |root) (:text |op-data) (:time 1507400135515) (:type :leaf) (:at 1585589743497) (:by |rJG4IHzWf) (:id |ByxCTYqL3W)
:time 1507399856471
:type :expr
:id |Sk-_hdqU2b
:time 1507399852251
:type :expr
:id |ryNh_5L3b
|r $ {}
:data $ {}
|T $ {} (:author |rJG4IHzWf) (:text |:content) (:time 1512359657160) (:type :leaf) (:id |S1lxeout56HW)
|j $ {}
:data $ {}
|T $ {} (:author |rJG4IHzWf) (:text |assoc) (:time 1512359666053) (:type :leaf) (:id |BkfgesdF9TH-)
|j $ {} (:author |root) (:text |store) (:time 1499755354983) (:type :leaf) (:id |HJQeloOt5TrZ)
|r $ {} (:author |rJG4IHzWf) (:text |:content) (:time 1512359660859) (:type :leaf) (:id |HkNexodK9Tr-)
|v $ {} (:author |rJG4IHzWf) (:text |op-data) (:time 1512359663126) (:type :leaf) (:id |B1eIlwHzbz)
:time 1499755354983
:type :expr
:id |SJ-gxidtcTrZ
:time 1499755354983
:type :expr
:id |S1kexiuF9arZ
|s $ {}
:data $ {}
|T $ {} (:author |rJG4IHzWf) (:text |:result) (:time 1512359657160) (:type :leaf) (:at 1577639730405) (:by |rJG4IHzWf) (:id |S1lxeout56HW)
|j $ {}
:data $ {}
|T $ {} (:author |rJG4IHzWf) (:text |assoc) (:time 1512359666053) (:type :leaf) (:id |BkfgesdF9TH-)
|j $ {} (:author |root) (:text |store) (:time 1499755354983) (:type :leaf) (:id |HJQeloOt5TrZ)
|r $ {} (:author |rJG4IHzWf) (:text |:result) (:time 1512359660859) (:type :leaf) (:at 1577639732114) (:by |rJG4IHzWf) (:id |HkNexodK9Tr-)
|v $ {} (:author |rJG4IHzWf) (:text |op-data) (:time 1512359663126) (:type :leaf) (:id |B1eIlwHzbz)
:time 1499755354983
:type :expr
:id |SJ-gxidtcTrZ
:time 1499755354983
:type :expr
:id |X3QR73_m
|t $ {}
:data $ {}
|T $ {} (:text |:hydrate-storage) (:type :leaf) (:at 1518157657108) (:by |root) (:id |SkNl1ac8zleaf)
|j $ {} (:text |op-data) (:type :leaf) (:at 1518157553355) (:by |root) (:id |SJzueyp5Iz)
:type :expr
:at 1518157547521
:by |root
:id |SkNl1ac8z
:time 1499755354983
:type :expr
:id |BJ2yxjOKqpHb
:time 1499755354983
:type :expr
:id |SkS1lout5aBb
:proc $ {}
:data $ {}
:time 1499755354983
:type :expr
:id |HJ41lsuY5pSZ
:ns $ {}
:data $ {}
|T $ {} (:author |root) (:text |ns) (:time 1499755354983) (:type :leaf) (:id |SkG1lo_t9pHZ)
|j $ {} (:author |root) (:text |app.updater) (:time 1499755354983) (:type :leaf) (:id |B17kxjdFq6r-)
|r $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |:require) (:time 1507399864640) (:type :leaf) (:id |H1xR2d5Uh-)
|j $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1507399865654) (:type :leaf) (:id |rkf-6u9InW)
|j $ {} (:author |root) (:text |respo.cursor) (:time 1507399873143) (:type :leaf) (:id |Hkefpu983W)
|r $ {} (:author |root) (:text |:refer) (:time 1507399874041) (:type :leaf) (:id |rkrYaO5UnZ)
|v $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1507399874938) (:type :leaf) (:id |BJBqpOq8hZ)
|j $ {} (:author |root) (:text |update-states) (:time 1507399875675) (:type :leaf) (:at 1585589732996) (:by |rJG4IHzWf) (:id |rJbi6_c83-)
:time 1507399874214
:type :expr
:id |BkUcpdc83b
:time 1507399864883
:type :expr
:id |r17bT_cLnZ
:time 1507399862664
:type :expr
:id |rykTu9L2Z
:time 1499755354983
:type :expr
:id |B1Z1gjdFqaBZ
|app.counting $ {}
:defs $ {}
|main! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577860635746) (:by |rJG4IHzWf) (:id |Sf6LNmiJu)
|j $ {} (:text |main!) (:type :leaf) (:at 1577860635746) (:by |rJG4IHzWf) (:id |oNYEVFngz)
|r $ {}
:data $ {}
:type :expr
:at 1577860635746
:by |rJG4IHzWf
:id |SJ1QX9uoZ
|x $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1577860668830) (:by |rJG4IHzWf) (:id |q3mdCF0jleaf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |content) (:type :leaf) (:at 1577860670203) (:by |rJG4IHzWf) (:id |_4UzC710E)
|j $ {}
:data $ {}
|T $ {} (:text |fs/readFileSync) (:type :leaf) (:at 1577860678943) (:by |rJG4IHzWf) (:id |E39F0ZaK)
|j $ {} (:text "|\"./九章算术.txt") (:type :leaf) (:at 1577860687688) (:by |rJG4IHzWf) (:id |C_07vURk)
|r $ {} (:text "|\"utf8") (:type :leaf) (:at 1577860689772) (:by |rJG4IHzWf) (:id |Mtzpzu79)
:type :expr
:at 1577860673980
:by |rJG4IHzWf
:id |CHDI0_tkL
:type :expr
:at 1577860669384
:by |rJG4IHzWf
:id |tY1V_h7vp
|j $ {}
:data $ {}
|T $ {} (:text |chars) (:type :leaf) (:at 1577860694648) (:by |rJG4IHzWf) (:id |Zr7DQMnOleaf)
|j $ {}
:data $ {}
|T $ {} (:text |.split) (:type :leaf) (:at 1626545067398) (:by |rJG4IHzWf) (:id |gnzBKlBuX)
|b $ {} (:text |content) (:type :leaf) (:at 1577860760918) (:by |rJG4IHzWf) (:id |yTaZyUKa7)
|j $ {} (:text "|\"") (:type :leaf) (:at 1577860697523) (:by |rJG4IHzWf) (:id |TeIhV9iTx)
:type :expr
:at 1577860694887
:by |rJG4IHzWf
:id |oFAcg9VX1
:type :expr
:at 1577860693310
:by |rJG4IHzWf
:id |Zr7DQMnO
|r $ {}
:data $ {}
|T $ {} (:text |collected) (:type :leaf) (:at 1577860719335) (:by |rJG4IHzWf) (:id |2Iz1WIYIleaf)
|j $ {}
:data $ {}
|D $ {} (:text |->) (:type :leaf) (:at 1626545043529) (:by |rJG4IHzWf) (:id |62CHn2vYD)
|L $ {} (:text |chars) (:type :leaf) (:at 1577860779506) (:by |rJG4IHzWf) (:id |mUp62iXj)
|R $ {}
:data $ {}
|T $ {} (:text |map-indexed) (:type :leaf) (:at 1577873745925) (:by |rJG4IHzWf) (:id |nlX5dDiBnleaf)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1577873747230) (:by |rJG4IHzWf) (:id |DeugQkRC)
|j $ {}
:data $ {}
|T $ {} (:text |idx) (:type :leaf) (:at 1577873748483) (:by |rJG4IHzWf) (:id |YbpiTKhCN)
|j $ {} (:text |x) (:type :leaf) (:at 1577873749376) (:by |rJG4IHzWf) (:id |hpIoRwEZC)
:type :expr
:at 1577873747519
:by |rJG4IHzWf
:id |CUpfds8sK
|r $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1577873751417) (:by |rJG4IHzWf) (:id |OpZ62WMfCleaf)
|j $ {} (:text |x) (:type :leaf) (:at 1577873751835) (:by |rJG4IHzWf) (:id |4wHJ_IY6B)
|r $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1578243735358) (:by |rJG4IHzWf) (:id |7PbzPxdWW)
|j $ {} (:text |chars) (:type :leaf) (:at 1578243737453) (:by |rJG4IHzWf) (:id |NqH-T5WAK)
|r $ {}
:data $ {}
|T $ {} (:text |inc) (:type :leaf) (:at 1578243739167) (:by |rJG4IHzWf) (:id |g7aUbUHx4)
|j $ {} (:text |idx) (:type :leaf) (:at 1578243739820) (:by |rJG4IHzWf) (:id |MxjafuHvQ)
:type :expr
:at 1578243737756
:by |rJG4IHzWf
:id |7sWCrU0Wz
:type :expr
:at 1578243733456
:by |rJG4IHzWf
:id |TMuMpRYs
:type :expr
:at 1577873750009
:by |rJG4IHzWf
:id |OpZ62WMfC
:type :expr
:at 1577873746664
:by |rJG4IHzWf
:id |W0kiR9VNa
:type :expr
:at 1577873743565
:by |rJG4IHzWf
:id |nlX5dDiBn
|S $ {}
:data $ {}
|T $ {} (:text |filter) (:type :leaf) (:at 1577873811174) (:by |rJG4IHzWf) (:id |XEoradDbM)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1577873811174) (:by |rJG4IHzWf) (:id |G_qi7Afdu)
|j $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1577873811174) (:by |rJG4IHzWf) (:id |hkbkdHN3P)
:type :expr
:at 1577873811174
:by |rJG4IHzWf
:id |uwyoZxzaE
|r $ {}
:data $ {}
|T $ {} (:text |.!test) (:type :leaf) (:at 1626545073886) (:by |rJG4IHzWf) (:id |uMmyclb33)
|j $ {} (:text |chinese-pattern) (:type :leaf) (:at 1577873811174) (:by |rJG4IHzWf) (:id |aftUCykx2)
|r $ {} (:text |x) (:type :leaf) (:at 1577873811174) (:by |rJG4IHzWf) (:id |yNPEmBrHY)
:type :expr
:at 1577873811174
:by |rJG4IHzWf
:id |npNjo4GbL
:type :expr
:at 1577873811174
:by |rJG4IHzWf
:id |MorhT1cBM
:type :expr
:at 1577873811174
:by |rJG4IHzWf
:id |rztSZvIng
|T $ {}
:data $ {}
|T $ {} (:text |group-by) (:type :leaf) (:at 1577860722817) (:by |rJG4IHzWf) (:id |s4gIq4Zgf)
|j $ {} (:text |identity) (:type :leaf) (:at 1577860726254) (:by |rJG4IHzWf) (:id |f6hmwPHSX)
:type :expr
:at 1577860719620
:by |rJG4IHzWf
:id |aroIHc9BE
|b $ {}
:data $ {}
|T $ {} (:text |.to-list) (:type :leaf) (:at 1626545083601) (:by |rJG4IHzWf)
:type :expr
:at 1626545082213
:by |rJG4IHzWf
|j $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1577860780617) (:by |rJG4IHzWf) (:id |AqRgvdcoeleaf)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1577860781225) (:by |rJG4IHzWf) (:id |_i2iUOyET)
|j $ {}
:data $ {}
|T $ {} (:text |entry) (:type :leaf) (:at 1626545088489) (:by |rJG4IHzWf)
:type :expr
:at 1577860781472
:by |rJG4IHzWf
:id |XeYxOCLvf
|r $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626545098906) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|j $ {} (:text |c) (:type :leaf) (:at 1626545092386) (:by |rJG4IHzWf)
|r $ {} (:text |xs) (:type :leaf) (:at 1626545092386) (:by |rJG4IHzWf)
:type :expr
:at 1626545092386
:by |rJG4IHzWf
|P $ {} (:text |entry) (:type :leaf) (:at 1626545095273) (:by |rJG4IHzWf)
|T $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577860788158) (:by |rJG4IHzWf) (:id |zhAiiFg0Ileaf)
|j $ {} (:text |c) (:type :leaf) (:at 1577860789032) (:by |rJG4IHzWf) (:id |ksIDIFRpP)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1577860790820) (:by |rJG4IHzWf) (:id |luTch__5)
|j $ {} (:text |xs) (:type :leaf) (:at 1577860791869) (:by |rJG4IHzWf) (:id |uhrXDUTZL)
:type :expr
:at 1577860790213
:by |rJG4IHzWf
:id |LzxbKF6b
:type :expr
:at 1577860787869
:by |rJG4IHzWf
:id |zhAiiFg0I
:type :expr
:at 1626545089907
:by |rJG4IHzWf
:type :expr
:at 1577860780920
:by |rJG4IHzWf
:id |6zYHyo8tJ
:type :expr
:at 1577860779928
:by |rJG4IHzWf
:id |AqRgvdcoe
|r $ {}
:data $ {}
|T $ {} (:text |sort-by) (:type :leaf) (:at 1577860813184) (:by |rJG4IHzWf) (:id |TPFekDwQKleaf)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1577860813842) (:by |rJG4IHzWf) (:id |QwvNwgsDn)
|f $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577860969192) (:by |rJG4IHzWf) (:id |Upue2-cZ)
|j $ {} (:text |c) (:type :leaf) (:at 1577860970834) (:by |rJG4IHzWf) (:id |5atUZ2Kd6)
|r $ {} (:text |n) (:type :leaf) (:at 1577860972374) (:by |rJG4IHzWf) (:id |TLIO0BHXr)
:type :expr
:at 1577860968729
:by |rJG4IHzWf
:id |BVUalgiZY
:type :expr
:at 1577860929545
:by |rJG4IHzWf
:id |ZVaV-6AWU
|r $ {}
:data $ {}
|D $ {} (:text |unchecked-negate) (:type :leaf) (:at 1577860897048) (:by |rJG4IHzWf) (:id |UjjViG-hX)
|b $ {} (:text |n) (:type :leaf) (:at 1577860974684) (:by |rJG4IHzWf) (:id |9ZGjbYyR6)
:type :expr
:at 1577860891333
:by |rJG4IHzWf
:id |-AFXYIrt
:type :expr
:at 1577860813969
:by |rJG4IHzWf
:id |Y24YG1I2D
:type :expr
:at 1577860809521
:by |rJG4IHzWf
:id |TPFekDwQK
:type :expr
:at 1577860777686
:by |rJG4IHzWf
:id |XPNAsDPgo
:type :expr
:at 1577860717116
:by |rJG4IHzWf
:id |2Iz1WIYI
:type :expr
:at 1577860669289
:by |rJG4IHzWf
:id |BhMge_1Q
|r $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1577860731158) (:by |rJG4IHzWf) (:id |5X8eTWIfpleaf)
|j $ {}
:data $ {}
|D $ {} (:text |->) (:type :leaf) (:at 1626545109687) (:by |rJG4IHzWf) (:id |HEQ5pQTm)
|T $ {} (:text |collected) (:type :leaf) (:at 1577860767598) (:by |rJG4IHzWf) (:id |ixz3wWAFj)
|j $ {}
:data $ {}
|T $ {} (:text |map-kv) (:type :leaf) (:at 1626545114820) (:by |rJG4IHzWf) (:id |lXRl7Vuid)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1577860958936) (:by |rJG4IHzWf) (:id |QZ-tM_YKr)
|j $ {}
:data $ {}
|T $ {} (:text |c) (:type :leaf) (:at 1577860977172) (:by |rJG4IHzWf) (:id |sgEF7Z3HZ)
|j $ {} (:text |n) (:type :leaf) (:at 1577860977406) (:by |rJG4IHzWf) (:id |X4bhcX6x-)
:type :expr
:at 1577860959983
:by |rJG4IHzWf
:id |9QMvC3fR1
|r $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1577860980336) (:by |rJG4IHzWf) (:id |ah-gXIYHyleaf)
|j $ {} (:text |c) (:type :leaf) (:at 1577860986759) (:by |rJG4IHzWf) (:id |7_LHLxSLQ)
|r $ {} (:text "|\" ") (:type :leaf) (:at 1577860988175) (:by |rJG4IHzWf) (:id |_MQFBQrW)
|v $ {} (:text |n) (:type :leaf) (:at 1577860989124) (:by |rJG4IHzWf) (:id |7lJIlEmDw)
:type :expr
:at 1577860979025
:by |rJG4IHzWf
:id |ah-gXIYHy
:type :expr
:at 1577860958779
:by |rJG4IHzWf
:id |xks023l1t
:type :expr
:at 1577860948667
:by |rJG4IHzWf
:id |kWGwuJY5W
|l $ {}
:data $ {}
|T $ {} (:text |.to-list) (:type :leaf) (:at 1626545120205) (:by |rJG4IHzWf)
:type :expr
:at 1626545118989
:by |rJG4IHzWf
|n $ {}
:data $ {}
|T $ {} (:text |take) (:type :leaf) (:at 1577861006435) (:by |rJG4IHzWf) (:id |E3EvrNiQleaf)
|j $ {} (:text |100) (:type :leaf) (:at 1578243647647) (:by |rJG4IHzWf) (:id |JrqfT1TGm)
:type :expr
:at 1577861005285
:by |rJG4IHzWf
:id |E3EvrNiQ
|r $ {}
:data $ {}
|T $ {} (:text |.join-str) (:type :leaf) (:at 1626545126066) (:by |rJG4IHzWf) (:id |JHZlokFEleaf)
|j $ {} (:text |&newline) (:type :leaf) (:at 1626545128960) (:by |rJG4IHzWf) (:id |t0Pl7uqf3)
:type :expr
:at 1577860990463
:by |rJG4IHzWf
:id |JHZlokFE
:type :expr
:at 1577860946540
:by |rJG4IHzWf
:id |u5uPNj9Qd
:type :expr
:at 1577860730392
:by |rJG4IHzWf
:id |5X8eTWIfp
:type :expr
:at 1577860665820
:by |rJG4IHzWf
:id |q3mdCF0j
:type :expr
:at 1577860635746
:by |rJG4IHzWf
:id |3u_7BtqMM
|chinese-pattern $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1577861275875) (:by |rJG4IHzWf) (:id |Nytk7pSdF)
|j $ {} (:text |chinese-pattern) (:type :leaf) (:at 1577861275875) (:by |rJG4IHzWf) (:id |IOg0A4fD-)
|r $ {}
:data $ {}
|D $ {} (:text |new) (:type :leaf) (:at 1626545058246) (:by |rJG4IHzWf)
|L $ {} (:text |js/RegExp) (:type :leaf) (:at 1626545061397) (:by |rJG4IHzWf)
|T $ {} (:text "|\"[\\u4e00-\\u9fa5]+") (:type :leaf) (:at 1626545054163) (:by |rJG4IHzWf) (:id |CvkZF8mBq)
:type :expr
:at 1626545054351
:by |rJG4IHzWf
:type :expr
:at 1577861275875
:by |rJG4IHzWf
:id |-pjmHeZXd
:proc $ {}
:data $ {}
:type :expr
:at 1577860633507
:by |rJG4IHzWf
:id |rRI54ZS0H
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1577860633507) (:by |rJG4IHzWf) (:id |9zokM6Px_)
|j $ {} (:text |app.counting) (:type :leaf) (:at 1577860633507) (:by |rJG4IHzWf) (:id |FzfCO_X0u)
|r $ {}
:data $ {}
|T $ {} (:text |:require) (:type :leaf) (:at 1577860655246) (:by |rJG4IHzWf) (:id |LSGisT5fp)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577860655719) (:by |rJG4IHzWf) (:id |EAQzfSD1Z)
|j $ {} (:text "|\"fs") (:type :leaf) (:at 1577860656656) (:by |rJG4IHzWf) (:id |Y2IOCh7rE)
|r $ {} (:text |:as) (:type :leaf) (:at 1577860657287) (:by |rJG4IHzWf) (:id |fgfFJ-qJS)
|v $ {} (:text |fs) (:type :leaf) (:at 1577860657600) (:by |rJG4IHzWf) (:id |nqBT2uRKv)
:type :expr
:at 1577860655501
:by |rJG4IHzWf
:id |3xAy3V5PM
:type :expr
:at 1577860654393
:by |rJG4IHzWf
:id |ZpRzscNBY
:type :expr
:at 1577860633507
:by |rJG4IHzWf
:id |PdGKzewAb
|app.cli $ {}
:defs $ {}
|main! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577867515393) (:by |rJG4IHzWf) (:id |4DeLrihXk)
|j $ {} (:text |main!) (:type :leaf) (:at 1577867515393) (:by |rJG4IHzWf) (:id |x_o05qhjo)
|r $ {}
:data $ {}
:type :expr
:at 1577867515393
:by |rJG4IHzWf
:id |fd6pTairm
|t $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1577871823198) (:by |rJG4IHzWf) (:id |mql4Oplyx)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |entry-file) (:type :leaf) (:at 1577871827188) (:by |rJG4IHzWf) (:id |b8_o1az39)
|j $ {}
:data $ {}
|T $ {} (:text |aget) (:type :leaf) (:at 1577871828109) (:by |rJG4IHzWf) (:id |O2c1VwHwi)
|j $ {} (:text |js/process.argv) (:type :leaf) (:at 1577871828109) (:by |rJG4IHzWf) (:id |ElCSrX34R)
|r $ {} (:text |2) (:type :leaf) (:at 1577871828109) (:by |rJG4IHzWf) (:id |C3o-rNDCX)
:type :expr
:at 1577871828109
:by |rJG4IHzWf
:id |-VTdKDpCV
:type :expr
:at 1577871823554
:by |rJG4IHzWf
:id |W5fz5RUJH
:type :expr
:at 1577871823399
:by |rJG4IHzWf
:id |gBu6Oj-M7
|r $ {}
:data $ {}
|T $ {} (:text |when) (:type :leaf) (:at 1577871842673) (:by |rJG4IHzWf) (:id |gfwB0WWvMleaf)
|j $ {}
:data $ {}
|T $ {} (:text |nil?) (:type :leaf) (:at 1577871833064) (:by |rJG4IHzWf) (:id |YFGeNvTwV)
|j $ {} (:text |entry-file) (:type :leaf) (:at 1577871835504) (:by |rJG4IHzWf) (:id |i_k0WGgeH)
:type :expr
:at 1577871831286
:by |rJG4IHzWf
:id |DWMLKOPO
|n $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1577871848821) (:by |rJG4IHzWf) (:id |c6rsb1u1leaf)
|j $ {} (:text "|\"No file name") (:type :leaf) (:at 1577871852253) (:by |rJG4IHzWf) (:id |c6hFM9xcz)
:type :expr
:at 1577871845411
:by |rJG4IHzWf
:id |c6rsb1u1
|r $ {}
:data $ {}
|T $ {} (:text |js/process.exit) (:type :leaf) (:at 1577871840385) (:by |rJG4IHzWf) (:id |McqsUv16leaf)
|j $ {} (:text |1) (:type :leaf) (:at 1577871844563) (:by |rJG4IHzWf) (:id |zixS2Qgf)
:type :expr
:at 1577871836212
:by |rJG4IHzWf
:id |McqsUv16
:type :expr
:at 1577871830504
:by |rJG4IHzWf
:id |gfwB0WWvM
|v $ {}
:data $ {}
|T $ {} (:text |when-not) (:type :leaf) (:at 1577871858363) (:by |rJG4IHzWf) (:id |KaQ66Gsrhleaf)
|j $ {}
:data $ {}
|T $ {} (:text |fs/existsSync) (:type :leaf) (:at 1577871866410) (:by |rJG4IHzWf) (:id |7-rLhpY56)
|j $ {} (:text |entry-file) (:type :leaf) (:at 1577871869465) (:by |rJG4IHzWf) (:id |I-1fnO6W-)
:type :expr
:at 1577871858618
:by |rJG4IHzWf
:id |UacejcBh6
|r $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1577871876257) (:by |rJG4IHzWf) (:id |dqYb7VhHleaf)
|j $ {} (:text |entry-file) (:type :leaf) (:at 1577871883925) (:by |rJG4IHzWf) (:id |BgULzyAc)
|r $ {} (:text "|\"does not exist") (:type :leaf) (:at 1577871888833) (:by |rJG4IHzWf) (:id |OF3QpghC)
:type :expr
:at 1577871873784
:by |rJG4IHzWf
:id |dqYb7VhH
|v $ {}
:data $ {}
|T $ {} (:text |js/process.exit) (:type :leaf) (:at 1577871896265) (:by |rJG4IHzWf) (:id |F88_94pdIleaf)
|j $ {} (:text |1) (:type :leaf) (:at 1577871896579) (:by |rJG4IHzWf) (:id |7s6vx7TOQ)
:type :expr
:at 1577871891296
:by |rJG4IHzWf
:id |F88_94pdI
:type :expr
:at 1577871853418
:by |rJG4IHzWf
:id |KaQ66Gsrh
|x $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1577871899978) (:by |rJG4IHzWf) (:id |W6P8LrtKt)
|j $ {}
:data $ {}
|r $ {}
:data $ {}
|T $ {} (:text |source) (:type :leaf) (:at 1577871899978) (:by |rJG4IHzWf) (:id |gkhs1nVAC)
|j $ {}
:data $ {}
|T $ {} (:text |fs/readFileSync) (:type :leaf) (:at 1577871899978) (:by |rJG4IHzWf) (:id |Ow3TV0EE8)
|f $ {} (:text |entry-file) (:type :leaf) (:at 1577871904848) (:by |rJG4IHzWf) (:id |mYSPaGgZ5)
|r $ {} (:text "|\"utf8") (:type :leaf) (:at 1577871899978) (:by |rJG4IHzWf) (:id |sWBmDtTVow)
:type :expr
:at 1577871899978
:by |rJG4IHzWf
:id |m4UDsfB16
:type :expr
:at 1577871899978
:by |rJG4IHzWf
:id |k6gu-e7Zg
:type :expr
:at 1577871899978
:by |rJG4IHzWf
:id |Y8J-zMU8E
|r $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626698638626) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |ret) (:type :leaf) (:at 1626698639914) (:by |rJG4IHzWf)
|j $ {} (:text |logs) (:type :leaf) (:at 1626698642128) (:by |rJG4IHzWf)
:type :expr
:at 1626698639362
:by |rJG4IHzWf
|T $ {}
:data $ {}
|T $ {} (:text |run-program) (:type :leaf) (:at 1577871899978) (:by |rJG4IHzWf) (:id |CtT8eGHbHV)
|j $ {} (:text |source) (:type :leaf) (:at 1577871899978) (:by |rJG4IHzWf) (:id |KkpKzyzaOF)
:type :expr
:at 1577871899978
:by |rJG4IHzWf
:id |efg0EIfzZn
|j $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1626698644061) (:by |rJG4IHzWf)
|j $ {} (:text |logs) (:type :leaf) (:at 1626698644831) (:by |rJG4IHzWf)
:type :expr
:at 1626698643100
:by |rJG4IHzWf
:type :expr
:at 1626698637142
:by |rJG4IHzWf
:type :expr
:at 1577871899978
:by |rJG4IHzWf
:id |5HTSyZGD1
:type :expr
:at 1577871815920
:by |rJG4IHzWf
:id |PbLx5lL7
:type :expr
:at 1577867515393
:by |rJG4IHzWf
:id |Vz0G94vpo
:proc $ {}
:data $ {}
:type :expr
:at 1577867512862
:by |rJG4IHzWf
:id |6chJB58sS
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1577867512862) (:by |rJG4IHzWf) (:id |IFYlrpt2H)
|j $ {} (:text |app.cli) (:type :leaf) (:at 1577867512862) (:by |rJG4IHzWf) (:id |Dh2VRD-fG)
|r $ {}
:data $ {}
|T $ {} (:text |:require) (:type :leaf) (:at 1577871393585) (:by |rJG4IHzWf) (:id |eEm5jqza)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577871394075) (:by |rJG4IHzWf) (:id |KRhtPbVRH)
|j $ {} (:text |app.program) (:type :leaf) (:at 1577871396371) (:by |rJG4IHzWf) (:id |n2P4QO8VH)
|r $ {} (:text |:refer) (:type :leaf) (:at 1577871398209) (:by |rJG4IHzWf) (:id |PYOMqqt1)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577871405582) (:by |rJG4IHzWf) (:id |FhFNDkUwf)
|j $ {} (:text |run-program) (:type :leaf) (:at 1577871407666) (:by |rJG4IHzWf) (:id |ZFNS2phB1)
:type :expr
:at 1577871398746
:by |rJG4IHzWf
:id |bttAuNZDy
:type :expr
:at 1577871393887
:by |rJG4IHzWf
:id |cwibSZGKP
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577871790681) (:by |rJG4IHzWf) (:id |0gplkBL_leaf)
|j $ {} (:text "|\"fs") (:type :leaf) (:at 1577871791463) (:by |rJG4IHzWf) (:id |owcVYtOSP)
|r $ {} (:text |:as) (:type :leaf) (:at 1577871791960) (:by |rJG4IHzWf) (:id |y8I8gauya)
|v $ {} (:text |fs) (:type :leaf) (:at 1577871792267) (:by |rJG4IHzWf) (:id |DqJT5zpUC)
:type :expr
:at 1577871790253
:by |rJG4IHzWf
:id |0gplkBL_
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577871803600) (:by |rJG4IHzWf) (:id |85KzFTNAGleaf)
|j $ {} (:text "|\"path") (:type :leaf) (:at 1577871804644) (:by |rJG4IHzWf) (:id |BT5NVPHQP)
|r $ {} (:text |:as) (:type :leaf) (:at 1577871805070) (:by |rJG4IHzWf) (:id |PD2Mov-Pz)
|v $ {} (:text |path) (:type :leaf) (:at 1577871805721) (:by |rJG4IHzWf) (:id |vVkJjcYC3)
:type :expr
:at 1577871803296
:by |rJG4IHzWf
:id |85KzFTNAG
|x $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577872583708) (:by |rJG4IHzWf) (:id |A8DvfcCREleaf)
|j $ {} (:text "|\"chalk") (:type :leaf) (:at 1577872585246) (:by |rJG4IHzWf) (:id |JQ2LmjLeK)
|r $ {} (:text |:as) (:type :leaf) (:at 1577872585960) (:by |rJG4IHzWf) (:id |Fo-uThPed)
|v $ {} (:text |chalk) (:type :leaf) (:at 1577872586677) (:by |rJG4IHzWf) (:id |Ekoh4PG_)
:type :expr
:at 1577872583366
:by |rJG4IHzWf
:id |A8DvfcCRE
:type :expr
:at 1577871390245
:by |rJG4IHzWf
:id |fgPyhRJFZ
:type :expr
:at 1577867512862
:by |rJG4IHzWf
:id |l23Q8nSf-
|app.main $ {}
:defs $ {}
|render-app! $ {}
:data $ {}
|T $ {} (:author |root) (:text |defn) (:time 1499755354983) (:type :leaf) (:id |HkDssOFcaBb)
|j $ {} (:author |root) (:text |render-app!) (:time 1499755354983) (:type :leaf) (:id |Sy_osdKc6Hb)
|r $ {}
:data $ {}
:time 1499755354983
:type :expr
:id |B1YjiOY5TSb
|v $ {}
:data $ {}
|T $ {} (:author |root) (:text |render!) (:time 1499755354983) (:type :leaf) (:at 1626631541810) (:by |rJG4IHzWf) (:id |B12oiuFcTH-)
|j $ {} (:author |root) (:text |mount-target) (:time 1499755354983) (:type :leaf) (:id |BJpssOY5arW)
|r $ {}
:data $ {}
|T $ {} (:author |root) (:text |comp-container) (:time 1499755354983) (:type :leaf) (:id |ry12out96SZ)
|j $ {} (:author |root) (:text |@*reel) (:time 1507400119272) (:type :leaf) (:id |S1ehi_tcTSW)
:time 1499755354983
:type :expr
:id |SkCijOK9TBW
|v $ {} (:author |root) (:text |dispatch!) (:time 1511280017692) (:type :leaf) (:id |Skb3o_YqaBW)
:time 1499755354983
:type :expr
:id |Hkisi_K9aBb
:time 1499755354983
:type :expr
:id |rkIjoOt9TSZ
|persist-storage! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1533919517365) (:by |rJG4IHzWf) (:id |l8fLwAhlXR)
|j $ {} (:text |persist-storage!) (:type :leaf) (:at 1533919515671) (:by |rJG4IHzWf) (:id |PFTnUVG8by)
|r $ {}
:data $ {}
|T $ {} (:text |event) (:type :leaf) (:at 1626631448749) (:by |rJG4IHzWf)
:type :expr
:at 1533919515671
:by |rJG4IHzWf
:id |gTW5Lkw-h0
|v $ {}
:data $ {}
|T $ {} (:text |.!setItem) (:type :leaf) (:at 1626544935695) (:by |rJG4IHzWf) (:id |nsY38PgyDG)
|j $ {} (:text |js/localStorage) (:type :leaf) (:at 1533919515671) (:by |rJG4IHzWf) (:id |7jurgAg3V2)
|r $ {}
:data $ {}
|T $ {} (:text |:storage-key) (:type :leaf) (:at 1544956703087) (:by |rJG4IHzWf) (:id |jG6Dp3dm3f)
|j $ {} (:text |config/site) (:type :leaf) (:at 1533919515671) (:by |rJG4IHzWf) (:id |JixB_KjhS8)
:type :expr
:at 1533919515671
:by |rJG4IHzWf
:id |MDyLngin9s
|v $ {}
:data $ {}
|T $ {} (:text |format-cirru-edn) (:type :leaf) (:at 1626545173412) (:by |rJG4IHzWf) (:id |XBtA7AMJT-)
|j $ {}
:data $ {}
|T $ {} (:text |:store) (:type :leaf) (:at 1533919515671) (:by |rJG4IHzWf) (:id |lYQrjrMTKZR)
|j $ {} (:text |@*reel) (:type :leaf) (:at 1533919515671) (:by |rJG4IHzWf) (:id |v41oSodX6pD)
:type :expr
:at 1533919515671
:by |rJG4IHzWf
:id |9jTwRVi6Cv
:type :expr
:at 1533919515671
:by |rJG4IHzWf
:id |GgQoLRZ9sO
:type :expr
:at 1533919515671
:by |rJG4IHzWf
:id |r_PVAAH3MQ
:type :expr
:at 1533919515671
:by |rJG4IHzWf
:id |sYYH8-JwjZ
|mount-target $ {}
:data $ {}
|T $ {} (:author |root) (:text |def) (:time 1499755354983) (:type :leaf) (:id |S1oAjut5TBZ)
|j $ {} (:author |root) (:text |mount-target) (:time 1499755354983) (:type :leaf) (:id |rJ2Cj_t5aBZ)
|r $ {}
:data $ {}
|T $ {} (:author |root) (:text |.querySelector) (:time 1499755354983) (:type :leaf) (:id |HyRCs_tqpH-)
|j $ {} (:author |root) (:text |js/document) (:time 1499755354983) (:type :leaf) (:id |ryy1ejdFq6SW)
|r $ {} (:author |root) (:text ||.app) (:time 1499755354983) (:type :leaf) (:id |B1gygs_t56rW)
:time 1499755354983
:type :expr
:id |HJpAjOY5arZ
:time 1499755354983
:type :expr
:id |B1qRjdF9aH-
|*reel $ {}
:data $ {}
|T $ {} (:author |root) (:text |defatom) (:time 1499755354983) (:type :leaf) (:at 1626545150421) (:by |rJG4IHzWf) (:id |Hym2s_F9Tr-)
|j $ {} (:author |root) (:text |*reel) (:time 1499755354983) (:type :leaf) (:id |rJEhsuY5arW)
|r $ {} (:author |root)
:data $ {}
|D $ {} (:author |root) (:text |->) (:time 1507399778895) (:type :leaf) (:id |Bkx5wOq83b)
|T $ {} (:author |root) (:text |reel-schema/reel) (:time 1507399776350) (:type :leaf) (:id |SkvhsuKqaBW)
|j $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |assoc) (:time 1507399781682) (:type :leaf) (:id |ByMjD_cL2b)
|j $ {} (:author |root) (:text |:base) (:time 1507401405076) (:type :leaf) (:id |SJb0w_qL3b)
|r $ {} (:author |root) (:text |schema/store) (:time 1507399787471) (:type :leaf) (:id |S1xdu5U3Z)
:time 1507399779656
:type :expr
:id |H1hvucUnZ
|r $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |assoc) (:time 1507399781682) (:type :leaf) (:id |ByMjD_cL2b)
|j $ {} (:author |root) (:text |:store) (:time 1507399793097) (:type :leaf) (:id |SJb0w_qL3b)
|r $ {} (:author |root) (:text |schema/store) (:time 1507399787471) (:type :leaf) (:id |S1xdu5U3Z)
:time 1507399779656
:type :expr
:id |S1P__5I3b
:time 1507399777531
:type :expr
:id |HJ9Pd5U3-
:time 1499755354983
:type :expr
:id |Hkf2sOYqpBb
|main! $ {}
:data $ {}
|yD $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |listen-devtools!) (:time 1507461739167) (:type :leaf) (:id |Hyg2E5tPhbleaf)
|j $ {} (:author |root) (:text ||k) (:time 1507461691211) (:type :leaf) (:at 1626631479368) (:by |rJG4IHzWf) (:id |HkffSqFv2W)
|r $ {} (:author |root) (:text |dispatch!) (:time 1507461693919) (:type :leaf) (:id |SJEBqYD2W)
:time 1507461684494
:type :expr
:id |Hyg2E5tPhb
|yL $ {}
:data $ {}
|D $ {} (:text |;) (:type :leaf) (:at 1626631571731) (:by |rJG4IHzWf)
|T $ {} (:text |.!addEventListener) (:type :leaf) (:at 1626631472320) (:by |rJG4IHzWf) (:id |BJg8VR398Gleaf)
|j $ {} (:text |js/window) (:type :leaf) (:at 1518157453505) (:by |root) (:id |rkmqRncIf)
|r $ {} (:text ||beforeunload) (:type :leaf) (:at 1518157458163) (:by |root) (:id |Sk8cAnqUz)
|v $ {} (:text |persist-storage!) (:type :leaf) (:at 1533919515671) (:by |rJG4IHzWf) (:id |DXNDmmlb_Uw)
:type :expr
:at 1518157357847
:by |root
:id |BJg8VR398G
|yN $ {}
:data $ {}
|D $ {} (:text |;) (:type :leaf) (:at 1626631570821) (:by |rJG4IHzWf)
|T $ {} (:text |js/setInterval) (:type :leaf) (:at 1626544905136) (:by |rJG4IHzWf) (:id |Uj_o1cI2Aleaf)
|j $ {} (:text |persist-storage!) (:type :leaf) (:at 1533919535136) (:by |rJG4IHzWf) (:id |5tb38oDl_z)
|r $ {}
:data $ {}
|D $ {} (:text |*) (:type :leaf) (:at 1626544909569) (:by |rJG4IHzWf)
|L $ {} (:text |1000) (:type :leaf) (:at 1626544910655) (:by |rJG4IHzWf)
|T $ {} (:text |60) (:type :leaf) (:at 1626544908452) (:by |rJG4IHzWf)
:type :expr
:at 1626544908988
:by |rJG4IHzWf
:type :expr
:at 1533919529874
:by |rJG4IHzWf
:id |Uj_o1cI2A
|yP $ {}
:data $ {}
|D $ {} (:text |;) (:type :leaf) (:at 1626631569281) (:by |rJG4IHzWf)
|T $ {} (:text |let) (:type :leaf) (:at 1518157495438) (:by |root) (:id |rJ6n03q8Gleaf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |raw) (:type :leaf) (:at 1518157496930) (:by |root) (:id |Byz1aA3c8z)
|j $ {}
:data $ {}
|T $ {} (:text |.!getItem) (:type :leaf) (:at 1626544912304) (:by |rJG4IHzWf) (:id |HyG-T0258G)
|j $ {} (:text |js/localStorage) (:type :leaf) (:at 1518157504638) (:by |root) (:id |ByMHTA2cUz)
|r $ {}
:data $ {}
|T $ {} (:text |:storage-key) (:type :leaf) (:at 1544956709260) (:by |rJG4IHzWf) (:id |ByWtTAn9UM)
|j $ {} (:text |config/site) (:type :leaf) (:at 1527788293499) (:by |root) (:id |S1lhTCh9Uf)
:type :expr
:at 1518157506313
:by |root
:id |HJc60h9Iz
:type :expr
:at 1518157497615
:by |root
:id |ryGaR29Lf
:type :expr
:at 1518157495826
:by |root
:id |rJgl6A2cLz
:type :expr
:at 1518157495644
:by |root
:id |SJxpRh9Iz
|r $ {}
:data $ {}
|T $ {} (:text |when) (:type :leaf) (:at 1533919640958) (:by |rJG4IHzWf) (:id |B1WMCAhcUfleaf)
|j $ {}
:data $ {}
|T $ {} (:text |some?) (:type :leaf) (:at 1518157515786) (:by |root) (:id |BkbQRRh5Iz)
|j $ {} (:text |raw) (:type :leaf) (:at 1518157516878) (:by |root) (:id |Hk-V0R3cLf)
:type :expr
:at 1518157515117
:by |root
:id |B1MmRA2cIz
|r $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1518157523818) (:by |root) (:id |BJWt0A39Lf)
|j $ {} (:text |:hydrate-storage) (:type :leaf) (:at 1518157669936) (:by |root) (:id |H1l3RR3cIz)
|r $ {}
:data $ {}
|T $ {} (:text |parse-cirru-edn) (:type :leaf) (:at 1626544925928) (:by |rJG4IHzWf) (:id |Byly1p9Uf)
|j $ {} (:text |raw) (:type :leaf) (:at 1518157531240) (:by |root) (:id |rkmJyacIz)
:type :expr
:at 1518157527987
:by |root
:id |SJWx1yac8M
:type :expr
:at 1518157521635
:by |root
:id |BycA03cLG
:type :expr
:at 1518157514334
:by |root
:id |B1WMCAhcUf
:type :expr
:at 1518157492640
:by |root
:id |rJ6n03q8G
|yT $ {}
:data $ {}
|T $ {} (:author |root) (:text |println) (:time 1499755354983) (:type :leaf) (:id |H1dAiOtqpBZ)
|j $ {} (:author |root) (:text "||App started.") (:time 1499755354983) (:type :leaf) (:id |Byt0idYcaHW)
:time 1499755354983
:type :expr
:id |H1vRoOF5pSZ
|T $ {} (:author |root) (:text |defn) (:time 1499755354983) (:type :leaf) (:id |ByW6ouF5Trb)
|j $ {} (:author |root) (:text |main!) (:time 1499755354983) (:type :leaf) (:id |H1Gpo_YqaHb)
|r $ {}
:data $ {}
:time 1499755354983
:type :expr
:id |BkX6juY5aB-
|t $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1544874434638) (:by |rJG4IHzWf) (:id |fLSIEmUmdNleaf)
|j $ {} (:text "|\"Running mode:") (:type :leaf) (:at 1544874509800) (:by |rJG4IHzWf) (:id |0HlR_PDYlS)
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1544874440190) (:by |rJG4IHzWf) (:id |3fvetGvON)
|j $ {} (:text |config/dev?) (:type :leaf) (:at 1544874446442) (:by |rJG4IHzWf) (:id |HYiJmMsGb)
|r $ {} (:text "|\"dev") (:type :leaf) (:at 1544874449063) (:by |rJG4IHzWf) (:id |7h04nvm3O)
|v $ {} (:text "|\"release") (:type :leaf) (:at 1544874452316) (:by |rJG4IHzWf) (:id |5vdb_eETfT)
:type :expr
:at 1544874440404
:by |rJG4IHzWf
:id |bDTVUn7FFd
:type :expr
:at 1544874433785
:by |rJG4IHzWf
:id |fLSIEmUmdN
|x $ {}
:data $ {}
|T $ {} (:author |root) (:text |render-app!) (:time 1499755354983) (:type :leaf) (:id |SJoas_K9arW)
:time 1499755354983
:type :expr
:id |B1qaj_K5aSZ
|y $ {}
:data $ {}
|T $ {} (:author |root) (:text |add-watch) (:time 1499755354983) (:type :leaf) (:id |HJRTs_F56Hb)
|j $ {} (:author |root) (:text |*reel) (:time 1507399915531) (:type :leaf) (:id |rky0s_YqaBZ)
|r $ {} (:author |root) (:text |:changes) (:time 1499755354983) (:type :leaf) (:id |H1lRsOY56H-)
|v $ {}
:data $ {}
|T $ {} (:author |root) (:text |fn) (:time 1499755354983) (:type :leaf) (:id |ryz0jOtcTrW)
|j $ {}
:data $ {}
|T $ {} (:text |reel) (:type :leaf) (:at 1626631496400) (:by |rJG4IHzWf)
|j $ {} (:text |prev) (:type :leaf) (:at 1626631487243) (:by |rJG4IHzWf)
:time 1499755354983
:type :expr
:id |B1QCi_t9pS-
|r $ {}
:data $ {}
|T $ {} (:author |root) (:text |render-app!) (:time 1499755354983) (:type :leaf) (:id |BkHCsOY5aBb)
:time 1499755354983
:type :expr
:id |SJV0jdKqprW
:time 1499755354983
:type :expr
:id |H1bCidtcaSb
:time 1499755354983
:type :expr
:id |r1p6oOFcTrZ
:time 1499755354983
:type :expr
:id |Hkl6i_F5aBb
|dispatch! $ {}
:data $ {}
|T $ {} (:author |root) (:text |defn) (:time 1499755354983) (:type :leaf) (:id |rJ5_idt5TBW)
|j $ {} (:author |root) (:text |dispatch!) (:time 1499755354983) (:type :leaf) (:id |B1i_oOY9pHW)
|r $ {}
:data $ {}
|T $ {} (:author |root) (:text |op) (:time 1499755354983) (:type :leaf) (:id |HyT_suY56Bb)
|j $ {} (:author |root) (:text |op-data) (:time 1499755354983) (:type :leaf) (:id |S1AdidYc6Hb)
:time 1499755354983
:type :expr
:id |BJhOjOYqpSW
|t $ {}
:data $ {}
|D $ {} (:text |when) (:type :leaf) (:at 1547437687530) (:by |root) (:id |aGDIF3y8rk)
|L $ {}
:data $ {}
|D $ {} (:text |and) (:type :leaf) (:at 1577725187976) (:by |rJG4IHzWf) (:id |aJ_513tTk)
|T $ {} (:text |config/dev?) (:type :leaf) (:at 1577725187322) (:by |rJG4IHzWf) (:id |L9TkjnHBLn)
|j $ {}
:data $ {}
|T $ {} (:text |not=) (:type :leaf) (:at 1577725191484) (:by |rJG4IHzWf) (:id |YO7mu_Ug-)
|j $ {} (:text |op) (:type :leaf) (:at 1577725193894) (:by |rJG4IHzWf) (:id |NI8q3SAey)
|r $ {} (:text |:hydrate-storage) (:type :leaf) (:at 1577725194353) (:by |rJG4IHzWf) (:id |Y-hp1SkVj)
:type :expr
:at 1577725188666
:by |rJG4IHzWf
:id |34BVDQqup
|r $ {}
:data $ {}
|T $ {} (:text |not=) (:type :leaf) (:at 1577725191484) (:by |rJG4IHzWf) (:id |YO7mu_Ug-)
|j $ {} (:text |op) (:type :leaf) (:at 1577725193894) (:by |rJG4IHzWf) (:id |NI8q3SAey)
|r $ {} (:text |:states) (:type :leaf) (:at 1577725203432) (:by |rJG4IHzWf) (:id |Y-hp1SkVj)
:type :expr
:at 1577725188666
:by |rJG4IHzWf
:id |tzCTVBmK
:type :expr
:at 1577725185537
:by |rJG4IHzWf
:id |FirlMJ-qw
|T $ {}
:data $ {}
|j $ {} (:text |println) (:type :leaf) (:at 1518156276516) (:by |root) (:id |Bkg3x9n5UG)
|r $ {} (:text "|\"Dispatch:") (:type :leaf) (:at 1547437698992) (:by |root) (:id |rJpx93cUG)
|v $ {} (:text |op) (:type :leaf) (:at 1518156280471) (:by |root) (:id |ryzgb92qIz)
:type :expr
:at 1518156274050
:by |root
:id |rkqgqhqUM
:type :expr
:at 1547437686766
:by |root
:id |eDq-EM-Uh
|v $ {}
:data $ {}
|T $ {} (:author |root) (:text |reset!) (:time 1499755354983) (:type :leaf) (:id |H1w9iOt56S-)
|j $ {} (:author |root) (:text |*reel) (:time 1507399899641) (:type :leaf) (:id |rJOcjdYqaHW)
|r $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |reel-updater) (:time 1507399887573) (:type :leaf) (:id |HkB0Oc8n-leaf)
|j $ {} (:author |root) (:text |updater) (:time 1507399888500) (:type :leaf) (:id |r1eu0dqL2Z)
|r $ {} (:author |root) (:text |@*reel) (:time 1507399891576) (:type :leaf) (:id |r1tRdqU3W)
|v $ {} (:author |root) (:text |op) (:time 1507399892687) (:type :leaf) (:id |S1e3CO9I3W)
|x $ {} (:author |root) (:text |op-data) (:time 1507399894594) (:type :leaf) (:id |HklaCd58nb)
:time 1507399884621
:type :expr
:id |rkLeq39LG
:time 1499755354983
:type :expr
:id |BJg_echcIM
:time 1499755354983
:type :expr
:id |SytOodK9pSZ
|reload! $ {}
:data $ {}
|D $ {} (:text |defn) (:type :leaf) (:at 1626631589976) (:by |rJG4IHzWf)
|L $ {} (:text |reload!) (:type :leaf) (:at 1626631592039) (:by |rJG4IHzWf)
|P $ {}
:data $ {}
:type :expr
:at 1626631597100
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |if) (:type :leaf) (:at 1626631667419) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |some?) (:type :leaf) (:at 1626631669377) (:by |rJG4IHzWf)
|j $ {} (:text |build-errors) (:type :leaf) (:at 1626631669766) (:by |rJG4IHzWf)
:type :expr
:at 1626631667801
:by |rJG4IHzWf
|P $ {}
:data $ {}
|T $ {} (:text |hud!) (:type :leaf) (:at 1626631672163) (:by |rJG4IHzWf)
|b $ {} (:text "|\"error") (:type :leaf) (:at 1626631676169) (:by |rJG4IHzWf)
|j $ {} (:text |build-errors) (:type :leaf) (:at 1626631674044) (:by |rJG4IHzWf)
:type :expr
:at 1626631671273
:by |rJG4IHzWf
|T $ {}
:data $ {}
|vT $ {}
:data $ {}
|T $ {} (:text |clear-cache!) (:type :leaf) (:at 1626681997239) (:by |rJG4IHzWf)
:type :expr
:at 1626681997239
:by |rJG4IHzWf
|vj $ {}
:data $ {}
|T $ {} (:text |add-watch) (:type :leaf) (:at 1626682000368) (:by |rJG4IHzWf)
|j $ {} (:text |*reel) (:type :leaf) (:at 1626682001741) (:by |rJG4IHzWf)
|r $ {} (:text |:changes) (:type :leaf) (:at 1626682003702) (:by |rJG4IHzWf)
|v $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1626682007751) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |reel) (:type :leaf) (:at 1626682009386) (:by |rJG4IHzWf)
|j $ {} (:text |p) (:type :leaf) (:at 1626682009944) (:by |rJG4IHzWf)
:type :expr
:at 1626682008051
:by |rJG4IHzWf
|r $ {}
:data $ {}
|T $ {} (:text |render-app!) (:type :leaf) (:at 1626682014012) (:by |rJG4IHzWf)
:type :expr
:at 1626682011694
:by |rJG4IHzWf
:type :expr
:at 1626682005718
:by |rJG4IHzWf
:type :expr
:at 1626681997684
:by |rJG4IHzWf
|Q $ {} (:text |do) (:type :leaf) (:at 1626631595915) (:by |rJG4IHzWf)
|f $ {}
:data $ {}
|T $ {} (:text |hud!) (:type :leaf) (:at 1626631682947) (:by |rJG4IHzWf)
|j $ {} (:text "|\"inactive") (:type :leaf) (:at 1626631686409) (:by |rJG4IHzWf)
|r $ {} (:text |nil) (:type :leaf) (:at 1626631687932) (:by |rJG4IHzWf)
:type :expr
:at 1626631678723
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |remove-watch) (:type :leaf) (:at 1626681977446) (:by |rJG4IHzWf)
|j $ {} (:text |*reel) (:type :leaf) (:at 1626681979831) (:by |rJG4IHzWf)
|r $ {} (:text |:changes) (:type :leaf) (:at 1626681985759) (:by |rJG4IHzWf)
:type :expr
:at 1626681970488
:by |rJG4IHzWf
|w $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |reset!) (:time 1507461706990) (:type :leaf) (:id |r1ZgIcFvhWleaf)
|j $ {} (:author |root) (:text |*reel) (:time 1507461708965) (:type :leaf) (:id |B1mX85Yv3-)
|r $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |refresh-reel) (:time 1507461730190) (:type :leaf) (:id |HkIL9YDh-)
|j $ {} (:author |root) (:text |@*reel) (:time 1507461719097) (:type :leaf) (:id |B1nL9Yv3W)
|r $ {} (:author |root) (:text |schema/store) (:time 1507461721870) (:type :leaf) (:id |Bylwqtw3W)
|v $ {} (:author |root) (:text |updater) (:time 1507461722724) (:type :leaf) (:id |SkQfP9twhZ)
:time 1507461710020
:type :expr
:id |Sye88ctw2W
:time 1507461704162
:type :expr
:id |r1ZgIcFvhW
|y $ {}
:data $ {}
|T $ {} (:author |root) (:text |println) (:time 1499755354983) (:type :leaf) (:id |HyVosdFqaBb)
|j $ {} (:author |root) (:text "||Code updated.") (:time 1499755354983) (:type :leaf) (:at 1626631711420) (:by |rJG4IHzWf) (:id |BkHisOK5TSZ)
:time 1499755354983
:type :expr
:id |HJXoiuY9THb
:time 1499755354983
:type :expr
:id |Sk5qouK9aBZ
:type :expr
:at 1626631664674
:by |rJG4IHzWf
:type :expr
:at 1626631589257
:by |rJG4IHzWf
:proc $ {}
:data $ {}
:time 1499755354983
:type :expr
:id |SkGujdK5aSW
:ns $ {}
:data $ {}
|T $ {} (:author |root) (:text |ns) (:time 1499755354983) (:type :leaf) (:id |S1ESouY9pSW)
|j $ {} (:author |root) (:text |app.main) (:time 1499755354983) (:type :leaf) (:id |HJHriOFcTHZ)
|r $ {}
:data $ {}
|yyT $ {}
:data $ {}
|T $ {} (:text "|\"bottom-tip") (:type :leaf) (:at 1626631636868) (:by |rJG4IHzWf)
|j $ {} (:text |:default) (:type :leaf) (:at 1626631639012) (:by |rJG4IHzWf)
|r $ {} (:text |hud!) (:type :leaf) (:at 1626631641320) (:by |rJG4IHzWf)
:type :expr
:at 1626631635015
:by |rJG4IHzWf
|yyj $ {}
:data $ {}
|T $ {} (:text "|\"./calcit.build-errors") (:type :leaf) (:at 1626631650061) (:by |rJG4IHzWf)
|j $ {} (:text |:default) (:type :leaf) (:at 1626631656619) (:by |rJG4IHzWf)
|r $ {} (:text |build-errors) (:type :leaf) (:at 1626631660811) (:by |rJG4IHzWf)
:type :expr
:at 1626631642342
:by |rJG4IHzWf
|yT $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |HJ0DiuF5aSZ)
|j $ {} (:author |root) (:text |app.schema) (:time 1499755354983) (:type :leaf) (:id |rJJOoOY5pS-)
|r $ {} (:author |root) (:text |:as) (:time 1499755354983) (:type :leaf) (:id |rye_i_FqTBb)
|v $ {} (:author |root) (:text |schema) (:time 1499755354983) (:type :leaf) (:id |SJbujOK96rW)
:time 1499755354983
:type :expr
:id |BJawo_tcaHW
|yj $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1507399674614) (:type :leaf) (:id |Byez-dqLhbleaf)
|j $ {} (:author |root) (:text |reel.util) (:time 1507399678694) (:type :leaf) (:id |r1-XZO5LnW)
|r $ {} (:author |root) (:text |:refer) (:time 1507399680625) (:type :leaf) (:id |BkuW_qLnZ)
|v $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1507399681518) (:type :leaf) (:id |ByeF-uqI3W)
|j $ {} (:author |root) (:text |listen-devtools!) (:time 1507399682662) (:type :leaf) (:at 1518156292092) (:by |root) (:id |Syxc-_cI3b)
:time 1507399680857
:type :expr
:id |ByZK-uq83b
:time 1507399674125
:type :expr
:id |Byez-dqLhb
|yr $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1507399684313) (:type :leaf) (:id |HyxhW_582-leaf)
|j $ {} (:author |root) (:text |reel.core) (:time 1507399687162) (:type :leaf) (:id |rkT-OcUn-)
|r $ {} (:author |root) (:text |:refer) (:time 1507399688098) (:type :leaf) (:id |Bkr1MOqL2Z)
|v $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1507399688928) (:type :leaf) (:id |BkEgM_qU3W)
|j $ {} (:author |root) (:text |reel-updater) (:time 1507399691010) (:type :leaf) (:id |Bk--G_q8h-)
|q $ {} (:text |refresh-reel) (:type :leaf) (:at 1518156288482) (:by |root) (:id |By_Z935Uz)
:time 1507399688322
:type :expr
:id |BkHgM_q8hW
:time 1507399683930
:type :expr
:id |HyxhW_582-
|yv $ {} (:author |root)
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1507399715600) (:type :leaf) (:id |rJgi7OcU3Wleaf)
|j $ {} (:author |root) (:text |reel.schema) (:time 1507399717674) (:type :leaf) (:id |BybnXdcIhW)
|r $ {} (:author |root) (:text |:as) (:time 1507399755750) (:type :leaf) (:id |rJ-Cmu583Z)
|v $ {} (:author |root) (:text |reel-schema) (:time 1507399757678) (:type :leaf) (:id |Hk-NL_q8n-)
:time 1507399715229
:type :expr
:id |rJgi7OcU3W
|yx $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518157534486) (:by |root) (:id |HkZI1kT9LMleaf)
|j $ {} (:text |cljs.reader) (:type :leaf) (:at 1518157537473) (:by |root) (:id |Hyvk1T5Lz)
|r $ {} (:text |:refer) (:type :leaf) (:at 1518157538193) (:by |root) (:id |Hy5yy698G)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518157538636) (:by |root) (:id |B1Ucy1TcUG)
|j $ {} (:text |read-string) (:type :leaf) (:at 1518157540981) (:by |root) (:id |B1Zj1ypq8G)
:type :expr
:at 1518157538431
:by |root
:id |BJvckk6cLz
:type :expr
:at 1518157534012
:by |root
:id |HkZI1kT9LM
|yy $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1527788303612) (:by |root) (:id |SkewMXh6y7leaf)
|j $ {} (:text |app.config) (:type :leaf) (:at 1527788304925) (:by |root) (:id |SkbOz72T17)
|r $ {} (:text |:as) (:type :leaf) (:at 1527788306048) (:by |root) (:id |SJNYz7n6Jm)
|v $ {} (:text |config) (:type :leaf) (:at 1527788306884) (:by |root) (:id |ry7cM73ak7)
:type :expr
:at 1527788302920
:by |root
:id |SkewMXh6y7
|T $ {} (:author |root) (:text |:require) (:time 1499755354983) (:type :leaf) (:id |SkPHjOK96rZ)
|j $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |ByKHidF56r-)
|j $ {} (:author |root) (:text |respo.core) (:time 1499755354983) (:type :leaf) (:id |H15HidK9Tr-)
|r $ {} (:author |root) (:text |:refer) (:time 1499755354983) (:type :leaf) (:id |ByiSsOF9THZ)
|v $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |rJ6BiuF96BZ)
|j $ {} (:author |root) (:text |render!) (:time 1499755354983) (:type :leaf) (:id |rJAri_KcTS-)
|r $ {} (:author |root) (:text |clear-cache!) (:time 1499755354983) (:type :leaf) (:id |Hkk8sOFq6rb)
:time 1499755354983
:type :expr
:id |rJhBiuK5aHb
:time 1499755354983
:type :expr
:id |Hk_HouY9prW
|v $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |HkYUj_t9pBW)
|j $ {} (:author |root) (:text |app.comp.container) (:time 1499755354983) (:type :leaf) (:id |SyqIj_Y9aHZ)
|r $ {} (:author |root) (:text |:refer) (:time 1499755354983) (:type :leaf) (:id |BkoIjut9pHW)
|v $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |HkTLj_FcpBW)
|j $ {} (:author |root) (:text |comp-container) (:time 1499755354983) (:type :leaf) (:id |Hy0IidKqTr-)
:time 1499755354983
:type :expr
:id |Sy2IsOYqaSZ
:time 1499755354983
:type :expr
:id |Sy_IiOKqprZ
|y $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |ryDvs_K96rb)
|j $ {} (:author |root) (:text |app.updater) (:time 1508556737455) (:type :leaf) (:id |B1_vsuK96r-)
|r $ {} (:author |root) (:text |:refer) (:time 1499755354983) (:type :leaf) (:id |BJKvodKcTB-)
|v $ {}
:data $ {}
|T $ {} (:author |root) (:text |[]) (:time 1499755354983) (:type :leaf) (:id |HJjDjuFqpSb)
|j $ {} (:author |root) (:text |updater) (:time 1499755354983) (:type :leaf) (:id |SJhwiOY5TB-)
:time 1499755354983
:type :expr
:id |Hy5woOKqTHb
:time 1499755354983
:type :expr
:id |SyLDodYcTS-
:time 1499755354983
:type :expr
:id |BJ8SodF9prb
:time 1499755354983
:type :expr
:id |rkQBo_Yc6Hb
|app.test $ {}
:defs $ {}
|*log-result $ {}
:data $ {}
|T $ {} (:text |defatom) (:type :leaf) (:at 1626627690898) (:by |rJG4IHzWf)
|j $ {} (:text |*log-result) (:type :leaf) (:at 1626627686724) (:by |rJG4IHzWf)
|r $ {} (:text "|\"") (:type :leaf) (:at 1626627689609) (:by |rJG4IHzWf)
:type :expr
:at 1626627678947
:by |rJG4IHzWf
|run-tests! $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |test-if) (:type :leaf) (:at 1626627228895) (:by |rJG4IHzWf)
:type :expr
:at 1626627200745
:by |rJG4IHzWf
|yj $ {}
:data $ {}
|T $ {} (:text |test-list) (:type :leaf) (:at 1626627231739) (:by |rJG4IHzWf)
:type :expr
:at 1626627230165
:by |rJG4IHzWf
|yr $ {}
:data $ {}
|T $ {} (:text |test-math) (:type :leaf) (:at 1626627236110) (:by |rJG4IHzWf)
:type :expr
:at 1626627233681
:by |rJG4IHzWf
|yv $ {}
:data $ {}
|T $ {} (:text |test-native-api) (:type :leaf) (:at 1626627244380) (:by |rJG4IHzWf)
:type :expr
:at 1626627240911
:by |rJG4IHzWf
|yx $ {}
:data $ {}
|T $ {} (:text |test-variables) (:type :leaf) (:at 1626627252723) (:by |rJG4IHzWf)
:type :expr
:at 1626627250101
:by |rJG4IHzWf
|T $ {} (:text |defn) (:type :leaf) (:at 1626627153292) (:by |rJG4IHzWf)
|j $ {} (:text |run-tests!) (:type :leaf) (:at 1626627153292) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
:type :expr
:at 1626627153292
:by |rJG4IHzWf
|t $ {}
:data $ {}
|T $ {} (:text |reset!) (:type :leaf) (:at 1626699713236) (:by |rJG4IHzWf)
|j $ {} (:text |*quit-on-failure?) (:type :leaf) (:at 1626699747234) (:by |rJG4IHzWf)
|r $ {} (:text |true) (:type :leaf) (:at 1626699718670) (:by |rJG4IHzWf)
:type :expr
:at 1626699711400
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |test-fibo) (:type :leaf) (:at 1626627198864) (:by |rJG4IHzWf)
:type :expr
:at 1626627195539
:by |rJG4IHzWf
|x $ {}
:data $ {}
|T $ {} (:text |test-data) (:type :leaf) (:at 1626627203490) (:by |rJG4IHzWf)
:type :expr
:at 1626627200745
:by |rJG4IHzWf
|y $ {}
:data $ {}
|T $ {} (:text |test-fn) (:type :leaf) (:at 1626627226304) (:by |rJG4IHzWf)
:type :expr
:at 1626627200745
:by |rJG4IHzWf
:type :expr
:at 1626627153292
:by |rJG4IHzWf
|test-data $ {}
:data $ {}
|T $ {} (:text |deftest) (:type :leaf) (:at 1577895197063) (:by |rJG4IHzWf) (:id |QUU39LhfN)
|j $ {} (:text |test-data) (:type :leaf) (:at 1577893542185) (:by |rJG4IHzWf) (:id |qWNcKRT25)
|r $ {}
:data $ {}
|T $ {} (:text |testing) (:type :leaf) (:at 1577895139616) (:by |rJG4IHzWf) (:id |JdxI_vWaz)
|j $ {} (:text "|\"聚物于列于置") (:type :leaf) (:at 1577895162988) (:by |rJG4IHzWf) (:id |7Yk1EGQVN)
|r $ {}
:data $ {}
|T $ {} (:text |is) (:type :leaf) (:at 1577895139616) (:by |rJG4IHzWf) (:id |u0VDsi55u)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1577895139616) (:by |rJG4IHzWf) (:id |QM8ExptfF)
|j $ {}
:data $ {}
|T $ {} (:text |load-log) (:type :leaf) (:at 1577895139616) (:by |rJG4IHzWf) (:id |6yQWHrX9A)
|j $ {} (:text "|\"data.log") (:type :leaf) (:at 1577895328392) (:by |rJG4IHzWf) (:id |H88C1DZ47)
:type :expr
:at 1577895139616
:by |rJG4IHzWf
:id |NaZAlhkO8
|r $ {}
:data $ {}
|T $ {} (:text |eval-out) (:type :leaf) (:at 1577895139616) (:by |rJG4IHzWf) (:id |UHdbqKKqZ)
|j $ {} (:text "|\"data.cirru") (:type :leaf) (:at 1577895330401) (:by |rJG4IHzWf) (:id |fVR6SofZO)
:type :expr
:at 1577895139616
:by |rJG4IHzWf
:id |rfYgfDN0M
:type :expr
:at 1577895139616
:by |rJG4IHzWf
:id |SmTu5dtBJ
:type :expr
:at 1577895139616
:by |rJG4IHzWf
:id |wRHOgdbET
:type :expr
:at 1577895139616
:by |rJG4IHzWf
:id |N6GzTec9_
:type :expr
:at 1577893542185
:by |rJG4IHzWf
:id |SejtD2sq6
|test-fibo $ {}
:data $ {}
|T $ {} (:text |deftest) (:type :leaf) (:at 1578245206401) (:by |rJG4IHzWf) (:id |U-Y_pJsdr)
|j $ {} (:text |test-fibo) (:type :leaf) (:at 1578245197585) (:by |rJG4IHzWf) (:id |Gbdk1pbrA)
|r $ {}
:data $ {}
|T $ {} (:text |testing) (:type :leaf) (:at 1578245201297) (:by |rJG4IHzWf) (:id |COM6ogWJR)
|j $ {} (:text "|\"菲氏数也") (:type :leaf) (:at 1578245211159) (:by |rJG4IHzWf) (:id |BUZXCx6GL)
|r $ {}
:data $ {}
|T $ {} (:text |is) (:type :leaf) (:at 1578245201297) (:by |rJG4IHzWf) (:id |sijM5CdHK)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578245201297) (:by |rJG4IHzWf) (:id |BOVzBZwUq)
|j $ {}
:data $ {}
|T $ {} (:text |load-log) (:type :leaf) (:at 1578245201297) (:by |rJG4IHzWf) (:id |aNE0_rYbs)
|j $ {} (:text "|\"fibo.log") (:type :leaf) (:at 1578245214085) (:by |rJG4IHzWf) (:id |9ZmaC8qaE)
:type :expr
:at 1578245201297
:by |rJG4IHzWf
:id |AgJhmTkPE
|r $ {}
:data $ {}
|T $ {} (:text |eval-out) (:type :leaf) (:at 1578245201297) (:by |rJG4IHzWf) (:id |FVhNIWki1J)
|j $ {} (:text "|\"fibo.cirru") (:type :leaf) (:at 1578245215704) (:by |rJG4IHzWf) (:id |knXtoEjwj9)
:type :expr
:at 1578245201297
:by |rJG4IHzWf
:id |wiiTyjLuB
:type :expr
:at 1578245201297
:by |rJG4IHzWf
:id |LQZKymvsK
:type :expr
:at 1578245201297
:by |rJG4IHzWf
:id |DcbUP_2Yj
:type :expr
:at 1578245201297
:by |rJG4IHzWf
:id |l_LCfk1AV
:type :expr
:at 1578245197585
:by |rJG4IHzWf
:id |LNj6wJTUU
|test-list $ {}
:data $ {}
|T $ {} (:text |deftest) (:type :leaf) (:at 1578328376774) (:by |rJG4IHzWf) (:id |fwy6iZW3i)
|j $ {} (:text |test-list) (:type :leaf) (:at 1578328365784) (:by |rJG4IHzWf) (:id |74Oc-ZkQ1)
|r $ {}
:data $ {}
|T $ {} (:text |testing) (:type :leaf) (:at 1578328374098) (:by |rJG4IHzWf) (:id |RCu7tXQAJ)
|j $ {} (:text "|\"取数于列") (:type :leaf) (:at 1578328393326) (:by |rJG4IHzWf) (:id |2eqascmo8)
|r $ {}
:data $ {}
|T $ {} (:text |is) (:type :leaf) (:at 1578328374098) (:by |rJG4IHzWf) (:id |ErTkBkvZc)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1578328374098) (:by |rJG4IHzWf) (:id |Jrg-T4ZV0)
|j $ {}
:data $ {}
|T $ {} (:text |load-log) (:type :leaf) (:at 1578328374098) (:by |rJG4IHzWf) (:id |fmWyk0WFp)
|j $ {} (:text "|\"list.log") (:type :leaf) (:at 1578328396393) (:by |rJG4IHzWf) (:id |05BZsbd6t)
:type :expr
:at 1578328374098
:by |rJG4IHzWf
:id |AfiC62qSU
|r $ {}
:data $ {}
|T $ {} (:text |eval-out) (:type :leaf) (:at 1578328374098) (:by |rJG4IHzWf) (:id |F5sMAiCeN)
|j $ {} (:text "|\"list.cirru") (:type :leaf) (:at 1578328398024) (:by |rJG4IHzWf) (:id |BsfNLiwz7a)
:type :expr
:at 1578328374098
:by |rJG4IHzWf
:id |DUYyOsiWT
:type :expr
:at 1578328374098
:by |rJG4IHzWf
:id |U6sEPJh-M
:type :expr
:at 1578328374098
:by |rJG4IHzWf
:id |YlZ881E7I
:type :expr
:at 1578328374098
:by |rJG4IHzWf
:id |7QY7V3QT-
:type :expr
:at 1578328365784
:by |rJG4IHzWf
:id |Y9CE7sGcq
|test-math $ {}
:data $ {}
|T $ {} (:text |deftest) (:type :leaf) (:at 1577895317205) (:by |rJG4IHzWf) (:id |JupFckb_Z)
|j $ {} (:text |test-math) (:type :leaf) (:at 1577893530655) (:by |rJG4IHzWf) (:id |9ZeSD9808)
|r $ {}
:data $ {}
|T $ {} (:text |testing) (:type :leaf) (:at 1577895313336) (:by |rJG4IHzWf) (:id |07AiRjW2n)
|j $ {} (:text "|\"算术") (:type :leaf) (:at 1577895324578) (:by |rJG4IHzWf) (:id |EbRET1UX2)
|r $ {}
:data $ {}
|T $ {} (:text |is) (:type :leaf) (:at 1577895313336) (:by |rJG4IHzWf) (:id |OCGb2zM5i)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1577895313336) (:by |rJG4IHzWf) (:id |EsbhI0qnS)
|j $ {}
:data $ {}
|T $ {} (:text |load-log) (:type :leaf) (:at 1577895313336) (:by |rJG4IHzWf) (:id |IS027wq1n)
|j $ {} (:text "|\"variables.log") (:type :leaf) (:at 1577895313336) (:by |rJG4IHzWf) (:id |_XW1b7cPn)
:type :expr
:at 1577895313336
:by |rJG4IHzWf
:id |xZdAhUBnu
|r $ {}
:data $ {}
|T $ {} (:text |eval-out) (:type :leaf) (:at 1577895313336) (:by |rJG4IHzWf) (:id |023DpsPH-)
|j $ {} (:text "|\"variables.cirru") (:type :leaf) (:at 1577895313336) (:by |rJG4IHzWf) (:id |Y4XfAcZux)
:type :expr
:at 1577895313336
:by |rJG4IHzWf
:id |DUn0yrWl3
:type :expr
:at 1577895313336
:by |rJG4IHzWf
:id |7vxIMS78s
:type :expr
:at 1577895313336
:by |rJG4IHzWf
:id |5CmWfSSdW
:type :expr
:at 1577895313336
:by |rJG4IHzWf
:id |9AZgFlHqA
:type :expr
:at 1577893530655
:by |rJG4IHzWf
:id |xh2b1BOff
|main! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1626627143454) (:by |rJG4IHzWf)
|j $ {} (:text |main!) (:type :leaf) (:at 1626627148767) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
:type :expr
:at 1626627143454
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |run-tests!) (:type :leaf) (:at 1626627152599) (:by |rJG4IHzWf)
:type :expr
:at 1626627150620
:by |rJG4IHzWf
:type :expr
:at 1626627143454
:by |rJG4IHzWf
|test-fn $ {}
:data $ {}
|T $ {} (:text |deftest) (:type :leaf) (:at 1577895519757) (:by |rJG4IHzWf) (:id |8lGdOJRjw)
|j $ {} (:text |test-fn) (:type :leaf) (:at 1577893537615) (:by |rJG4IHzWf) (:id |ef_CGQvfD)
|r $ {}
:data $ {}
|T $ {} (:text |testing) (:type :leaf) (:at 1577895517639) (:by |rJG4IHzWf) (:id |YLpDO5R1a)
|j $ {} (:text "|\"函数") (:type :leaf) (:at 1577895523998) (:by |rJG4IHzWf) (:id |NuNtqxu7Q)
|r $ {}
:data $ {}
|T $ {} (:text |is) (:type :leaf) (:at 1577895517639) (:by |rJG4IHzWf) (:id |0awaheK9P)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1577895517639) (:by |rJG4IHzWf) (:id |lbgPAYUw7)
|j $ {}
:data $ {}
|T $ {} (:text |load-log) (:type :leaf) (:at 1577895517639) (:by |rJG4IHzWf) (:id |CEhIteUEi)
|j $ {} (:text "|\"fn.log") (:type :leaf) (:at 1577895548530) (:by |rJG4IHzWf) (:id |Z-4w2tzNo)
:type :expr
:at 1577895517639
:by |rJG4IHzWf
:id |qcP_5YBbj
|r $ {}
:data $ {}
|T $ {} (:text |eval-out) (:type :leaf) (:at 1577895517639) (:by |rJG4IHzWf) (:id |kQoHHCPXj)
|j $ {} (:text "|\"fn.cirru") (:type :leaf) (:at 1577895528716) (:by |rJG4IHzWf) (:id |NuTa0Ayk2)
:type :expr
:at 1577895517639
:by |rJG4IHzWf
:id |thrZrib85
:type :expr
:at 1577895517639
:by |rJG4IHzWf
:id |sLyykcmNP
:type :expr
:at 1577895517639
:by |rJG4IHzWf
:id |lq2gWndfM
:type :expr
:at 1577895517639
:by |rJG4IHzWf
:id |PoaorjL1k
:type :expr
:at 1577893537615
:by |rJG4IHzWf
:id |qI3E8MkRF
|test-if $ {}
:data $ {}
|T $ {} (:text |deftest) (:type :leaf) (:at 1577898180022) (:by |rJG4IHzWf) (:id |plfdxzLdc)
|j $ {} (:text |test-if) (:type :leaf) (:at 1577898161157) (:by |rJG4IHzWf) (:id |O2TZnogQn)
|r $ {}
:data $ {}
|T $ {} (:text |testing) (:type :leaf) (:at 1577898182326) (:by |rJG4IHzWf) (:id |UrlBjOViy)
|j $ {} (:text "|\"若判断语句") (:type :leaf) (:at 1577898199240) (:by |rJG4IHzWf) (:id |g4OREGgUj)
|r $ {}
:data $ {}
|T $ {} (:text |is) (:type :leaf) (:at 1577898182326) (:by |rJG4IHzWf) (:id |-sOPVLiay)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1577898182326) (:by |rJG4IHzWf) (:id |ogPPpIcoS)
|j $ {}
:data $ {}
|T $ {} (:text |load-log) (:type :leaf) (:at 1577898182326) (:by |rJG4IHzWf) (:id |bVFfC1CTY)
|j $ {} (:text "|\"if.log") (:type :leaf) (:at 1577898204692) (:by |rJG4IHzWf) (:id |c8fDdRS68)
:type :expr
:at 1577898182326
:by |rJG4IHzWf
:id |7mlS-MlPf
|r $ {}
:data $ {}
|T $ {} (:text |eval-out) (:type :leaf) (:at 1577898182326) (:by |rJG4IHzWf) (:id |JnmOGCjIq)
|j $ {} (:text "|\"if.cirru") (:type :leaf) (:at 1577898206328) (:by |rJG4IHzWf) (:id |gXXVresYN)
:type :expr
:at 1577898182326
:by |rJG4IHzWf
:id |hHBZDESXz
:type :expr
:at 1577898182326
:by |rJG4IHzWf
:id |WE2YuEdW_
:type :expr
:at 1577898182326
:by |rJG4IHzWf
:id |eA7LLskJp
:type :expr
:at 1577898182326
:by |rJG4IHzWf
:id |oHHFnMbX1
:type :expr
:at 1577898161157
:by |rJG4IHzWf
:id |0K5yRKQGR
|test-variables $ {}
:data $ {}
|T $ {} (:text |deftest) (:type :leaf) (:at 1577893610836) (:by |rJG4IHzWf) (:id |yhfTl-_Fz)
|j $ {} (:text |test-variables) (:type :leaf) (:at 1577893524771) (:by |rJG4IHzWf) (:id |MGh1l-l32)
|r $ {}
:data $ {}
|T $ {} (:text |testing) (:type :leaf) (:at 1577893616774) (:by |rJG4IHzWf) (:id |Rk1EembIM)
|j $ {} (:text "|\"数有其名也") (:type :leaf) (:at 1577895183706) (:by |rJG4IHzWf) (:id |-1DHKKrS)
|r $ {}
:data $ {}
|T $ {} (:text |is) (:type :leaf) (:at 1577893639959) (:by |rJG4IHzWf) (:id |fCZs_-jI)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1577893641870) (:by |rJG4IHzWf) (:id |97p4F3lg)
|j $ {}
:data $ {}
|T $ {} (:text |load-log) (:type :leaf) (:at 1577893662442) (:by |rJG4IHzWf) (:id |pord1UrQj)
|j $ {} (:text "|\"math.log") (:type :leaf) (:at 1577895335366) (:by |rJG4IHzWf) (:id |xVZNQOvP)
:type :expr
:at 1577893643887
:by |rJG4IHzWf
:id |J4qtwosA
|r $ {}
:data $ {}
|T $ {} (:text |eval-out) (:type :leaf) (:at 1577893678986) (:by |rJG4IHzWf) (:id |4IE2fnAUXleaf)
|j $ {} (:text "|\"math.cirru") (:type :leaf) (:at 1577895337818) (:by |rJG4IHzWf) (:id |q5PH3kBx)
:type :expr
:at 1577893667697
:by |rJG4IHzWf
:id |4IE2fnAUX
:type :expr
:at 1577893640989
:by |rJG4IHzWf
:id |eOowKXWNs
:type :expr
:at 1577893634773
:by |rJG4IHzWf
:id |hnKunWOpT
:type :expr
:at 1577893524771
:by |rJG4IHzWf
:id |fDywcGzu4
:type :expr
:at 1577893524771
:by |rJG4IHzWf
:id |iySnQW5TO
|eval-out $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577893736600) (:by |rJG4IHzWf) (:id |QBV9Tcoxz)
|j $ {} (:text |eval-out) (:type :leaf) (:at 1577893736600) (:by |rJG4IHzWf) (:id |2HYA7kRqD)
|r $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1577893738305) (:by |rJG4IHzWf) (:id |Rsz3loePf)
:type :expr
:at 1577893736600
:by |rJG4IHzWf
:id |M9E360jjv
|x $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1626697517781) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |source) (:type :leaf) (:at 1626697519209) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |fs/readFileSync) (:type :leaf) (:at 1626697528290) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |path/join) (:type :leaf) (:at 1626697533579) (:by |rJG4IHzWf)
|j $ {} (:text |js/__dirname) (:type :leaf) (:at 1626697537817) (:by |rJG4IHzWf)
|r $ {} (:text "|\"../tests") (:type :leaf) (:at 1626697580351) (:by |rJG4IHzWf)
|v $ {} (:text |x) (:type :leaf) (:at 1626697548577) (:by |rJG4IHzWf)
:type :expr
:at 1626697529165
:by |rJG4IHzWf
|r $ {} (:text "|\"utf8") (:type :leaf) (:at 1626697561558) (:by |rJG4IHzWf)
:type :expr
:at 1626697519472
:by |rJG4IHzWf
:type :expr
:at 1626697518177
:by |rJG4IHzWf
:type :expr
:at 1626697518038
:by |rJG4IHzWf
|T $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1626697473616) (:by |rJG4IHzWf)
|L $ {}
:data $ {}
|T $ {} (:text |ret) (:type :leaf) (:at 1626697477433) (:by |rJG4IHzWf)
|j $ {} (:text |logs) (:type :leaf) (:at 1626697478416) (:by |rJG4IHzWf)
:type :expr
:at 1626697476533
:by |rJG4IHzWf
|T $ {}
:data $ {}
|T $ {} (:text |run-program) (:type :leaf) (:at 1577893826578) (:by |rJG4IHzWf) (:id |CNueH5Frd)
|f $ {} (:text |source) (:type :leaf) (:at 1577893831367) (:by |rJG4IHzWf) (:id |2QDB5Iak5)
:type :expr
:at 1577893826578
:by |rJG4IHzWf
:id |fNP7L6ODi
|j $ {}
:data $ {}
|T $ {} (:text |.trim) (:type :leaf) (:at 1626697482590) (:by |rJG4IHzWf)
|j $ {} (:text |logs) (:type :leaf) (:at 1626697485088) (:by |rJG4IHzWf)
:type :expr
:at 1626697482590
:by |rJG4IHzWf
:type :expr
:at 1626697471029
:by |rJG4IHzWf
:type :expr
:at 1626697517181
:by |rJG4IHzWf
:type :expr
:at 1577893736600
:by |rJG4IHzWf
:id |dhryPANrm
|test-native-api $ {}
:data $ {}
|T $ {} (:text |deftest) (:type :leaf) (:at 1585673236974) (:by |rJG4IHzWf) (:id |ErJe3bWqmp)
|j $ {} (:text |test-native-api) (:type :leaf) (:at 1585673230924) (:by |rJG4IHzWf) (:id |qJiyV_Xscc)
|r $ {}
:data $ {}
|T $ {} (:text |testing) (:type :leaf) (:at 1585673234487) (:by |rJG4IHzWf) (:id |yimh5T-Ry2)
|j $ {} (:text "|\"用平台之函数") (:type :leaf) (:at 1585673249711) (:by |rJG4IHzWf) (:id |rd3GB4JhII)
|r $ {}
:data $ {}
|T $ {} (:text |is) (:type :leaf) (:at 1585673234487) (:by |rJG4IHzWf) (:id |g8hMCaAb9U)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1585673234487) (:by |rJG4IHzWf) (:id |Wy2kTMmD5q)
|j $ {}
:data $ {}
|T $ {} (:text |load-log) (:type :leaf) (:at 1585673234487) (:by |rJG4IHzWf) (:id |noGIyYMCQk)
|j $ {} (:text "|\"native-api.log") (:type :leaf) (:at 1585673253111) (:by |rJG4IHzWf) (:id |zIWqbgyoyi)
:type :expr
:at 1585673234487
:by |rJG4IHzWf
:id |6Uai5r93dz
|r $ {}
:data $ {}
|T $ {} (:text |eval-out) (:type :leaf) (:at 1585673234487) (:by |rJG4IHzWf) (:id |pZ55yrgGUN5)
|j $ {} (:text "|\"native-api.cirru") (:type :leaf) (:at 1585673256221) (:by |rJG4IHzWf) (:id |9TnobJXI4Z-)
:type :expr
:at 1585673234487
:by |rJG4IHzWf
:id |79ZP2kbaBd
:type :expr
:at 1585673234487
:by |rJG4IHzWf
:id |n_BnqwrdF9
:type :expr
:at 1585673234487
:by |rJG4IHzWf
:id |b5VLxdVjz8
:type :expr
:at 1585673234487
:by |rJG4IHzWf
:id |7hPp3I0ZiS
:type :expr
:at 1585673230924
:by |rJG4IHzWf
:id |qcXN_rcjEO
|load-log $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1577893688294) (:by |rJG4IHzWf) (:id |YM2TPc1HI)
|j $ {} (:text |load-log) (:type :leaf) (:at 1577893686428) (:by |rJG4IHzWf) (:id |xiPnNNa-I)
|r $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1577893689815) (:by |rJG4IHzWf) (:id |FH59wgEDw)
:type :expr
:at 1577893686428
:by |rJG4IHzWf
:id |YqIram8M7
|v $ {}
:data $ {}
|D $ {} (:text |.trim) (:type :leaf) (:at 1626627428879) (:by |rJG4IHzWf) (:id |2_nA8TEci)
|T $ {}
:data $ {}
|T $ {} (:text |fs/readFileSync) (:type :leaf) (:at 1577893702413) (:by |rJG4IHzWf) (:id |UOyMeZM8_leaf)
|j $ {}
:data $ {}
|D $ {} (:text |path/join) (:type :leaf) (:at 1577893715718) (:by |rJG4IHzWf) (:id |z6Ze0O2K)
|L $ {} (:text |js/__dirname) (:type :leaf) (:at 1577893721963) (:by |rJG4IHzWf) (:id |hELIEBRE)
|P $ {} (:text "|\"../tests") (:type :leaf) (:at 1577893730173) (:by |rJG4IHzWf) (:id |7VjGkKrN)
|T $ {} (:text |x) (:type :leaf) (:at 1577893703006) (:by |rJG4IHzWf) (:id |sWQG4pgDb)
:type :expr
:at 1577893712800
:by |rJG4IHzWf
:id |Vm-gURuwJ
|r $ {} (:text "|\"utf8") (:type :leaf) (:at 1577893705685) (:by |rJG4IHzWf) (:id |Rgg7-N2k)
:type :expr
:at 1577893691341
:by |rJG4IHzWf
:id |UOyMeZM8_
:type :expr
:at 1577894387453
:by |rJG4IHzWf
:id |_mJhhmn57
:type :expr
:at 1577893686428
:by |rJG4IHzWf
:id |GyJtMusIe
|reload! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1626627158645) (:by |rJG4IHzWf)
|j $ {} (:text |reload!) (:type :leaf) (:at 1626627158645) (:by |rJG4IHzWf)
|r $ {}
:data $ {}
:type :expr
:at 1626627158645
:by |rJG4IHzWf
|t $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1626627181275) (:by |rJG4IHzWf)
|j $ {} (:text "|\"Reloaded") (:type :leaf) (:at 1626627183322) (:by |rJG4IHzWf)
:type :expr
:at 1626627180326
:by |rJG4IHzWf
|v $ {}
:data $ {}
|T $ {} (:text |run-tests!) (:type :leaf) (:at 1626627174729) (:by |rJG4IHzWf)
:type :expr
:at 1626627165983
:by |rJG4IHzWf
:type :expr
:at 1626627158645
:by |rJG4IHzWf
:proc $ {}
:data $ {}
:type :expr
:at 1577893414282
:by |rJG4IHzWf
:id |PthrgV1OR
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1577893414282) (:by |rJG4IHzWf) (:id |2T3xPzwTc)
|j $ {} (:text |app.test) (:type :leaf) (:at 1577893414282) (:by |rJG4IHzWf) (:id |2LeOmHKc8)
|r $ {}
:data $ {}
|T $ {} (:text |:require) (:type :leaf) (:at 1577893548906) (:by |rJG4IHzWf) (:id |FqmyF7kV)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577893549907) (:by |rJG4IHzWf) (:id |kyVrGlAp8)
|j $ {} (:text |calcit-test.core) (:type :leaf) (:at 1626627409393) (:by |rJG4IHzWf) (:id |O3kcj2A2)
|r $ {} (:text |:refer) (:type :leaf) (:at 1577893557278) (:by |rJG4IHzWf) (:id |MwbPQWdbU)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577893557618) (:by |rJG4IHzWf) (:id |IaEhHJ8bV)
|j $ {} (:text |deftest) (:type :leaf) (:at 1577893560058) (:by |rJG4IHzWf) (:id |uYeR7UYRb)
|r $ {} (:text |is) (:type :leaf) (:at 1577893560373) (:by |rJG4IHzWf) (:id |-xR4LRR4)
|v $ {} (:text |testing) (:type :leaf) (:at 1577893561913) (:by |rJG4IHzWf) (:id |O4f0AlVHj)
|x $ {} (:text |run-tests) (:type :leaf) (:at 1577893564444) (:by |rJG4IHzWf) (:id |XOiR8N5RR)
|y $ {} (:text |*quit-on-failure?) (:type :leaf) (:at 1626699745238) (:by |rJG4IHzWf)
:type :expr
:at 1577893557468
:by |rJG4IHzWf
:id |ICxyaECo-
:type :expr
:at 1577893549085
:by |rJG4IHzWf
:id |RE8lIV1w
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577893566175) (:by |rJG4IHzWf) (:id |1Bt9d8PLzleaf)
|j $ {} (:text "|\"fs") (:type :leaf) (:at 1577893569363) (:by |rJG4IHzWf) (:id |VhOF3ebOJ)
|r $ {} (:text |:as) (:type :leaf) (:at 1577893571356) (:by |rJG4IHzWf) (:id |T6UWyzqz6)
|v $ {} (:text |fs) (:type :leaf) (:at 1577893572229) (:by |rJG4IHzWf) (:id |hoQLyl8OH)
:type :expr
:at 1577893565850
:by |rJG4IHzWf
:id |1Bt9d8PLz
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577893575386) (:by |rJG4IHzWf) (:id |mkOt65GJleaf)
|j $ {} (:text "|\"path") (:type :leaf) (:at 1577893577102) (:by |rJG4IHzWf) (:id |jA8QvGnU1)
|r $ {} (:text |:as) (:type :leaf) (:at 1577893580452) (:by |rJG4IHzWf) (:id |FS6aSg_Bu)
|v $ {} (:text |path) (:type :leaf) (:at 1577893580987) (:by |rJG4IHzWf) (:id |5jvZHiyZF)
:type :expr
:at 1577893575070
:by |rJG4IHzWf
:id |mkOt65GJ
|x $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577893583393) (:by |rJG4IHzWf) (:id |8T9iAooTleaf)
|j $ {} (:text |app.program) (:type :leaf) (:at 1577893585719) (:by |rJG4IHzWf) (:id |s3Zi5NeQH)
|r $ {} (:text |:refer) (:type :leaf) (:at 1577893588822) (:by |rJG4IHzWf) (:id |4TngKj-u)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1577893590650) (:by |rJG4IHzWf) (:id |JrIXHzSRK)
|j $ {} (:text |run-program) (:type :leaf) (:at 1577893592684) (:by |rJG4IHzWf) (:id |wA-mhoCXa)
:type :expr
:at 1577893588994
:by |rJG4IHzWf
:id |U2IS14u55
:type :expr
:at 1577893583113
:by |rJG4IHzWf
:id |8T9iAooT
:type :expr
:at 1577893547306
:by |rJG4IHzWf
:id |QmOO0mwaB
:type :expr
:at 1577893414282
:by |rJG4IHzWf
:id |iZh-X9jiY
|app.config $ {}
:defs $ {}
|dev? $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1544873875614) (:by |rJG4IHzWf) (:id |YFw1U8z4Tf)
|j $ {} (:text |dev?) (:type :leaf) (:at 1544873875614) (:by |rJG4IHzWf) (:id |aWMTO74W56)
|r $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1626545456563) (:by |rJG4IHzWf)
|b $ {} (:text "|\"dev") (:type :leaf) (:at 1626545470319) (:by |rJG4IHzWf)
|j $ {}
:data $ {}
|T $ {} (:text |get-env) (:type :leaf) (:at 1626545520643) (:by |rJG4IHzWf)
|j $ {} (:text "|\"mode") (:type :leaf) (:at 1626545474985) (:by |rJG4IHzWf)
:type :expr
:at 1626545464636
:by |rJG4IHzWf
:type :expr
:at 1626545456417
:by |rJG4IHzWf
:type :expr
:at 1544873875614
:by |rJG4IHzWf
:id |soffpzT3iV
|site $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1518157345496) (:by |root) (:id |Hy-Of025IG)
|j $ {} (:text |site) (:type :leaf) (:at 1518157327696) (:by |root) (:id |SyfufCnc8G)
|r $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |:icon) (:type :leaf) (:at 1527868458476) (:by |root) (:id |HJxzN3kyxmleaf)
|j $ {} (:text "|\"http://cdn.tiye.me/logo/cirru.png") (:type :leaf) (:at 1578128529553) (:by |rJG4IHzWf) (:id |rJeUB2k1xQ)
:type :expr
:at 1527868457696
:by |root
:id |HJxzN3kyxm
|yf $ {}
:data $ {}
|T $ {} (:text |:storage-key) (:type :leaf) (:at 1544956719115) (:by |rJG4IHzWf) (:id |uzAHSBrxME)
|j $ {} (:text "|\"jiuzhang") (:type :leaf) (:at 1578208127101) (:by |rJG4IHzWf) (:id |3M_DNn-aUN)
:type :expr
:at 1544956719115
:by |rJG4IHzWf
:id |E81qVD65QI
|T $ {} (:text |{}) (:type :leaf) (:at 1518157346643) (:by |root) (:id |HyZ5XCh58M)
|r $ {}
:data $ {}
|T $ {} (:text |:dev-ui) (:type :leaf) (:at 1527526864597) (:by |root) (:id |HkeSAB3K1Xleaf)
|x $ {} (:text "|\"http://localhost:8100/main-fonts.css") (:type :leaf) (:at 1556700447561) (:by |rJG4IHzWf) (:id |GHE5A-5h_P)
:type :expr
:at 1527526861413
:by |root
:id |HkeSAB3K1X
|v $ {}
:data $ {}
|T $ {} (:text |:release-ui) (:type :leaf) (:at 1527526868617) (:by |root) (:id |rygq0H3YJmleaf)
|j $ {} (:text "|\"http://cdn.tiye.me/favored-fonts/main-fonts.css") (:type :leaf) (:at 1556700443008) (:by |rJG4IHzWf) (:id |HklT1LntyQ)
:type :expr
:at 1527526865931
:by |root
:id |rygq0H3YJm
|y $ {}
:data $ {}
|T $ {} (:text |:title) (:type :leaf) (:at 1527868457305) (:by |root) (:id |HJlgNn11gmleaf)
|j $ {} (:text "|\"九章编程") (:type :leaf) (:at 1578208128198) (:by |rJG4IHzWf) (:id |S1eWS2JJlm)
:type :expr
:at 1527868456422
:by |root
:id |HJlgNn11gm
:type :expr
:at 1518157327696
:by |root
:id |Hy7OfCnqUG
:type :expr
:at 1545933382603
:by |root
:id |i6pfoMgwq
:proc $ {}
:data $ {}
:type :expr
:at 1527788237503
:by |root
:id |Hk7B0z3pJX
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1527788237503) (:by |root) (:id |SkZHRz3TJ7)
|j $ {} (:text |app.config) (:type :leaf) (:at 1527788237503) (:by |root) (:id |HJzrRGhp1X)
:type :expr
:at 1527788237503
:by |root
:id |BJlrAf2TyX
:users $ {}
|root $ {} (:avatar nil) (:name |root) (:nickname |root) (:id |root) (:theme :star-trail) (:password |d41d8cd98f00b204e9800998ecf8427e)
|rJG4IHzWf $ {} (:avatar nil) (:name |chen) (:nickname |chen) (:id |rJG4IHzWf) (:theme :star-trail) (:password |d41d8cd98f00b204e9800998ecf8427e)
| Cirru | 2 | Cirru/jiuzhang-lang | calcit.cirru | [
"MIT"
] |
#include "script_component.hpp"
/*
Name: TFAR_fnc_getTeamSpeakChannelName
Author: NKey
Returns TeamSpeak channel name.
Arguments:
None
Return Value:
name of the channel <STRING>
Example:
call TFAR_fnc_getTeamSpeakChannelName;
Public: Yes
*/
"task_force_radio_pipe" callExtension "TS_INFO CHANNEL"
| SQF | 4 | MrDj200/task-force-arma-3-radio | addons/core/functions/plugin/fnc_getTeamSpeakChannelName.sqf | [
"RSA-MD"
] |
-- demo
define a (read cd) $ if (> a cd)
print demo
print "not demo"
say $ print a $ save $ b $ x $ c 8
print fun
-- test on folding
a $
b $ c
d $ e $ f
g $ h $ i j $ k $
-- test on comma
print (, a)
a
, b
, c (, d)
-- test on HTML
doctype
html
head
title $ = Cirru
script (:defer) $ :src build/build.js
link (:rel stylesheet) $ :href css/page.css
link (:rel icon)
:href http://logo.cirru.org/cirru-32x32.png?v=3
body
textarea.demo.source $ :placeholder "Source Code"
textarea.demo.target $ :placeholder "Compiled Data"
@insert ../html/ga.html
-- test on indentation
a $ b $ c
e f
(g)
h
-- test on parentheses
3 4 (1) 4
((((1))))
x
-- test on quotes
a b c d
"a b c d"
"a b \" c d"
"a b" "c d"
-- test on unfolding
set
add 1 $
, x y
add 5 $
add 2
-- test on HTML attributes
div
div
:class a
div
:class a b c d
div
:class a (@ b) (@ c) d
div
:class a
@if (@ b)
div b
div c
div
:class a
@if (@ b) b c
-- test on helpers
@if (@call a b) (div) (span)
@each members
div (@ name)
@each a
div (@ b)
@each c
div (@ d)
-- test on HTML structure
@rich more
#demo-more-box
#demo-more
:data-lang-text demo-more
#demo-more-list
@each room
.demo-more-room
span.demo-name
@ topic
span.demo-join
:data-lang-text demo-join
:data-id (@ id)
-- text on bool
print #true
print #false
print #yes
print #no
print #t
print #f
-- test on Cirru js
set a 1
set a (= "This is a string")
set b #t
-- this is comment
number 1.4
string x
regex ^\s$
regex "^\\s-\"$"
sentence this is a string
array 1 2 3 (= nothing) #t (= #t)
set c (array 1 (= nothing))
set d $ object (a (= google))
b (= reader)
c 1
d $ array 1 2 (= string)
1 c
-1 c
:b d
.log console a 2
.log console
set demo $ object
call $ \ x (.log console x) (. this call)
. demo (.call 1) (.call 4)
=.x d 3
set d null
new Array 1 2 3
set x (:length c)
set str (= str)
set c (.toUpperCase str)
\ x (+ x 1)
\ (x y) (+ x y)
\ x (set aa 1) (+ aa x)
set f (\ x (+ x 1))
+ a 1 2
+= a 1
> 1 2 3
if (> 2 1) (+ a 1)
else 2
if (> a 2)
.log console (= "large")
elseif (> a 1)
.log console (= "still good")
else
.log console (= "so so")
set a $ if (> 2 1) #t #f
switch a
1 (.log console 1)
2 (.log console 2)
else (.log console (= "something else"))
set a $ array 2 +3 -4
for (a x i) (.log console x i)
set a 0
while (< a 10) (+= a 1) (.log console a)
| Cirru | 3 | oslab-swrc/juxta | analyzer/libs/pygments/tests/examplefiles/scope.cirru | [
"MIT"
] |
--
-- Thanks to Horia Muntean for submitting this, Mikkel Heisterberg for updating it
--
-- .. known to work with DB2 7.2 and the JDBC driver "COM.ibm.db2.jdbc.net.DB2Driver"
-- .. likely to work with others...
--
-- In your Quartz properties file, you'll need to set
-- org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.DB2v7Delegate
--
-- or
--
-- org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
--
-- If you're using DB2 6.x you'll want to set this property to
-- org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.DB2v6Delegate
--
-- Note that the blob column size (e.g. blob(2000)) dictates theount of data that can be stored in
-- that blob - i.e. limits theount of data you can put into your JobDataMap
--
DROP TABLE QRTZ_FIRED_TRIGGERS;
DROP TABLE QRTZ_PAUSED_TRIGGER_GRPS;
DROP TABLE QRTZ_SCHEDULER_STATE;
DROP TABLE QRTZ_LOCKS;
DROP TABLE QRTZ_SIMPLE_TRIGGERS;
DROP TABLE QRTZ_SIMPROP_TRIGGERS;
DROP TABLE QRTZ_CRON_TRIGGERS;
DROP TABLE QRTZ_TRIGGERS;
DROP TABLE QRTZ_JOB_DETAILS;
DROP TABLE QRTZ_CALENDARS;
DROP TABLE QRTZ_BLOB_TRIGGERS;
create table qrtz_job_details (
sched_name varchar(120) not null,
job_name varchar(80) not null,
job_group varchar(80) not null,
description varchar(120),
job_class_name varchar(128) not null,
is_durable varchar(1) not null,
is_nonconcurrent varchar(1) not null,
is_update_data varchar(1) not null,
requests_recovery varchar(1) not null,
job_data blob(2000),
primary key (sched_name,job_name,job_group)
);
create table qrtz_triggers(
sched_name varchar(120) not null,
trigger_name varchar(80) not null,
trigger_group varchar(80) not null,
job_name varchar(80) not null,
job_group varchar(80) not null,
description varchar(120),
next_fire_time bigint,
prev_fire_time bigint,
priority integer,
trigger_state varchar(16) not null,
trigger_type varchar(8) not null,
start_time bigint not null,
end_time bigint,
calendar_name varchar(80),
misfire_instr smallint,
job_data blob(2000),
primary key (sched_name,trigger_name,trigger_group),
foreign key (sched_name,job_name,job_group) references qrtz_job_details(sched_name,job_name,job_group)
);
create table qrtz_simple_triggers(
sched_name varchar(120) not null,
trigger_name varchar(80) not null,
trigger_group varchar(80) not null,
repeat_count bigint not null,
repeat_interval bigint not null,
times_triggered bigint not null,
primary key (sched_name,trigger_name,trigger_group),
foreign key (sched_name,trigger_name,trigger_group) references qrtz_triggers(sched_name,trigger_name,trigger_group)
);
create table qrtz_cron_triggers(
sched_name varchar(120) not null,
trigger_name varchar(80) not null,
trigger_group varchar(80) not null,
cron_expression varchar(120) not null,
time_zone_id varchar(80),
primary key (sched_name,trigger_name,trigger_group),
foreign key (sched_name,trigger_name,trigger_group) references qrtz_triggers(sched_name,trigger_name,trigger_group)
);
CREATE TABLE qrtz_simprop_triggers
(
sched_name varchar(120) not null,
TRIGGER_NAME VARCHAR(200) NOT NULL,
TRIGGER_GROUP VARCHAR(200) NOT NULL,
STR_PROP_1 VARCHAR(512) NULL,
STR_PROP_2 VARCHAR(512) NULL,
STR_PROP_3 VARCHAR(512) NULL,
INT_PROP_1 INT NULL,
INT_PROP_2 INT NULL,
LONG_PROP_1 BIGINT NULL,
LONG_PROP_2 BIGINT NULL,
DEC_PROP_1 NUMERIC(13,4) NULL,
DEC_PROP_2 NUMERIC(13,4) NULL,
BOOL_PROP_1 VARCHAR(1) NULL,
BOOL_PROP_2 VARCHAR(1) NULL,
PRIMARY KEY (sched_name,TRIGGER_NAME,TRIGGER_GROUP),
FOREIGN KEY (sched_name,TRIGGER_NAME,TRIGGER_GROUP)
REFERENCES QRTZ_TRIGGERS(sched_name,TRIGGER_NAME,TRIGGER_GROUP)
);
create table qrtz_blob_triggers(
sched_name varchar(120) not null,
trigger_name varchar(80) not null,
trigger_group varchar(80) not null,
blob_data blob(2000),
primary key (sched_name,trigger_name,trigger_group),
foreign key (sched_name,trigger_name,trigger_group) references qrtz_triggers(sched_name,trigger_name,trigger_group)
);
create table qrtz_calendars(
sched_name varchar(120) not null,
calendar_name varchar(80) not null,
calendar blob(2000) not null,
primary key (sched_name,calendar_name)
);
create table qrtz_fired_triggers(
sched_name varchar(120) not null,
entry_id varchar(95) not null,
trigger_name varchar(80) not null,
trigger_group varchar(80) not null,
instance_name varchar(80) not null,
fired_time bigint not null,
sched_time bigint not null,
priority integer not null,
state varchar(16) not null,
job_name varchar(80),
job_group varchar(80),
is_nonconcurrent varchar(1),
requests_recovery varchar(1),
primary key (sched_name,entry_id)
);
create table qrtz_paused_trigger_grps(
sched_name varchar(120) not null,
trigger_group varchar(80) not null,
primary key (sched_name,trigger_group)
);
create table qrtz_scheduler_state (
sched_name varchar(120) not null,
instance_name varchar(80) not null,
last_checkin_time bigint not null,
checkin_interval bigint not null,
primary key (sched_name,instance_name)
);
create table qrtz_locks
(
sched_name varchar(120) not null,
lock_name varchar(40) not null,
primary key (sched_name,lock_name)
);
| SQL | 4 | zcy2095/spring-boot-demo | demo-task-quartz/init/dbTables/tables_db2_v72.sql | [
"MIT"
] |
@ July 19, 2018
What up!
So far so good. Here is another batch of changes for the upcoming 18.7
release from assorted areas. Also included is the latest Suricata 4.0.5.
We have bundled the firewall alias API progress under the hood, but
it looks like we will miss our initial 18.7 target. Sorry about that.
Though it should be worth the wait. :)
Here is the full list of changes against version 18.7-RC1:
o system: show fingerprint in certificate details (contributed by Robin Schneider)
o system: fix Nextcloud file name format (contributed by Fabian Franz)
o system: allow remote backup via cron command
o system: clarify interface labels for NetFlow generator
o system: restart syslog when interface bind addresses may have changed
o system: do not use forced down gateways for default gateway switching
o system: allow USB-based serial ports
o interfaces: allow /0 to /32 in 6rd and align prefix length calculation with effective prefix used
o interfaces: 6rd validation and avoid listing on assignment page
o firewall: remove virtual IP network address restrictions for IPv6
o firewall: ignore namelookup when no nameservers are configured
o firewall: drop detail description field in preparation for alias API
o firewall: do not emit reflection rules for the wrong address family
o firewall: properly handle 6rd / 6to4 tunnel device in rule generation
o firewall: allow to select external aliases
o dashboard: add a 6 widget columns option
o firmware: slightly improve remote probing of kernel and base set
o firmware: hide upgrade banner when update is done
o installer: give basic tip that GUI IP can be set in console (contributed by stilez)
o intrusion detection: clean up previously installed rules
o ipsec: add mutual RSA and EAP-MSCHAPv2 support
o monit: fix UI issues (contributed by Frank Brendel)
o ntp: typo in SiRF selection
o openvpn: change IP calculation of /31 tunnel networks (contributed by Daniil Baturin)
o openvpn: move generation of client connect / disconnect directives to server mode block
o openvpn: properly translate several validation messages
o openvpn: disable use of /32 tunnel networks
o shell: show SSH and HTTPS fingerprints in banner (contributed by Robin Schneider)
o shell: reset DHCPv6 configuration during port reconfigure
o shell: clarify install media login message (contributed by stilez)
o shell: move banner display to top
o unbound: add latest root hints to standard configuration
o web proxy: allow to not use request or response URL in ICAP
o mvc: multiselect may allow empty option, no need to give blank item too
o plugins: os-frr 1.4 cleans up redistribute options (contributed by ShaRose)
o plugins: os-zabbix-proxy 1.1 adds PSK-based encryption (contributed by fzoske)
o plugins: os-theme-cicada 1.2 (contributed by Team Rebellion)
o plugins: os-theme-rebellion 1.2 (contributed by Team Rebellion)
o plugins: os-theme-tukan 1.1 (contributed by Team Rebellion)
o plugins: os-openconnect 1.1 (contributed by Michael Muenz)
o plugins: os-net-snmp 1.0 fix for listening field (contributed by Michael Muenz)
o plugins: os-haproxy 2.7 restores multiselect where needed (contributed by Frank Wall)
o plugins: os-web-proxy-sso 2.2 UI fixes (contributed by Smart-Soft)
o ports: dhcp6c now supports raw option send and receive (contributed by Team Rebellion and Christoph Engelbert)
o ports: suricata 4.0.5[1]
As always with our pre-releases, only OpenSSL is provided at this point,
but can be switched for LibreSSL as soon as the release is available.
This release candidate does update directly into the 18.7 stable track
and subsequent release candidates. Please let us know about your experience!
Stay safe,
Your OPNsense team
--
[1] https://suricata-ids.org/2018/07/18/suricata-4-0-5-available/
| Rebol | 0 | eole/opnsense-changelog | community/18.7/18.7.r2 | [
"BSD-2-Clause"
] |
// Rubiks Cube 1
// Daniel Shiffman
// https://thecodingtrain.com/CodingChallenges/142.1-rubiks-cube.html
// https://youtu.be/9PGfL4t-uqE
import peasy.*;
PeasyCam cam;
// UP, DOWN, RIGHT, LEFT, FRONT, BACK
final int UPP = 0;
final int DWN = 1;
final int RGT = 2;
final int LFT = 3;
final int FRT = 4;
final int BCK = 5;
color[] colors = {
#FFFFFF, #FFFF00,
#FFA500, #FF0000,
#00FF00, #0000FF
};
int dim = 3;
Cubie[][][] cube = new Cubie[dim][dim][dim];
void setup() {
size(600, 600, P3D);
cam = new PeasyCam(this, 400);
for (int i = 0; i < dim; i++) {
for (int j = 0; j < dim; j++) {
for (int k = 0; k < dim; k++) {
float len = 50;
float offset = (dim - 1)* len * 0.5;
float x = len * i - offset;
float y = len * j - offset;
float z = len * k - offset;
cube[i][j][k] = new Cubie(x, y, z, len);
}
}
}
}
void draw() {
background(51);
for (int i = 0; i < dim; i++) {
for (int j = 0; j < dim; j++) {
for (int k = 0; k < dim; k++) {
cube[i][j][k].show();
}
}
}
}
| Processing | 5 | aerinkayne/website | CodingChallenges/CC_142_Rubiks_Cube_1/Processing/CC_142_Rubiks_Cube_1/CC_142_Rubiks_Cube_1.pde | [
"MIT"
] |
package com.alibaba.json.bvt.issue_1800;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.annotation.JSONCreator;
import com.alibaba.fastjson.annotation.JSONField;
import junit.framework.TestCase;
import java.util.ArrayList;
import java.util.List;
public class Issue1879 extends TestCase {
// public void test_for_issue() throws Exception {
// String json = "{\n" +
// " \"ids\" : \"1,2,3\"\n" +
// "}";
// M1 m = JSON.parseObject(json, M1.class);
// }
public void test_for_issue_2() throws Exception {
String json = "{\n" +
" \"ids\" : \"1,2,3\"\n" +
"}";
M2 m = JSON.parseObject(json, M2.class);
}
public static class M1 {
private List<Long> ids;
@JSONCreator
public M1(@JSONField(name = "ids") String ids) {
this.ids = new ArrayList<Long>();
for(String id : ids.split(",")) {
this.ids.add(Long.valueOf(id));
}
}
public List<Long> getIds() {
return ids;
}
public void setIds(List<Long> ids) {
this.ids = ids;
}
}
public static class M2 {
private List<Long> ids;
@JSONCreator
public M2(@JSONField(name = "ids") Long id) {
this.ids = new ArrayList<Long>();
this.ids.add(id);
}
public List<Long> getIds() {
return ids;
}
public void setIds(List<Long> ids) {
this.ids = ids;
}
}
}
| Java | 4 | Czarek93/fastjson | src/test/java/com/alibaba/json/bvt/issue_1800/Issue1879.java | [
"Apache-2.0"
] |
class Base {
Int i
new make(Int x) {
i = x
}
virtual Str say(Str name) { "hi $name" }
}
mixin Bar {
virtual Str foo() { "bar" }
}
class Sub : Base, Bar {
Int j
new make(Int j) : super(0) {
this.j = j
}
override Str say(Str name) { "hello $name" }
override Str foo() { "sub" }
static Void main() {
m := Sub(1)
Base base := m
echo(base.say("Q"))
Bar bar := m
echo(bar.foo)
}
} | Fantom | 4 | fanx-dev/fanx | library/baseTest/fan/InheritTest.fan | [
"AFL-3.0"
] |
SetKeyDelay,{{ delay }},{{ press_duration }}
{% if raw %}WinSendRaw{% else %}WinSend{% endif %},{{ title }},{{ keys }}
| AutoHotkey | 1 | scslmd/ahk | ahk/templates/daemon/win_send.ahk | [
"MIT"
] |
POM_NAME=Glide GifEncoder Integration
POM_ARTIFACT_ID=gifencoder-integration
POM_PACKAGING=aar
POM_DESCRIPTION=An integration library allowing users to re-encode or create animated GIFs
| INI | 1 | ZhouLiang0000/glide-parent | integration/gifencoder/gradle.properties | [
"Apache-2.0"
] |
def notify() {
if (!currentBuild.resultIsBetterOrEqualTo('SUCCESS')) {
// Send an email only if the build status has changed from green/unstable to red
emailext subject: '$DEFAULT_SUBJECT',
body: '$DEFAULT_CONTENT',
recipientProviders: [
[$class: 'DevelopersRecipientProvider'],
[$class: 'RequesterRecipientProvider']
],
replyTo: '$DEFAULT_REPLYTO',
to: '$DEFAULT_RECIPIENTS'
}
}
return this
| Groovy | 4 | mfkiwl/milvus | tests/benchmark/ci/jenkinsfile/notify.groovy | [
"Apache-2.0"
] |
#+TITLE: lang/fstar
#+DATE: February 2, 2020
#+SINCE: 2.0.10
#+STARTUP: inlineimages nofold
* Table of Contents :TOC_3:noexport:
- [[#description][Description]]
- [[#maintainers][Maintainers]]
- [[#module-flags][Module Flags]]
- [[#plugins][Plugins]]
- [[#prerequisites][Prerequisites]]
- [[#f][F*]]
- [[#macos][macOS]]
- [[#arch-linux][Arch Linux]]
- [[#features][Features]]
- [[#configuration][Configuration]]
- [[#troubleshooting][Troubleshooting]]
* Description
This module adds [[https://fstar-lang.org/][F*]] support, powered by [[https://github.com/FStarLang/fstar-mode.el][fstar-mode.el]].
+ Syntax highlighting
+ Interactively process F* files one definition at a time
+ Query the running F* process to look up definitions, documentation, and
theorems
** Maintainers
+ [[https://github.com/tchajed][@tchajed]] (Author)
** Module Flags
This module provides no flags.
** Plugins
+ [[https://github.com/FStarLang/fstar-mode.el][fstar-mode]]
* Prerequisites
** F*
While fstar-mode supports the latest release of F*, you may have a better
experience installing a more recent version from source. See F*'s [[https://github.com/FStarLang/FStar/blob/master/INSTALL.md][INSTALL.md]].
*** macOS
#+BEGIN_SRC sh
brew install fstar
#+END_SRC
*** Arch Linux
Install ~fstar~ from the AUR:
#+BEGIN_SRC sh
yaourt -S fstar
#+END_SRC
* Features
* Configuration
* Troubleshooting
If you're having trouble getting F* to start correctly, you may need to
configure a few variables in fstar-mode; see its [[https://github.com/FStarLang/fstar-mode.el][README]] for more details.
| Org | 3 | leezu/doom-emacs | modules/lang/fstar/README.org | [
"MIT"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.