From 7c1716aa1ea0464185cb4a8904ee7f4d38511c04 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dani=C3=ABl=20W=2E=20Crompton?=
Date: Fri, 6 Sep 2013 01:47:14 +0200
Subject: [PATCH 001/268] This pull request solves issue #674, see it for
details.
---
.gitignore | 1 +
lib/linguist/languages.yml | 2 +-
lib/linguist/samples.json | 4 +
samples/Pike/Error.pmod | 38 ++++
samples/Pike/FakeFile.pike | 360 +++++++++++++++++++++++++++++++++++++
5 files changed, 404 insertions(+), 1 deletion(-)
create mode 100644 samples/Pike/Error.pmod
create mode 100644 samples/Pike/FakeFile.pike
diff --git a/.gitignore b/.gitignore
index b844b143..d8647b47 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
Gemfile.lock
+.idea/
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 11e7a62d..83856098 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1020,7 +1020,7 @@ Perl:
Pike:
type: programming
color: "#066ab2"
- lexer: C
+ lexer: Pike
primary_extension: .pike
extensions:
- .pmod
diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json
index b0c0f6bb..23d3c788 100644
--- a/lib/linguist/samples.json
+++ b/lib/linguist/samples.json
@@ -217,6 +217,10 @@
".php",
".script!"
],
+ "Pike": [
+ ".pmod",
+ ".pike"
+ ],
"PogoScript": [
".pogo"
],
diff --git a/samples/Pike/Error.pmod b/samples/Pike/Error.pmod
new file mode 100644
index 00000000..808ecb0e
--- /dev/null
+++ b/samples/Pike/Error.pmod
@@ -0,0 +1,38 @@
+#pike __REAL_VERSION__
+
+constant Generic = __builtin.GenericError;
+
+constant Index = __builtin.IndexError;
+
+constant BadArgument = __builtin.BadArgumentError;
+
+constant Math = __builtin.MathError;
+
+constant Resource = __builtin.ResourceError;
+
+constant Permission = __builtin.PermissionError;
+
+constant Decode = __builtin.DecodeError;
+
+constant Cpp = __builtin.CppError;
+
+constant Compilation = __builtin.CompilationError;
+
+constant MasterLoad = __builtin.MasterLoadError;
+
+constant ModuleLoad = __builtin.ModuleLoadError;
+
+//! Returns an Error object for any argument it receives. If the
+//! argument already is an Error object or is empty, it does nothing.
+object mkerror(mixed error)
+{
+ if (error == UNDEFINED)
+ return error;
+ if (objectp(error) && error->is_generic_error)
+ return error;
+ if (arrayp(error))
+ return Error.Generic(@error);
+ if (stringp(error))
+ return Error.Generic(error);
+ return Error.Generic(sprintf("%O", error));
+}
\ No newline at end of file
diff --git a/samples/Pike/FakeFile.pike b/samples/Pike/FakeFile.pike
new file mode 100644
index 00000000..48f3ea64
--- /dev/null
+++ b/samples/Pike/FakeFile.pike
@@ -0,0 +1,360 @@
+#pike __REAL_VERSION__
+
+//! A string wrapper that pretends to be a @[Stdio.File] object
+//! in addition to some features of a @[Stdio.FILE] object.
+
+
+//! This constant can be used to distinguish a FakeFile object
+//! from a real @[Stdio.File] object.
+constant is_fake_file = 1;
+
+protected string data;
+protected int ptr;
+protected int(0..1) r;
+protected int(0..1) w;
+protected int mtime;
+
+protected function read_cb;
+protected function read_oob_cb;
+protected function write_cb;
+protected function write_oob_cb;
+protected function close_cb;
+
+//! @seealso
+//! @[Stdio.File()->close()]
+int close(void|string direction) {
+ direction = lower_case(direction||"rw");
+ int cr = has_value(direction, "r");
+ int cw = has_value(direction, "w");
+
+ if(cr) {
+ r = 0;
+ }
+
+ if(cw) {
+ w = 0;
+ }
+
+ // FIXME: Close callback
+ return 1;
+}
+
+//! @decl void create(string data, void|string type, void|int pointer)
+//! @seealso
+//! @[Stdio.File()->create()]
+void create(string _data, void|string type, int|void _ptr) {
+ if(!_data) error("No data string given to FakeFile.\n");
+ data = _data;
+ ptr = _ptr;
+ mtime = time();
+ if(type) {
+ type = lower_case(type);
+ if(has_value(type, "r"))
+ r = 1;
+ if(has_value(type, "w"))
+ w = 1;
+ }
+ else
+ r = w = 1;
+}
+
+protected string make_type_str() {
+ string type = "";
+ if(r) type += "r";
+ if(w) type += "w";
+ return type;
+}
+
+//! @seealso
+//! @[Stdio.File()->dup()]
+this_program dup() {
+ return this_program(data, make_type_str(), ptr);
+}
+
+//! Always returns 0.
+//! @seealso
+//! @[Stdio.File()->errno()]
+int errno() { return 0; }
+
+//! Returns size and the creation time of the string.
+Stdio.Stat stat() {
+ Stdio.Stat st = Stdio.Stat();
+ st->size = sizeof(data);
+ st->mtime=st->ctime=mtime;
+ st->atime=time();
+ return st;
+}
+
+//! @seealso
+//! @[Stdio.File()->line_iterator()]
+String.SplitIterator line_iterator(int|void trim) {
+ if(trim)
+ return String.SplitIterator( data-"\r", '\n' );
+ return String.SplitIterator( data, '\n' );
+}
+
+protected mixed id;
+
+//! @seealso
+//! @[Stdio.File()->query_id()]
+mixed query_id() { return id; }
+
+//! @seealso
+//! @[Stdio.File()->set_id()]
+void set_id(mixed _id) { id = _id; }
+
+//! @seealso
+//! @[Stdio.File()->read_function()]
+function(:string) read_function(int nbytes) {
+ return lambda() { return read(nbytes); };
+}
+
+//! @seealso
+//! @[Stdio.File()->peek()]
+int(-1..1) peek(int|float|void timeout) {
+ if(!r) return -1;
+ if(ptr >= sizeof(data)) return 0;
+ return 1;
+}
+
+//! Always returns 0.
+//! @seealso
+//! @[Stdio.File()->query_address()]
+string query_address(void|int(0..1) is_local) { return 0; }
+
+//! @seealso
+//! @[Stdio.File()->read()]
+string read(void|int(0..) len, void|int(0..1) not_all) {
+ if(!r) return 0;
+ if (len < 0) error("Cannot read negative number of characters.\n");
+ int start=ptr;
+ ptr += len;
+ if(zero_type(len) || ptr>sizeof(data))
+ ptr = sizeof(data);
+
+ // FIXME: read callback
+ return data[start..ptr-1];
+}
+
+//! @seealso
+//! @[Stdio.FILE()->gets()]
+string gets() {
+ if(!r) return 0;
+ string ret;
+ sscanf(data,"%*"+(string)ptr+"s%[^\n]",ret);
+ if(ret)
+ {
+ ptr+=sizeof(ret)+1;
+ if(ptr>sizeof(data))
+ {
+ ptr=sizeof(data);
+ if(!sizeof(ret))
+ ret = 0;
+ }
+ }
+
+ // FIXME: read callback
+ return ret;
+}
+
+//! @seealso
+//! @[Stdio.FILE()->getchar()]
+int getchar() {
+ if(!r) return 0;
+ int c;
+ if(catch(c=data[ptr]))
+ c=-1;
+ else
+ ptr++;
+
+ // FIXME: read callback
+ return c;
+}
+
+//! @seealso
+//! @[Stdio.FILE()->unread()]
+void unread(string s) {
+ if(!r) return;
+ if(data[ptr-sizeof(s)..ptr-1]==s)
+ ptr-=sizeof(s);
+ else
+ {
+ data=s+data[ptr..];
+ ptr=0;
+ }
+}
+
+//! @seealso
+//! @[Stdio.File()->seek()]
+int seek(int pos, void|int mult, void|int add) {
+ if(mult)
+ pos = pos*mult+add;
+ if(pos<0)
+ {
+ pos = sizeof(data)+pos;
+ if( pos < 0 )
+ pos = 0;
+ }
+ ptr = pos;
+ if( ptr > strlen( data ) )
+ ptr = strlen(data);
+ return ptr;
+}
+
+//! Always returns 1.
+//! @seealso
+//! @[Stdio.File()->sync()]
+int(1..1) sync() { return 1; }
+
+//! @seealso
+//! @[Stdio.File()->tell()]
+int tell() { return ptr; }
+
+//! @seealso
+//! @[Stdio.File()->truncate()]
+int(0..1) truncate(int length) {
+ data = data[..length-1];
+ return sizeof(data)==length;
+}
+
+//! @seealso
+//! @[Stdio.File()->write()]
+int(-1..) write(string|array(string) str, mixed ... extra) {
+ if(!w) return -1;
+ if(arrayp(str)) str=str*"";
+ if(sizeof(extra)) str=sprintf(str, @extra);
+
+ if(ptr==sizeof(data)) {
+ data += str;
+ ptr = sizeof(data);
+ }
+ else if(sizeof(str)==1)
+ data[ptr++] = str[0];
+ else {
+ data = data[..ptr-1] + str + data[ptr+sizeof(str)..];
+ ptr += sizeof(str);
+ }
+
+ // FIXME: write callback
+ return sizeof(str);
+}
+
+//! @seealso
+//! @[Stdio.File()->set_blocking]
+void set_blocking() {
+ close_cb = 0;
+ read_cb = 0;
+ read_oob_cb = 0;
+ write_cb = 0;
+ write_oob_cb = 0;
+}
+
+//! @seealso
+//! @[Stdio.File()->set_blocking_keep_callbacks]
+void set_blocking_keep_callbacks() { }
+
+//! @seealso
+//! @[Stdio.File()->set_blocking]
+void set_nonblocking(function rcb, function wcb, function ccb,
+ function rocb, function wocb) {
+ read_cb = rcb;
+ write_cb = wcb;
+ close_cb = ccb;
+ read_oob_cb = rocb;
+ write_oob_cb = wocb;
+}
+
+//! @seealso
+//! @[Stdio.File()->set_blocking_keep_callbacks]
+void set_nonblocking_keep_callbacks() { }
+
+
+//! @seealso
+//! @[Stdio.File()->set_close_callback]
+void set_close_callback(function cb) { close_cb = cb; }
+
+//! @seealso
+//! @[Stdio.File()->set_read_callback]
+void set_read_callback(function cb) { read_cb = cb; }
+
+//! @seealso
+//! @[Stdio.File()->set_read_oob_callback]
+void set_read_oob_callback(function cb) { read_oob_cb = cb; }
+
+//! @seealso
+//! @[Stdio.File()->set_write_callback]
+void set_write_callback(function cb) { write_cb = cb; }
+
+//! @seealso
+//! @[Stdio.File()->set_write_oob_callback]
+void set_write_oob_callback(function cb) { write_oob_cb = cb; }
+
+
+//! @seealso
+//! @[Stdio.File()->query_close_callback]
+function query_close_callback() { return close_cb; }
+
+//! @seealso
+//! @[Stdio.File()->query_read_callback]
+function query_read_callback() { return read_cb; }
+
+//! @seealso
+//! @[Stdio.File()->query_read_oob_callback]
+function query_read_oob_callback() { return read_oob_cb; }
+
+//! @seealso
+//! @[Stdio.File()->query_write_callback]
+function query_write_callback() { return write_cb; }
+
+//! @seealso
+//! @[Stdio.File()->query_write_oob_callback]
+function query_write_oob_callback() { return write_oob_cb; }
+
+string _sprintf(int t) {
+ return t=='O' && sprintf("%O(%d,%O)", this_program, sizeof(data),
+ make_type_str());
+}
+
+
+// FakeFile specials.
+
+//! A FakeFile can be casted to a string.
+mixed cast(string to) {
+ switch(to) {
+ case "string": return data;
+ case "object": return this;
+ }
+ error("Can not cast object to %O.\n", to);
+}
+
+//! Sizeof on a FakeFile returns the size of its contents.
+int(0..) _sizeof() {
+ return sizeof(data);
+}
+
+//! @ignore
+
+#define NOPE(X) mixed X (mixed ... args) { error("This is a FakeFile. %s is not available.\n", #X); }
+NOPE(assign);
+NOPE(async_connect);
+NOPE(connect);
+NOPE(connect_unix);
+NOPE(open);
+NOPE(open_socket);
+NOPE(pipe);
+NOPE(tcgetattr);
+NOPE(tcsetattr);
+
+// Stdio.Fd
+NOPE(dup2);
+NOPE(lock); // We could implement this
+NOPE(mode); // We could implement this
+NOPE(proxy); // We could implement this
+NOPE(query_fd);
+NOPE(read_oob);
+NOPE(set_close_on_exec);
+NOPE(set_keepalive);
+NOPE(trylock); // We could implement this
+NOPE(write_oob);
+
+//! @endignore
\ No newline at end of file
From aa78060e41d079f68be7973cee1e7bef6f51e370 Mon Sep 17 00:00:00 2001
From: waddlesplash
Date: Tue, 10 Dec 2013 10:23:13 -0500
Subject: [PATCH 002/268] Adding QMake (Make-like) language.
Mostly because the file extension conflicts with that of Prolog.
---
lib/linguist/languages.yml | 6 +
lib/linguist/samples.json | 9869 +++++++++++++++++++----------------
samples/QMake/complex.pro | 30 +
samples/QMake/functions.pri | 8 +
samples/QMake/qmake.script! | 2 +
samples/QMake/simple.pro | 17 +
6 files changed, 5449 insertions(+), 4483 deletions(-)
create mode 100644 samples/QMake/complex.pro
create mode 100644 samples/QMake/functions.pri
create mode 100644 samples/QMake/qmake.script!
create mode 100644 samples/QMake/simple.pro
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index 4838d2e2..ad4f4c97 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -1296,6 +1296,12 @@ QML:
color: "#44a51c"
primary_extension: .qml
+QMake:
+ primary_extension: .pro
+ lexer: Text only
+ extensions:
+ - .pri
+
R:
type: programming
color: "#198ce7"
diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json
index 83f5d00d..04af4454 100644
--- a/lib/linguist/samples.json
+++ b/lib/linguist/samples.json
@@ -15,6 +15,11 @@
"Arduino": [
".ino"
],
+ "AsciiDoc": [
+ ".adoc",
+ ".asc",
+ ".asciidoc"
+ ],
"AutoHotkey": [
".ahk"
],
@@ -34,12 +39,6 @@
".c",
".h"
],
- "C++": [
- ".cc",
- ".cpp",
- ".h",
- ".hpp"
- ],
"Ceylon": [
".ceylon"
],
@@ -67,6 +66,9 @@
"Coq": [
".v"
],
+ "Creole": [
+ ".creole"
+ ],
"CSS": [
".css"
],
@@ -103,10 +105,6 @@
"fish": [
".fish"
],
- "Forth": [
- ".forth",
- ".fth"
- ],
"GAS": [
".s"
],
@@ -152,7 +150,8 @@
".script!"
],
"JSON": [
- ".json"
+ ".json",
+ ".lock"
],
"Julia": [
".jl"
@@ -163,12 +162,6 @@
"KRL": [
".krl"
],
- "Lasso": [
- ".las",
- ".lasso",
- ".lasso9",
- ".ldml"
- ],
"Less": [
".less"
],
@@ -210,12 +203,12 @@
".maxpat",
".mxt"
],
+ "MediaWiki": [
+ ".mediawiki"
+ ],
"Monkey": [
".monkey"
],
- "MoonScript": [
- ".moon"
- ],
"Nemerle": [
".n"
],
@@ -254,6 +247,9 @@
".cls",
".p"
],
+ "Org": [
+ ".org"
+ ],
"Oxygene": [
".oxygene",
".pas"
@@ -299,6 +295,11 @@
".py",
".script!"
],
+ "QMake": [
+ ".pri",
+ ".pro",
+ ".script!"
+ ],
"R": [
".R",
".script!"
@@ -309,6 +310,28 @@
"Ragel in Ruby Host": [
".rl"
],
+ "RDoc": [
+ ".rdoc"
+ ],
+ "C++": [
+ ".cc",
+ ".cpp",
+ ".h",
+ ".hpp"
+ ],
+ "Forth": [
+ ".forth",
+ ".fth"
+ ],
+ "Lasso": [
+ ".las",
+ ".lasso",
+ ".lasso9",
+ ".ldml"
+ ],
+ "MoonScript": [
+ ".moon"
+ ],
"Rebol": [
".r"
],
@@ -482,8 +505,8 @@
".gemrc"
]
},
- "tokens_total": 424139,
- "languages_total": 488,
+ "tokens_total": 426040,
+ "languages_total": 500,
"tokens": {
"ABAP": {
"*/**": 1,
@@ -1912,6 +1935,73 @@
"loop": 1,
"Serial.print": 1
},
+ "AsciiDoc": {
+ "Gregory": 2,
+ "Rom": 2,
+ "has": 2,
+ "written": 2,
+ "an": 2,
+ "AsciiDoc": 3,
+ "plugin": 2,
+ "for": 2,
+ "the": 2,
+ "Redmine": 2,
+ "project": 2,
+ "management": 2,
+ "application.": 2,
+ "https": 1,
+ "//github.com/foo": 1,
+ "-": 4,
+ "users/foo": 1,
+ "vicmd": 1,
+ "gif": 1,
+ "tag": 1,
+ "rom": 2,
+ "[": 2,
+ "]": 2,
+ "end": 1,
+ "berschrift": 1,
+ "*": 4,
+ "Codierungen": 1,
+ "sind": 1,
+ "verr": 1,
+ "ckt": 1,
+ "auf": 1,
+ "lteren": 1,
+ "Versionen": 1,
+ "von": 1,
+ "Ruby": 1,
+ "Home": 1,
+ "Page": 1,
+ "Example": 1,
+ "Articles": 1,
+ "Item": 6,
+ "Document": 1,
+ "Title": 1,
+ "Doc": 1,
+ "Writer": 1,
+ "": 1,
+ "idprefix": 1,
+ "id_": 1,
+ "Preamble": 1,
+ "paragraph.": 4,
+ "NOTE": 1,
+ "This": 1,
+ "is": 1,
+ "test": 1,
+ "only": 1,
+ "a": 1,
+ "test.": 1,
+ "Section": 3,
+ "A": 2,
+ "*Section": 3,
+ "A*": 2,
+ "Subsection": 1,
+ "B": 2,
+ "B*": 1,
+ ".Section": 1,
+ "list": 1
+ },
"AutoHotkey": {
"MsgBox": 1,
"Hello": 1,
@@ -5535,175 +5625,11 @@
"aeSetBeforeSleepProc": 1,
"aeMain": 1,
"aeDeleteEventLoop": 1,
- "": 1,
- "": 2,
"": 2,
- "//": 257,
- "rfUTF8_IsContinuationbyte": 1,
- "e.t.c.": 1,
- "rfFReadLine_UTF8": 5,
- "FILE*": 64,
- "utf8": 36,
- "uint32_t*": 34,
- "byteLength": 197,
- "bufferSize": 6,
- "eof": 53,
- "bytesN": 98,
- "bIndex": 5,
- "RF_NEWLINE_CRLF": 1,
- "newLineFound": 1,
- "*bufferSize": 1,
- "RF_OPTION_FGETS_READBYTESN": 5,
- "RF_MALLOC": 47,
- "tempBuff": 6,
- "RF_LF": 10,
- "buff": 95,
- "RF_SUCCESS": 14,
- "RE_FILE_EOF": 22,
- "found": 20,
- "*eofReached": 14,
- "LOG_ERROR": 64,
- "RF_HEXEQ_UI": 7,
- "rfFgetc_UTF32BE": 3,
- "else//": 14,
- "undo": 5,
- "peek": 5,
- "ahead": 5,
- "file": 6,
- "pointer": 5,
- "fseek": 19,
- "SEEK_CUR": 19,
- "rfFgets_UTF32LE": 2,
- "eofReached": 4,
- "rfFgetc_UTF32LE": 4,
- "rfFgets_UTF16BE": 2,
- "rfFgetc_UTF16BE": 4,
- "rfFgets_UTF16LE": 2,
- "rfFgetc_UTF16LE": 4,
- "rfFgets_UTF8": 2,
- "rfFgetc_UTF8": 3,
- "RF_HEXEQ_C": 9,
- "fgetc": 9,
- "check": 8,
- "RE_FILE_READ": 2,
- "cp": 12,
- "c2": 13,
- "c3": 9,
- "c4": 5,
- "i_READ_CHECK": 20,
- "///": 4,
- "success": 4,
- "cc": 24,
- "we": 10,
- "more": 2,
- "bytes": 225,
- "xC0": 3,
- "xC1": 1,
- "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6,
- "RE_UTF8_INVALID_SEQUENCE_END": 6,
- "rfUTF8_IsContinuationByte": 12,
- "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6,
- "decoded": 3,
- "codepoint": 47,
- "F": 38,
- "xE0": 2,
- "xF": 5,
- "decode": 6,
- "xF0": 2,
- "RF_HEXGE_C": 1,
- "xBF": 2,
- "//invalid": 1,
- "byte": 6,
- "are": 6,
- "xFF": 1,
- "//if": 1,
- "needing": 1,
- "than": 5,
- "swapE": 21,
- "v1": 38,
- "v2": 26,
- "rfUTILS_Endianess": 24,
- "RF_LITTLE_ENDIAN": 23,
- "fread": 12,
- "endianess": 40,
- "needed": 10,
- "rfUTILS_SwapEndianUS": 10,
- "RF_HEXGE_US": 4,
- "xD800": 8,
- "RF_HEXLE_US": 4,
- "xDFFF": 8,
- "RF_HEXL_US": 8,
- "RF_HEXG_US": 8,
- "xDBFF": 4,
- "RE_UTF16_INVALID_SEQUENCE": 20,
- "RE_UTF16_NO_SURRPAIR": 2,
- "xDC00": 4,
- "user": 2,
- "wants": 2,
- "ff": 10,
- "uint16_t*": 11,
- "surrogate": 4,
- "pair": 4,
- "existence": 2,
- "RF_BIG_ENDIAN": 10,
- "rfUTILS_SwapEndianUI": 11,
- "rfFback_UTF32BE": 2,
- "i_FSEEK_CHECK": 14,
- "rfFback_UTF32LE": 2,
- "rfFback_UTF16BE": 2,
- "rfFback_UTF16LE": 2,
- "rfFback_UTF8": 2,
- "depending": 1,
- "number": 19,
- "read": 1,
- "backwards": 1,
- "RE_UTF8_INVALID_SEQUENCE": 2,
- "REFU_IO_H": 2,
- "": 2,
- "opening": 2,
- "bracket": 4,
- "calling": 4,
- "C": 14,
- "xA": 1,
- "RF_CR": 1,
- "xD": 1,
- "REFU_WIN32_VERSION": 1,
- "i_PLUSB_WIN32": 2,
- "foff_rft": 2,
- "off64_t": 1,
- "///Fseek": 1,
- "and": 15,
- "Ftelll": 1,
- "definitions": 1,
- "rfFseek": 2,
- "i_FILE_": 16,
- "i_OFFSET_": 4,
- "i_WHENCE_": 4,
- "_fseeki64": 1,
- "rfFtell": 2,
- "_ftelli64": 1,
- "fseeko64": 1,
- "ftello64": 1,
- "i_DECLIMEX_": 121,
- "rfFReadLine_UTF16BE": 6,
- "rfFReadLine_UTF16LE": 4,
- "rfFReadLine_UTF32BE": 1,
- "rfFReadLine_UTF32LE": 4,
- "rfFgets_UTF32BE": 1,
- "RF_IAMHERE_FOR_DOXYGEN": 22,
- "rfPopen": 2,
- "command": 2,
- "i_rfPopen": 2,
- "i_CMD_": 2,
- "i_MODE_": 2,
- "i_rfLMS_WRAP2": 5,
- "rfPclose": 1,
- "stream": 3,
- "///closing": 1,
- "#endif//include": 1,
- "guards": 2,
+ "": 2,
"": 1,
"": 2,
+ "//": 257,
"local": 5,
"stack": 6,
"memory": 4,
@@ -5712,11 +5638,16 @@
"rfString_Create": 4,
"i_rfString_Create": 3,
"READ_VSNPRINTF_ARGS": 5,
+ "byteLength": 197,
"rfUTF8_VerifySequence": 7,
+ "buff": 95,
"RF_FAILURE": 24,
+ "LOG_ERROR": 64,
"RE_STRING_INIT_FAILURE": 8,
"buffAllocated": 11,
+ "RF_MALLOC": 47,
"RF_String": 27,
+ "bytes": 225,
"i_NVrfString_Create": 3,
"i_rfString_CreateLocal1": 3,
"RF_OPTION_SOURCE_ENCODING": 30,
@@ -5732,7 +5663,10 @@
"#elif": 14,
"RF_UTF32_LE": 3,
"RF_UTF32_BE": 3,
+ "decode": 6,
"UTF16": 4,
+ "rfUTILS_Endianess": 24,
+ "RF_LITTLE_ENDIAN": 23,
"rfUTF16_Decode": 5,
"rfUTF16_Decode_swap": 5,
"RF_UTF16_BE//": 2,
@@ -5740,13 +5674,19 @@
"copy": 4,
"UTF32": 4,
"into": 8,
+ "codepoint": 47,
+ "rfUTILS_SwapEndianUI": 11,
+ "uint32_t*": 34,
"RF_UTF32_BE//": 2,
+ "RF_BIG_ENDIAN": 10,
"": 2,
"any": 3,
"other": 16,
+ "than": 5,
"UTF": 17,
"8": 15,
"encode": 2,
+ "and": 15,
"them": 3,
"rfUTF8_Encode": 4,
"While": 2,
@@ -5754,6 +5694,7 @@
"create": 2,
"temporary": 4,
"given": 5,
+ "byte": 6,
"sequence": 6,
"could": 2,
"not": 6,
@@ -5767,7 +5708,9 @@
"normally": 1,
"since": 5,
"here": 5,
+ "we": 10,
"have": 2,
+ "check": 8,
"validity": 2,
"get": 4,
"Error": 2,
@@ -5792,6 +5735,7 @@
"Quitting": 2,
"proccess": 2,
"RE_LOCALMEMSTACK_INSUFFICIENT": 8,
+ "RE_UTF16_INVALID_SEQUENCE": 20,
"i_NVrfString_CreateLocal": 3,
"during": 1,
"rfString_Init": 3,
@@ -5801,6 +5745,8 @@
"rfString_Init_cp": 3,
"RF_HEXLE_UI": 8,
"RF_HEXGE_UI": 6,
+ "ff": 10,
+ "F": 38,
"C0": 3,
"ffff": 4,
"xFC0": 4,
@@ -5827,8 +5773,10 @@
"rfString_Create_f": 2,
"rfString_Init_f": 2,
"rfString_Create_UTF16": 2,
+ "endianess": 40,
"rfString_Init_UTF16": 3,
"utf8ByteLength": 34,
+ "utf8": 36,
"last": 1,
"utf": 1,
"null": 4,
@@ -5837,12 +5785,15 @@
"allocate": 1,
"same": 1,
"as": 4,
+ "else//": 14,
"different": 1,
"RE_INPUT": 1,
"ends": 3,
"rfString_Create_UTF32": 2,
"rfString_Init_UTF32": 3,
+ "swapE": 21,
"codeBuffer": 9,
+ "RF_HEXEQ_UI": 7,
"xFEFF": 1,
"big": 14,
"endian": 20,
@@ -5870,6 +5821,7 @@
"i_NVrfString_Init_nc": 3,
"rfString_Destroy": 2,
"rfString_Deinit": 3,
+ "uint16_t*": 11,
"rfString_ToUTF16": 4,
"charsN": 5,
"rfUTF8_Decode": 2,
@@ -5883,12 +5835,18 @@
"codePoint": 18,
"RF_STRING_INDEX_OUT_OF_BOUNDS": 2,
"rfString_BytePosToCodePoint": 7,
+ "RF_HEXEQ_C": 9,
+ "xC0": 3,
+ "xE0": 2,
+ "xF": 5,
+ "xF0": 2,
"rfString_BytePosToCharPos": 4,
"thisstrP": 32,
"bytepos": 12,
"before": 4,
"charPos": 8,
"byteI": 7,
+ "rfUTF8_IsContinuationByte": 12,
"i_rfString_Equal": 3,
"s1P": 2,
"s2P": 2,
@@ -5897,6 +5855,7 @@
"optionsP": 11,
"sstr": 39,
"*optionsP": 8,
+ "found": 20,
"RF_BITFLAG_ON": 5,
"RF_CASE_IGNORE": 2,
"strstr": 2,
@@ -5910,9 +5869,11 @@
"zero": 2,
"equals": 1,
"then": 1,
+ "are": 6,
"okay": 1,
"rfString_Equal": 4,
"RFS_": 8,
+ "RF_SUCCESS": 14,
"ERANGE": 1,
"RE_STRING_TOFLOAT_UNDERFLOW": 1,
"RE_STRING_TOFLOAT": 1,
@@ -5939,6 +5900,7 @@
"sstr2": 2,
"move": 12,
"rfString_FindBytePos": 10,
+ "i_DECLIMEX_": 121,
"rfString_Tokenize": 2,
"sep": 3,
"tokensN": 2,
@@ -5976,6 +5938,7 @@
"goes": 1,
"i_rfString_Remove": 6,
"numberP": 1,
+ "number": 19,
"*numberP": 1,
"occurences": 5,
"done": 1,
@@ -6038,6 +6001,7 @@
"rfString_PruneMiddleF": 2,
"got": 1,
"all": 2,
+ "needed": 10,
"i_rfString_Replace": 6,
"numP": 1,
"*numP": 1,
@@ -6081,8 +6045,13 @@
"res2": 2,
"rfString_StripEnd": 3,
"rfString_Create_fUTF8": 2,
+ "FILE*": 64,
+ "eof": 53,
"rfString_Init_fUTF8": 3,
+ "bytesN": 98,
+ "bufferSize": 6,
"unused": 3,
+ "rfFReadLine_UTF8": 5,
"rfString_Assign_fUTF8": 2,
"FILE*f": 2,
"utf8BufferSize": 4,
@@ -6091,11 +6060,14 @@
"rfString_Append": 5,
"rfString_Create_fUTF16": 2,
"rfString_Init_fUTF16": 3,
+ "rfFReadLine_UTF16LE": 4,
+ "rfFReadLine_UTF16BE": 6,
"rfString_Assign_fUTF16": 2,
"rfString_Append_fUTF16": 2,
"char*utf8": 3,
"rfString_Create_fUTF32": 2,
"rfString_Init_fUTF32": 3,
+ "rfFReadLine_UTF32LE": 4,
"<0)>": 1,
"Failure": 1,
"initialize": 1,
@@ -6103,6 +6075,7 @@
"Little": 1,
"Endian": 1,
"32": 1,
+ "file": 6,
"bytesN=": 1,
"rfString_Assign_fUTF32": 2,
"rfString_Append_fUTF32": 2,
@@ -6114,6 +6087,7 @@
"*encodingP": 1,
"fwrite": 5,
"logging": 5,
+ "rfUTILS_SwapEndianUS": 10,
"utf32": 10,
"i_WRITE_CHECK": 1,
"RE_FILE_WRITE": 1,
@@ -6122,12 +6096,17 @@
"RF_MODULE_STRINGS//": 1,
"included": 2,
"module": 3,
+ "": 2,
"": 1,
"argument": 1,
"wrapping": 1,
"functionality": 1,
"": 1,
"unicode": 2,
+ "opening": 2,
+ "bracket": 4,
+ "calling": 4,
+ "C": 14,
"xFF0FFFF": 1,
"rfUTF8_IsContinuationByte2": 1,
"b__": 3,
@@ -6167,6 +6146,7 @@
"been": 1,
"created": 1,
"assumed": 1,
+ "stream": 3,
"valid": 1,
"every": 1,
"performs": 1,
@@ -6201,6 +6181,7 @@
"*/": 1,
"#pragma": 1,
"pop": 1,
+ "RF_IAMHERE_FOR_DOXYGEN": 22,
"i_rfString_CreateLocal": 2,
"__VA_ARGS__": 66,
"RP_SELECT_FUNC_IF_NARGIS": 5,
@@ -6226,6 +6207,7 @@
"rfString_Assign": 2,
"i_DESTINATION_": 2,
"i_SOURCE_": 2,
+ "i_rfLMS_WRAP2": 5,
"rfString_ToUTF8": 2,
"i_STRING_": 2,
"rfString_ToCstr": 2,
@@ -6419,6 +6401,7 @@
"i_SELECT_RF_STRING_FWRITE": 1,
"i_SELECT_RF_STRING_FWRITE3": 1,
"i_STR_": 8,
+ "i_FILE_": 16,
"i_ENCODING_": 4,
"i_SELECT_RF_STRING_FWRITE2": 1,
"i_SELECT_RF_STRING_FWRITE1": 1,
@@ -6434,6 +6417,113 @@
"added": 1,
"you": 1,
"#endif//": 1,
+ "guards": 2,
+ "": 1,
+ "rfUTF8_IsContinuationbyte": 1,
+ "e.t.c.": 1,
+ "bIndex": 5,
+ "RF_NEWLINE_CRLF": 1,
+ "newLineFound": 1,
+ "*bufferSize": 1,
+ "RF_OPTION_FGETS_READBYTESN": 5,
+ "tempBuff": 6,
+ "RF_LF": 10,
+ "RE_FILE_EOF": 22,
+ "*eofReached": 14,
+ "rfFgetc_UTF32BE": 3,
+ "undo": 5,
+ "peek": 5,
+ "ahead": 5,
+ "pointer": 5,
+ "fseek": 19,
+ "SEEK_CUR": 19,
+ "rfFgets_UTF32LE": 2,
+ "eofReached": 4,
+ "rfFgetc_UTF32LE": 4,
+ "rfFgets_UTF16BE": 2,
+ "rfFgetc_UTF16BE": 4,
+ "rfFgets_UTF16LE": 2,
+ "rfFgetc_UTF16LE": 4,
+ "rfFgets_UTF8": 2,
+ "rfFgetc_UTF8": 3,
+ "fgetc": 9,
+ "RE_FILE_READ": 2,
+ "cp": 12,
+ "c2": 13,
+ "c3": 9,
+ "c4": 5,
+ "i_READ_CHECK": 20,
+ "///": 4,
+ "success": 4,
+ "cc": 24,
+ "more": 2,
+ "xC1": 1,
+ "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6,
+ "RE_UTF8_INVALID_SEQUENCE_END": 6,
+ "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6,
+ "decoded": 3,
+ "RF_HEXGE_C": 1,
+ "xBF": 2,
+ "//invalid": 1,
+ "xFF": 1,
+ "//if": 1,
+ "needing": 1,
+ "v1": 38,
+ "v2": 26,
+ "fread": 12,
+ "RF_HEXGE_US": 4,
+ "xD800": 8,
+ "RF_HEXLE_US": 4,
+ "xDFFF": 8,
+ "RF_HEXL_US": 8,
+ "RF_HEXG_US": 8,
+ "xDBFF": 4,
+ "RE_UTF16_NO_SURRPAIR": 2,
+ "xDC00": 4,
+ "user": 2,
+ "wants": 2,
+ "surrogate": 4,
+ "pair": 4,
+ "existence": 2,
+ "rfFback_UTF32BE": 2,
+ "i_FSEEK_CHECK": 14,
+ "rfFback_UTF32LE": 2,
+ "rfFback_UTF16BE": 2,
+ "rfFback_UTF16LE": 2,
+ "rfFback_UTF8": 2,
+ "depending": 1,
+ "read": 1,
+ "backwards": 1,
+ "RE_UTF8_INVALID_SEQUENCE": 2,
+ "REFU_IO_H": 2,
+ "xA": 1,
+ "RF_CR": 1,
+ "xD": 1,
+ "REFU_WIN32_VERSION": 1,
+ "i_PLUSB_WIN32": 2,
+ "foff_rft": 2,
+ "off64_t": 1,
+ "///Fseek": 1,
+ "Ftelll": 1,
+ "definitions": 1,
+ "rfFseek": 2,
+ "i_OFFSET_": 4,
+ "i_WHENCE_": 4,
+ "_fseeki64": 1,
+ "rfFtell": 2,
+ "_ftelli64": 1,
+ "fseeko64": 1,
+ "ftello64": 1,
+ "rfFReadLine_UTF32BE": 1,
+ "rfFgets_UTF32BE": 1,
+ "rfPopen": 2,
+ "command": 2,
+ "i_rfPopen": 2,
+ "i_CMD_": 2,
+ "i_MODE_": 2,
+ "rfPclose": 1,
+ "///closing": 1,
+ "#endif//include": 1,
"PY_SSIZE_T_CLEAN": 1,
"Py_PYTHON_H": 1,
"Python": 2,
@@ -8463,2289 +8553,6 @@
"yajl_get_bytes_consumed": 1,
"yajl_free_error": 1
},
- "C++": {
- "class": 34,
- "Bar": 2,
- "{": 550,
- "protected": 4,
- "char": 122,
- "*name": 6,
- ";": 2290,
- "public": 27,
- "void": 150,
- "hello": 2,
- "(": 2422,
- ")": 2424,
- "}": 549,
- "#include": 106,
- "": 1,
- "": 1,
- "": 2,
- "static": 260,
- "Env": 13,
- "*env_instance": 1,
- "*": 159,
- "NULL": 108,
- "*Env": 1,
- "instance": 4,
- "if": 295,
- "env_instance": 3,
- "new": 9,
- "return": 147,
- "QObject": 2,
- "QCoreApplication": 1,
- "parse": 3,
- "const": 166,
- "**envp": 1,
- "**env": 1,
- "**": 2,
- "QString": 20,
- "envvar": 2,
- "name": 21,
- "value": 18,
- "int": 144,
- "indexOfEquals": 5,
- "for": 18,
- "env": 3,
- "envp": 4,
- "*env": 1,
- "+": 50,
- "envvar.indexOf": 1,
- "continue": 2,
- "envvar.left": 1,
- "envvar.mid": 1,
- "m_map.insert": 1,
- "QVariantMap": 3,
- "asVariantMap": 2,
- "m_map": 2,
- "#ifndef": 23,
- "ENV_H": 3,
- "#define": 190,
- "": 1,
- "Q_OBJECT": 1,
- "*instance": 1,
- "private": 12,
- "#endif": 82,
- "//": 238,
- "GDSDBREADER_H": 3,
- "": 1,
- "GDS_DIR": 1,
- "enum": 6,
- "level": 1,
- "LEVEL_ONE": 1,
- "LEVEL_TWO": 1,
- "LEVEL_THREE": 1,
- "dbDataStructure": 2,
- "label": 1,
- "quint32": 3,
- "depth": 1,
- "userIndex": 1,
- "QByteArray": 1,
- "data": 2,
- "This": 6,
- "is": 35,
- "COMPRESSED": 1,
- "optimize": 1,
- "ram": 1,
- "and": 14,
- "disk": 1,
- "space": 2,
- "decompressed": 1,
- "quint64": 1,
- "uniqueID": 1,
- "QVector": 2,
- "": 1,
- "nextItems": 1,
- "": 1,
- "nextItemsIndices": 1,
- "dbDataStructure*": 1,
- "father": 1,
- "fatherIndex": 1,
- "bool": 99,
- "noFatherRoot": 1,
- "Used": 1,
- "to": 75,
- "tell": 1,
- "this": 22,
- "node": 1,
- "the": 178,
- "root": 1,
- "so": 1,
- "hasn": 1,
- "t": 13,
- "in": 9,
- "argument": 1,
- "list": 2,
- "of": 48,
- "an": 3,
- "operator": 10,
- "overload.": 1,
- "A": 1,
- "friend": 10,
- "stream": 5,
- "<<": 18,
- "myclass.label": 2,
- "myclass.depth": 2,
- "myclass.userIndex": 2,
- "qCompress": 2,
- "myclass.data": 4,
- "myclass.uniqueID": 2,
- "myclass.nextItemsIndices": 2,
- "myclass.fatherIndex": 2,
- "myclass.noFatherRoot": 2,
- "myclass.fileName": 2,
- "myclass.firstLineData": 4,
- "myclass.linesNumbers": 2,
- "QDataStream": 2,
- "&": 146,
- "myclass": 1,
- "//Don": 1,
- "read": 1,
- "it": 2,
- "either": 1,
- "qUncompress": 2,
- "": 1,
- "using": 1,
- "namespace": 26,
- "std": 49,
- "main": 2,
- "cout": 1,
- "endl": 1,
- "
": 2,
+ "elseif": 2,
+ "<": 1,
+ "p": 1,
+ "if": 7,
+ "Although": 1,
+ "is": 1,
+ "there": 1,
+ "are": 1,
+ "no": 1,
+ "English": 1,
+ "subtitles": 1,
+ "for": 1,
+ "comparison.": 1,
+ "/if": 8,
+ "/cache": 1,
+ "editor": 1,
+ "ksid": 2,
+ "new": 5,
+ "video": 2,
+ "siteId": 1,
+ "Video": 1,
+ "khanovaskola.cz": 1,
+ "revision": 18,
+ "rev": 4,
+ "this": 3,
+ "older": 1,
+ "#": 2,
+ "else": 2,
+ "newer": 1,
+ "": 1,
+ "": 1,
+ "diffs": 3,
+ "noescape": 2,
+ "
": 1,
+ "description": 1,
+ "text": 4,
+ "as": 2,
+ "line": 3,
+ "context": 1,
+ "splitter": 1,
+ "template": 1,
+ "bottom": 1,
+ "Expand": 1,
+ "fa": 16,
+ "sort": 1,
+ "ellipsis": 1,
+ "h": 1,
+ "success": 1,
+ "amaraEdit": 1,
+ "amaraId": 2,
+ "editButton": 1,
+ "btn": 17,
+ "default": 6,
+ "edit": 1,
+ "khanAcademy": 1,
+ "kaButton": 1,
+ "link": 1,
+ "info": 1,
+ "group": 4,
+ "approve": 1,
+ "thumbs": 3,
+ "up": 1,
+ "markIncomplete": 2,
+ "down": 2,
+ "redirectToAdd": 1,
+ "plus": 1,
+ "square": 1,
+ "table": 2,
+ "condensed": 1,
+ "revisions": 1,
+ "revId": 1,
+ "secondary": 2,
+ "Percent": 1,
+ "lines": 1,
+ "&": 1,
+ "thinsp": 1,
+ "%": 1,
+ "": 3,
+ "": 3,
+ "": 2,
+ "incomplete": 3,
+ "approved": 2,
+ "": 1,
+ "user": 1,
+ "loggedIn": 1,
+ "&&": 1,
+ "comments": 2,
+ "count": 1,
+ "": 2,
+ "": 2,
+ "colspan=": 1,
+ "": 1,
+ "comment": 4,
+ "left": 1,
+ "createdAt": 1,
+ "timeAgo": 1,
+ "noborder": 1,
+ "input": 3,
+ "form": 1,
+ "control": 1,
+ "Comment": 1,
+ "only": 1,
+ "visible": 1,
+ "other": 1,
+ "editors": 1,
+ "save": 1,
+ "share": 1,
+ "": 1,
+ "": 1,
+ "/form": 1,
+ "/foreach": 1,
+ " ": 1
+ },
+ "Racket": {
+ ";": 3,
+ "Clean": 1,
+ "simple": 1,
+ "and": 1,
+ "efficient": 1,
+ "code": 1,
+ "-": 94,
+ "that": 2,
+ "s": 1,
+ "the": 3,
+ "power": 1,
+ "of": 4,
+ "Racket": 2,
+ "http": 1,
+ "//racket": 1,
+ "lang.org/": 1,
+ "(": 23,
+ "define": 1,
+ "bottles": 4,
+ "n": 8,
+ "more": 2,
+ ")": 23,
+ "printf": 2,
+ "case": 1,
+ "[": 16,
+ "]": 16,
+ "else": 1,
+ "if": 1,
+ "for": 2,
+ "in": 3,
+ "range": 1,
+ "sub1": 1,
+ "displayln": 2,
+ "#lang": 1,
+ "scribble/manual": 1,
+ "@": 3,
+ "require": 1,
+ "scribble/bnf": 1,
+ "@title": 1,
+ "{": 2,
+ "Scribble": 3,
+ "The": 1,
+ "Documentation": 1,
+ "Tool": 1,
+ "}": 2,
+ "@author": 1,
+ "is": 3,
+ "a": 1,
+ "collection": 1,
+ "tools": 1,
+ "creating": 1,
+ "prose": 2,
+ "documents": 1,
+ "papers": 1,
+ "books": 1,
+ "library": 1,
+ "documentation": 1,
+ "etc.": 1,
+ "HTML": 1,
+ "or": 2,
+ "PDF": 1,
+ "via": 1,
+ "Latex": 1,
+ "form.": 1,
+ "More": 1,
+ "generally": 1,
+ "helps": 1,
+ "you": 1,
+ "write": 1,
+ "programs": 1,
+ "are": 1,
+ "rich": 1,
+ "textual": 1,
+ "content": 2,
+ "whether": 1,
+ "to": 2,
+ "be": 2,
+ "typeset": 1,
+ "any": 1,
+ "other": 1,
+ "form": 1,
+ "text": 1,
+ "generated": 1,
+ "programmatically.": 1,
+ "This": 1,
+ "document": 1,
+ "itself": 1,
+ "written": 1,
+ "using": 1,
+ "Scribble.": 1,
+ "You": 1,
+ "can": 1,
+ "see": 1,
+ "its": 1,
+ "source": 1,
+ "at": 1,
+ "let": 1,
+ "url": 3,
+ "link": 1,
+ "starting": 1,
+ "with": 1,
+ "@filepath": 1,
+ "scribble.scrbl": 1,
+ "file.": 1,
+ "@table": 1,
+ "contents": 1,
+ "@include": 8,
+ "section": 9,
+ "@index": 1
+ },
+ "Assembly": {
+ ";": 20,
+ "flat": 4,
+ "assembler": 6,
+ "interface": 2,
+ "for": 2,
+ "Win32": 2,
+ "Copyright": 4,
+ "(": 13,
+ "c": 4,
+ ")": 6,
+ "-": 87,
+ "Tomasz": 4,
+ "Grysztar.": 4,
+ "All": 4,
+ "rights": 4,
+ "reserved.": 4,
+ "format": 1,
+ "PE": 1,
+ "console": 1,
+ "section": 4,
+ "code": 1,
+ "readable": 4,
+ "executable": 1,
+ "start": 1,
+ "mov": 1253,
+ "[": 2026,
+ "con_handle": 8,
+ "]": 2026,
+ "STD_OUTPUT_HANDLE": 2,
+ "esi": 619,
+ "_logo": 2,
+ "call": 845,
+ "display_string": 19,
+ "get_params": 2,
+ "jc": 28,
+ "information": 2,
+ "init_memory": 2,
+ "_memory_prefix": 2,
+ "eax": 510,
+ "memory_end": 7,
+ "sub": 64,
+ "memory_start": 4,
+ "add": 76,
+ "additional_memory_end": 9,
+ "additional_memory": 6,
+ "shr": 30,
+ "display_number": 8,
+ "_memory_suffix": 2,
+ "GetTickCount": 3,
+ "start_time": 3,
+ "preprocessor": 1,
+ "parser": 1,
+ "formatter": 1,
+ "display_user_messages": 3,
+ "movzx": 13,
+ "current_pass": 16,
+ "inc": 87,
+ "_passes_suffix": 2,
+ "xor": 52,
+ "edx": 219,
+ "ebx": 336,
+ "div": 8,
+ "or": 194,
+ "jz": 107,
+ "display_bytes_count": 2,
+ "push": 150,
+ "dl": 58,
+ "display_character": 6,
+ "pop": 99,
+ "_seconds_suffix": 2,
+ "written_size": 1,
+ "_bytes_suffix": 2,
+ "al": 1174,
+ "jmp": 450,
+ "exit_program": 5,
+ "_usage": 2,
+ "input_file": 4,
+ "output_file": 3,
+ "symbols_file": 4,
+ "memory_setting": 4,
+ "passes_limit": 3,
+ "GetCommandLine": 2,
+ "edi": 250,
+ "params": 2,
+ "find_command_start": 2,
+ "lodsb": 12,
+ "cmp": 1088,
+ "h": 376,
+ "je": 485,
+ "skip_quoted_name": 3,
+ "skip_name": 2,
+ "find_param": 7,
+ "all_params": 5,
+ "option_param": 2,
+ "Dh": 19,
+ "jne": 485,
+ "get_output_file": 2,
+ "process_param": 3,
+ "bad_params": 11,
+ "string_param": 3,
+ "copy_param": 2,
+ "stosb": 6,
+ "param_end": 6,
+ "string_param_end": 2,
+ "memory_option": 4,
+ "passes_option": 4,
+ "symbols_option": 3,
+ "stc": 9,
+ "ret": 70,
+ "get_option_value": 3,
+ "get_option_digit": 2,
+ "option_value_ok": 4,
+ "invalid_option_value": 5,
+ "ja": 28,
+ "imul": 1,
+ "jo": 2,
+ "dec": 30,
+ "clc": 11,
+ "shl": 17,
+ "jae": 34,
+ "dx": 27,
+ "find_symbols_file_name": 2,
+ "include": 15,
+ "data": 3,
+ "writeable": 2,
+ "_copyright": 1,
+ "db": 35,
+ "Ah": 25,
+ "VERSION_STRING": 1,
+ "align": 1,
+ "dd": 22,
+ "bytes_count": 8,
+ "displayed_count": 4,
+ "character": 3,
+ "last_displayed": 5,
+ "rb": 4,
+ "options": 1,
+ "buffer": 14,
+ "stack": 1,
+ "import": 1,
+ "rva": 16,
+ "kernel_name": 2,
+ "kernel_table": 2,
+ "ExitProcess": 2,
+ "_ExitProcess": 2,
+ "CreateFile": 3,
+ "_CreateFileA": 2,
+ "ReadFile": 2,
+ "_ReadFile": 2,
+ "WriteFile": 6,
+ "_WriteFile": 2,
+ "CloseHandle": 2,
+ "_CloseHandle": 2,
+ "SetFilePointer": 2,
+ "_SetFilePointer": 2,
+ "_GetCommandLineA": 2,
+ "GetEnvironmentVariable": 2,
+ "_GetEnvironmentVariable": 2,
+ "GetStdHandle": 5,
+ "_GetStdHandle": 2,
+ "VirtualAlloc": 2,
+ "_VirtualAlloc": 2,
+ "VirtualFree": 2,
+ "_VirtualFree": 2,
+ "_GetTickCount": 2,
+ "GetSystemTime": 2,
+ "_GetSystemTime": 2,
+ "GlobalMemoryStatus": 2,
+ "_GlobalMemoryStatus": 2,
+ "dw": 14,
+ "fixups": 1,
+ "discardable": 1,
+ "CREATE_NEW": 1,
+ "CREATE_ALWAYS": 2,
+ "OPEN_EXISTING": 2,
+ "OPEN_ALWAYS": 1,
+ "TRUNCATE_EXISTING": 1,
+ "FILE_SHARE_READ": 3,
+ "FILE_SHARE_WRITE": 1,
+ "FILE_SHARE_DELETE": 1,
+ "GENERIC_READ": 2,
+ "GENERIC_WRITE": 2,
+ "STD_INPUT_HANDLE": 1,
+ "FFFFFFF6h": 1,
+ "FFFFFFF5h": 1,
+ "STD_ERROR_HANDLE": 3,
+ "FFFFFFF4h": 1,
+ "MEM_COMMIT": 2,
+ "MEM_RESERVE": 1,
+ "MEM_DECOMMIT": 1,
+ "MEM_RELEASE": 2,
+ "MEM_FREE": 1,
+ "MEM_PRIVATE": 1,
+ "MEM_MAPPED": 1,
+ "MEM_RESET": 1,
+ "MEM_TOP_DOWN": 1,
+ "PAGE_NOACCESS": 1,
+ "PAGE_READONLY": 1,
+ "PAGE_READWRITE": 2,
+ "PAGE_WRITECOPY": 1,
+ "PAGE_EXECUTE": 1,
+ "PAGE_EXECUTE_READ": 1,
+ "PAGE_EXECUTE_READWRITE": 1,
+ "PAGE_EXECUTE_WRITECOPY": 1,
+ "PAGE_GUARD": 1,
+ "PAGE_NOCACHE": 1,
+ "esp": 14,
+ "and": 50,
+ "not": 42,
+ "FFFh": 3,
+ "stack_limit": 2,
+ "jnz": 125,
+ "allocate_memory": 4,
+ "dword": 87,
+ "+": 232,
+ "jl": 13,
+ "large_memory": 3,
+ "ecx": 153,
+ "not_enough_memory": 2,
+ "jb": 34,
+ "out_of_memory": 19,
+ "test": 95,
+ "do_exit": 2,
+ "get_environment_variable": 1,
+ "jbe": 11,
+ "buffer_for_variable_ok": 2,
+ "open": 2,
+ "file_error": 6,
+ "create": 1,
+ "write": 1,
+ "read": 3,
+ "ebp": 49,
+ "close": 3,
+ "lseek": 5,
+ "repne": 1,
+ "scasb": 1,
+ "neg": 4,
+ "bl": 124,
+ "display_loop": 2,
+ "display_digit": 3,
+ "digit_ok": 2,
+ "show_display_buffer": 2,
+ "line_break_ok": 4,
+ "make_line_break": 2,
+ "ax": 87,
+ "word": 79,
+ "A0Dh": 2,
+ "D0Ah": 1,
+ "display_block": 4,
+ "take_last_two_characters": 2,
+ "block_displayed": 2,
+ "ah": 229,
+ "block_ok": 2,
+ "fatal_error": 1,
+ "error_prefix": 3,
+ "error_suffix": 3,
+ "FFh": 4,
+ "assembler_error": 1,
+ "current_line": 24,
+ "get_error_lines": 2,
+ "byte": 549,
+ "get_next_error_line": 2,
+ "display_error_line": 3,
+ "find_definition_origin": 2,
+ "line_number_start": 3,
+ "FFFFFFFh": 2,
+ "line_number_ok": 2,
+ "line_data_start": 2,
+ "line_data_displayed": 2,
+ "lea": 8,
+ "get_line_data": 2,
+ "display_line_data": 5,
+ "loop": 2,
+ "cr_lf": 2,
+ "make_timestamp": 1,
+ "mul": 5,
+ "months_correction": 2,
+ "day_correction_ok": 4,
+ "b": 30,
+ "day_correction": 2,
+ "adc": 9,
+ "core": 2,
+ "simple_instruction_except64": 1,
+ "code_type": 106,
+ "illegal_instruction": 48,
+ "simple_instruction": 6,
+ "stos": 107,
+ "instruction_assembled": 138,
+ "simple_instruction_only64": 1,
+ "simple_instruction_16bit_except64": 1,
+ "simple_instruction_16bit": 2,
+ "size_prefix": 3,
+ "simple_instruction_32bit_except64": 1,
+ "simple_instruction_32bit": 6,
+ "iret_instruction": 1,
+ "simple_instruction_64bit": 2,
+ "simple_extended_instruction_64bit": 1,
+ "simple_extended_instruction": 1,
+ "Fh": 73,
+ "prefix_instruction": 2,
+ "prefixed_instruction": 11,
+ "continue_line": 8,
+ "segment_prefix": 2,
+ "segment_register": 7,
+ "store_segment_prefix": 1,
+ "int_instruction": 1,
+ "lods": 366,
+ "get_size_operator": 137,
+ "invalid_operand_size": 131,
+ "invalid_operand": 239,
+ "get_byte_value": 23,
+ "jns": 1,
+ "int_imm_ok": 2,
+ "recoverable_overflow": 4,
+ "CDh": 1,
+ "aa_instruction": 1,
+ "aa_store": 2,
+ "xchg": 31,
+ "operand_size": 121,
+ "basic_instruction": 1,
+ "base_code": 195,
+ "basic_reg": 2,
+ "basic_mem": 1,
+ "get_address": 62,
+ "basic_mem_imm": 2,
+ "basic_mem_reg": 1,
+ "convert_register": 60,
+ "postbyte_register": 137,
+ "instruction_ready": 72,
+ "operand_autodetect": 47,
+ "store_instruction": 3,
+ "basic_mem_imm_nosize": 2,
+ "basic_mem_imm_8bit": 2,
+ "basic_mem_imm_16bit": 2,
+ "basic_mem_imm_32bit": 2,
+ "basic_mem_imm_64bit": 1,
+ "size_declared": 17,
+ "long_immediate_not_encodable": 14,
+ "operand_64bit": 18,
+ "get_simm32": 10,
+ "value_type": 42,
+ "basic_mem_imm_32bit_ok": 2,
+ "recoverable_unknown_size": 19,
+ "value": 38,
+ "store_instruction_with_imm8": 11,
+ "operand_16bit": 25,
+ "get_word_value": 19,
+ "basic_mem_imm_16bit_store": 3,
+ "basic_mem_simm_8bit": 5,
+ "store_instruction_with_imm16": 4,
+ "operand_32bit": 27,
+ "get_dword_value": 13,
+ "basic_mem_imm_32bit_store": 3,
+ "store_instruction_with_imm32": 4,
+ "get_qword_value": 5,
+ "cdq": 11,
+ "value_out_of_range": 10,
+ "get_simm32_ok": 2,
+ "basic_reg_reg": 2,
+ "basic_reg_imm": 2,
+ "basic_reg_mem": 1,
+ "basic_reg_mem_8bit": 2,
+ "nomem_instruction_ready": 53,
+ "store_nomem_instruction": 19,
+ "basic_reg_imm_8bit": 2,
+ "basic_reg_imm_16bit": 2,
+ "basic_reg_imm_32bit": 2,
+ "basic_reg_imm_64bit": 1,
+ "basic_reg_imm_32bit_ok": 2,
+ "basic_al_imm": 2,
+ "basic_reg_imm_16bit_store": 3,
+ "basic_reg_simm_8bit": 5,
+ "basic_ax_imm": 2,
+ "basic_store_imm_16bit": 2,
+ "mark_relocation": 26,
+ "store_instruction_code": 26,
+ "basic_reg_imm_32bit_store": 3,
+ "basic_eax_imm": 2,
+ "basic_store_imm_32bit": 2,
+ "error_line": 16,
+ "ignore_unknown_size": 2,
+ "error": 7,
+ "operand_size_not_specified": 1,
+ "single_operand_instruction": 1,
+ "F6h": 4,
+ "single_reg": 2,
+ "single_mem": 1,
+ "single_mem_8bit": 2,
+ "single_mem_nosize": 2,
+ "single_reg_8bit": 2,
+ "mov_instruction": 1,
+ "mov_reg": 2,
+ "mov_mem": 1,
+ "mov_mem_imm": 2,
+ "mov_mem_reg": 1,
+ "mov_mem_general_reg": 2,
+ "mov_mem_sreg": 2,
+ "mov_mem_reg_8bit": 2,
+ "bh": 34,
+ "mov_mem_ax": 2,
+ "mov_mem_al": 1,
+ "ch": 55,
+ "mov_mem_address16_al": 3,
+ "mov_mem_address32_al": 3,
+ "mov_mem_address64_al": 3,
+ "invalid_address_size": 18,
+ "store_segment_prefix_if_necessary": 17,
+ "address_32bit_prefix": 11,
+ "A2h": 3,
+ "store_mov_address32": 4,
+ "store_address_32bit_value": 1,
+ "address_16bit_prefix": 11,
+ "store_mov_address16": 4,
+ "invalid_address": 32,
+ "jge": 5,
+ "store_mov_address64": 4,
+ "store_address_64bit_value": 1,
+ "mov_mem_address16_ax": 3,
+ "mov_mem_address32_ax": 3,
+ "mov_mem_address64_ax": 3,
+ "A3h": 3,
+ "mov_mem_sreg_store": 2,
+ "Ch": 11,
+ "mov_mem_imm_nosize": 2,
+ "mov_mem_imm_8bit": 2,
+ "mov_mem_imm_16bit": 2,
+ "mov_mem_imm_32bit": 2,
+ "mov_mem_imm_64bit": 1,
+ "mov_mem_imm_32bit_store": 2,
+ "C6h": 1,
+ "C7h": 4,
+ "F0h": 7,
+ "mov_sreg": 2,
+ "mov_reg_mem": 2,
+ "mov_reg_imm": 2,
+ "mov_reg_reg": 1,
+ "mov_reg_sreg": 2,
+ "mov_reg_reg_8bit": 2,
+ "mov_reg_creg": 2,
+ "mov_reg_dreg": 2,
+ "mov_reg_treg": 2,
+ "mov_reg_sreg64": 2,
+ "mov_reg_sreg32": 2,
+ "mov_reg_sreg_store": 3,
+ "extended_code": 73,
+ "mov_reg_xrx": 3,
+ "mov_reg_xrx_64bit": 2,
+ "mov_reg_xrx_store": 3,
+ "mov_reg_mem_8bit": 2,
+ "mov_ax_mem": 2,
+ "mov_al_mem": 2,
+ "mov_al_mem_address16": 3,
+ "mov_al_mem_address32": 3,
+ "mov_al_mem_address64": 3,
+ "A0h": 4,
+ "mov_ax_mem_address16": 3,
+ "mov_ax_mem_address32": 3,
+ "mov_ax_mem_address64": 3,
+ "A1h": 4,
+ "mov_reg_imm_8bit": 2,
+ "mov_reg_imm_16bit": 2,
+ "mov_reg_imm_32bit": 2,
+ "mov_reg_imm_64bit": 1,
+ "mov_reg_imm_64bit_store": 3,
+ "mov_reg_64bit_imm_32bit": 2,
+ "B8h": 3,
+ "store_mov_reg_imm_code": 5,
+ "B0h": 5,
+ "mov_store_imm_32bit": 2,
+ "mov_reg_imm_prefix_ok": 2,
+ "rex_prefix": 9,
+ "mov_creg": 2,
+ "mov_dreg": 2,
+ "mov_treg": 2,
+ "mov_sreg_mem": 2,
+ "mov_sreg_reg": 1,
+ "mov_sreg_reg_size_ok": 2,
+ "Eh": 8,
+ "mov_sreg_mem_size_ok": 2,
+ "mov_xrx": 3,
+ "mov_xrx_64bit": 2,
+ "mov_xrx_store": 4,
+ "test_instruction": 1,
+ "test_reg": 2,
+ "test_mem": 1,
+ "test_mem_imm": 2,
+ "test_mem_reg": 2,
+ "test_mem_reg_8bit": 2,
+ "test_mem_imm_nosize": 2,
+ "test_mem_imm_8bit": 2,
+ "test_mem_imm_16bit": 2,
+ "test_mem_imm_32bit": 2,
+ "test_mem_imm_64bit": 1,
+ "test_mem_imm_32bit_store": 2,
+ "F7h": 5,
+ "test_reg_mem": 3,
+ "test_reg_imm": 2,
+ "test_reg_reg": 1,
+ "test_reg_reg_8bit": 2,
+ "test_reg_imm_8bit": 2,
+ "test_reg_imm_16bit": 2,
+ "test_reg_imm_32bit": 2,
+ "test_reg_imm_64bit": 1,
+ "test_reg_imm_32bit_store": 2,
+ "test_al_imm": 2,
+ "A8h": 1,
+ "test_ax_imm": 2,
+ "A9h": 2,
+ "test_eax_imm": 2,
+ "test_reg_mem_8bit": 2,
+ "xchg_instruction": 1,
+ "xchg_reg": 2,
+ "xchg_mem": 1,
+ "xchg_reg_reg": 1,
+ "xchg_reg_reg_8bit": 2,
+ "xchg_ax_reg": 2,
+ "xchg_reg_reg_store": 3,
+ "xchg_ax_reg_ok": 3,
+ "xchg_ax_reg_store": 2,
+ "push_instruction": 1,
+ "push_size": 9,
+ "push_next": 2,
+ "push_reg": 2,
+ "push_imm": 2,
+ "push_mem": 1,
+ "push_mem_16bit": 3,
+ "push_mem_32bit": 3,
+ "push_mem_64bit": 3,
+ "push_mem_store": 4,
+ "push_done": 5,
+ "push_sreg": 2,
+ "push_reg_ok": 2,
+ "push_reg_16bit": 2,
+ "push_reg_32bit": 2,
+ "push_reg_64bit": 1,
+ "push_reg_store": 5,
+ "dh": 37,
+ "push_sreg16": 3,
+ "push_sreg32": 3,
+ "push_sreg64": 3,
+ "push_sreg_store": 4,
+ "push_sreg_386": 2,
+ "push_imm_size_ok": 3,
+ "push_imm_16bit": 2,
+ "push_imm_32bit": 2,
+ "push_imm_64bit": 2,
+ "push_imm_optimized_16bit": 3,
+ "push_imm_optimized_32bit": 3,
+ "push_imm_optimized_64bit": 2,
+ "push_imm_32bit_store": 8,
+ "push_imm_8bit": 3,
+ "push_imm_16bit_store": 4,
+ "size_override": 7,
+ "operand_prefix": 9,
+ "pop_instruction": 1,
+ "pop_next": 2,
+ "pop_reg": 2,
+ "pop_mem": 1,
+ "pop_mem_16bit": 3,
+ "pop_mem_32bit": 3,
+ "pop_mem_64bit": 3,
+ "pop_mem_store": 4,
+ "pop_done": 3,
+ "pop_sreg": 2,
+ "pop_reg_ok": 2,
+ "pop_reg_16bit": 2,
+ "pop_reg_32bit": 2,
+ "pop_reg_64bit": 2,
+ "pop_reg_store": 5,
+ "pop_cs": 2,
+ "pop_sreg16": 3,
+ "pop_sreg32": 3,
+ "pop_sreg64": 3,
+ "pop_sreg_store": 4,
+ "pop_sreg_386": 2,
+ "pop_cs_store": 3,
+ "inc_instruction": 1,
+ "inc_reg": 2,
+ "inc_mem": 2,
+ "inc_mem_8bit": 2,
+ "inc_mem_nosize": 2,
+ "FEh": 2,
+ "inc_reg_8bit": 2,
+ "inc_reg_long_form": 2,
+ "set_instruction": 1,
+ "set_reg": 2,
+ "set_mem": 1,
+ "arpl_instruction": 1,
+ "arpl_reg": 2,
+ "bound_instruction": 1,
+ "bound_store": 2,
+ "enter_instruction": 1,
+ "enter_imm16_size_ok": 2,
+ "next_pass_needed": 16,
+ "enter_imm16_ok": 2,
+ "invalid_use_of_symbol": 17,
+ "js": 3,
+ "enter_imm8_size_ok": 2,
+ "enter_imm8_ok": 2,
+ "C8h": 2,
+ "bx": 8,
+ "ret_instruction_only64": 1,
+ "ret_instruction": 5,
+ "ret_instruction_32bit_except64": 1,
+ "ret_instruction_32bit": 1,
+ "ret_instruction_16bit": 1,
+ "retf_instruction": 1,
+ "ret_instruction_64bit": 1,
+ "simple_ret": 4,
+ "ret_imm": 3,
+ "ret_imm_ok": 2,
+ "ret_imm_store": 2,
+ "lea_instruction": 1,
+ "ls_instruction": 1,
+ "les_instruction": 2,
+ "lds_instruction": 2,
+ "ls_code_ok": 2,
+ "C4h": 1,
+ "ls_short_code": 2,
+ "C5h": 2,
+ "ls_16bit": 2,
+ "ls_32bit": 2,
+ "ls_64bit": 2,
+ "sh_instruction": 1,
+ "sh_reg": 2,
+ "sh_mem": 1,
+ "sh_mem_imm": 2,
+ "sh_mem_reg": 1,
+ "sh_mem_cl_8bit": 2,
+ "sh_mem_cl_nosize": 2,
+ "D3h": 2,
+ "D2h": 2,
+ "sh_mem_imm_size_ok": 2,
+ "sh_mem_imm_8bit": 2,
+ "sh_mem_imm_nosize": 2,
+ "sh_mem_1": 2,
+ "C1h": 2,
+ "D1h": 2,
+ "sh_mem_1_8bit": 2,
+ "C0h": 2,
+ "D0h": 2,
+ "sh_reg_imm": 2,
+ "sh_reg_reg": 1,
+ "sh_reg_cl_8bit": 2,
+ "sh_reg_imm_size_ok": 2,
+ "sh_reg_imm_8bit": 2,
+ "sh_reg_1": 2,
+ "sh_reg_1_8bit": 2,
+ "shd_instruction": 1,
+ "shd_reg": 2,
+ "shd_mem": 1,
+ "shd_mem_reg_imm": 2,
+ "shd_mem_reg_imm_size_ok": 2,
+ "shd_reg_reg_imm": 2,
+ "shd_reg_reg_imm_size_ok": 2,
+ "movx_instruction": 1,
+ "movx_reg": 2,
+ "movx_unknown_size": 2,
+ "movx_mem_store": 3,
+ "movx_reg_8bit": 2,
+ "movx_reg_16bit": 2,
+ "movsxd_instruction": 1,
+ "movsxd_reg": 2,
+ "movsxd_mem_store": 2,
+ "bt_instruction": 1,
+ "bt_reg": 2,
+ "bt_mem_imm": 3,
+ "bt_mem_reg": 2,
+ "bt_mem_imm_size_ok": 2,
+ "bt_mem_imm_nosize": 2,
+ "bt_mem_imm_store": 2,
+ "BAh": 2,
+ "bt_reg_imm": 3,
+ "bt_reg_reg": 2,
+ "bt_reg_imm_size_ok": 2,
+ "bt_reg_imm_store": 1,
+ "bs_instruction": 1,
+ "get_reg_mem": 2,
+ "bs_reg_reg": 2,
+ "get_reg_reg": 2,
+ "invalid_argument": 28,
+ "imul_instruction": 1,
+ "imul_reg": 2,
+ "imul_mem": 1,
+ "imul_mem_8bit": 2,
+ "imul_mem_nosize": 2,
+ "imul_reg_": 2,
+ "imul_reg_8bit": 2,
+ "imul_reg_imm": 3,
+ "imul_reg_noimm": 2,
+ "imul_reg_reg": 2,
+ "imul_reg_mem": 1,
+ "imul_reg_mem_imm": 2,
+ "AFh": 2,
+ "imul_reg_mem_imm_16bit": 2,
+ "imul_reg_mem_imm_32bit": 2,
+ "imul_reg_mem_imm_64bit": 1,
+ "imul_reg_mem_imm_32bit_ok": 2,
+ "imul_reg_mem_imm_16bit_store": 4,
+ "imul_reg_mem_imm_8bit_store": 3,
+ "imul_reg_mem_imm_32bit_store": 4,
+ "Bh": 11,
+ "imul_reg_reg_imm": 3,
+ "imul_reg_reg_imm_16bit": 2,
+ "imul_reg_reg_imm_32bit": 2,
+ "imul_reg_reg_imm_64bit": 1,
+ "imul_reg_reg_imm_32bit_ok": 2,
+ "imul_reg_reg_imm_16bit_store": 4,
+ "imul_reg_reg_imm_8bit_store": 3,
+ "imul_reg_reg_imm_32bit_store": 4,
+ "in_instruction": 1,
+ "in_imm": 2,
+ "in_reg": 2,
+ "in_al_dx": 2,
+ "in_ax_dx": 2,
+ "EDh": 1,
+ "ECh": 1,
+ "in_imm_size_ok": 2,
+ "in_al_imm": 2,
+ "in_ax_imm": 2,
+ "E5h": 1,
+ "E4h": 1,
+ "out_instruction": 1,
+ "out_imm": 2,
+ "out_dx_al": 2,
+ "out_dx_ax": 2,
+ "EFh": 1,
+ "EEh": 1,
+ "out_imm_size_ok": 2,
+ "out_imm_al": 2,
+ "out_imm_ax": 2,
+ "E7h": 1,
+ "E6h": 1,
+ "call_instruction": 1,
+ "E8h": 3,
+ "process_jmp": 2,
+ "jmp_instruction": 1,
+ "E9h": 1,
+ "EAh": 1,
+ "get_jump_operator": 3,
+ "jmp_imm": 2,
+ "jmp_reg": 2,
+ "jmp_mem": 1,
+ "jump_type": 14,
+ "jmp_mem_size_not_specified": 2,
+ "jmp_mem_16bit": 3,
+ "jmp_mem_32bit": 2,
+ "jmp_mem_48bit": 2,
+ "jmp_mem_64bit": 2,
+ "jmp_mem_80bit": 2,
+ "jmp_mem_far": 2,
+ "jmp_mem_near": 2,
+ "jmp_mem_near_32bit": 3,
+ "jmp_mem_far_32bit": 4,
+ "jmp_mem_far_store": 3,
+ "jmp_reg_16bit": 2,
+ "jmp_reg_32bit": 2,
+ "jmp_reg_64bit": 1,
+ "invalid_value": 21,
+ "skip_symbol": 5,
+ "jmp_far": 2,
+ "jmp_near": 1,
+ "jmp_imm_16bit": 3,
+ "jmp_imm_32bit": 2,
+ "jmp_imm_64bit": 3,
+ "get_address_dword_value": 3,
+ "jmp_imm_32bit_prefix_ok": 2,
+ "calculate_jump_offset": 10,
+ "check_for_short_jump": 8,
+ "jmp_short": 3,
+ "jmp_imm_32bit_store": 2,
+ "jno": 2,
+ "jmp_imm_32bit_ok": 2,
+ "relative_jump_out_of_range": 6,
+ "get_address_qword_value": 3,
+ "jnc": 11,
+ "EBh": 1,
+ "get_address_word_value": 3,
+ "jmp_imm_16bit_prefix_ok": 2,
+ "cwde": 3,
+ "addressing_space": 17,
+ "calculate_relative_offset": 2,
+ "forced_short": 2,
+ "no_short_jump": 4,
+ "short_jump": 4,
+ "jmp_short_value_type_ok": 2,
+ "jump_out_of_range": 3,
+ "symbol_identifier": 4,
+ "jmp_far_16bit": 2,
+ "jmp_far_32bit": 3,
+ "jmp_far_segment": 2,
+ "conditional_jump": 1,
+ "conditional_jump_16bit": 3,
+ "conditional_jump_32bit": 2,
+ "conditional_jump_64bit": 3,
+ "conditional_jump_32bit_prefix_ok": 2,
+ "conditional_jump_short": 4,
+ "conditional_jump_32bit_store": 2,
+ "conditional_jump_32bit_range_ok": 2,
+ "conditional_jump_16bit_prefix_ok": 2,
+ "loop_instruction_16bit": 1,
+ "loop_instruction": 5,
+ "loop_instruction_32bit": 1,
+ "loop_instruction_64bit": 1,
+ "loop_jump_16bit": 3,
+ "loop_jump_32bit": 2,
+ "loop_jump_64bit": 3,
+ "loop_jump_32bit_prefix_ok": 2,
+ "loop_counter_size": 4,
+ "make_loop_jump": 3,
+ "scas": 10,
+ "loop_counter_size_ok": 2,
+ "loop_jump_16bit_prefix_ok": 2,
+ "movs_instruction": 1,
+ "address_sizes_do_not_agree": 2,
+ "movs_address_16bit": 2,
+ "movs_address_32bit": 2,
+ "movs_store": 3,
+ "A4h": 1,
+ "movs_check_size": 5,
+ "lods_instruction": 1,
+ "lods_address_16bit": 2,
+ "lods_address_32bit": 2,
+ "lods_store": 3,
+ "ACh": 1,
+ "stos_instruction": 1,
+ "stos_address_16bit": 2,
+ "stos_address_32bit": 2,
+ "stos_store": 3,
+ "cmps_instruction": 1,
+ "cmps_address_16bit": 2,
+ "cmps_address_32bit": 2,
+ "cmps_store": 3,
+ "A6h": 1,
+ "ins_instruction": 1,
+ "ins_address_16bit": 2,
+ "ins_address_32bit": 2,
+ "ins_store": 3,
+ "ins_check_size": 2,
+ "outs_instruction": 1,
+ "outs_address_16bit": 2,
+ "outs_address_32bit": 2,
+ "outs_store": 3,
+ "xlat_instruction": 1,
+ "xlat_address_16bit": 2,
+ "xlat_address_32bit": 2,
+ "xlat_store": 3,
+ "D7h": 1,
+ "pm_word_instruction": 1,
+ "pm_reg": 2,
+ "pm_mem": 2,
+ "pm_mem_store": 2,
+ "pm_store_word_instruction": 1,
+ "lgdt_instruction": 1,
+ "lgdt_mem_48bit": 2,
+ "lgdt_mem_80bit": 2,
+ "lgdt_mem_store": 4,
+ "lar_instruction": 1,
+ "lar_reg_reg": 2,
+ "lar_reg_mem": 2,
+ "invlpg_instruction": 1,
+ "swapgs_instruction": 1,
+ "rdtscp_instruction": 1,
+ "basic_486_instruction": 1,
+ "basic_486_reg": 2,
+ "basic_486_mem_reg_8bit": 2,
+ "basic_486_reg_reg_8bit": 2,
+ "bswap_instruction": 1,
+ "bswap_reg_code_ok": 2,
+ "bswap_reg64": 2,
+ "cmpxchgx_instruction": 1,
+ "cmpxchgx_size_ok": 2,
+ "cmpxchgx_store": 2,
+ "nop_instruction": 1,
+ "extended_nop": 4,
+ "extended_nop_reg": 2,
+ "extended_nop_store": 2,
+ "basic_fpu_instruction": 1,
+ "D8h": 2,
+ "basic_fpu_streg": 2,
+ "basic_fpu_mem": 2,
+ "basic_fpu_mem_32bit": 2,
+ "basic_fpu_mem_64bit": 2,
+ "DCh": 2,
+ "convert_fpu_register": 9,
+ "basic_fpu_single_streg": 3,
+ "basic_fpu_st0": 2,
+ "basic_fpu_streg_st0": 2,
+ "simple_fpu_instruction": 1,
+ "D9h": 6,
+ "fi_instruction": 1,
+ "fi_mem_16bit": 2,
+ "fi_mem_32bit": 2,
+ "DAh": 2,
+ "DEh": 2,
+ "fld_instruction": 1,
+ "fld_streg": 2,
+ "fld_mem_32bit": 2,
+ "fld_mem_64bit": 2,
+ "fld_mem_80bit": 2,
+ "DDh": 6,
+ "fld_mem_80bit_store": 3,
+ "DBh": 4,
+ "fst_streg": 2,
+ "fild_instruction": 1,
+ "fild_mem_16bit": 2,
+ "fild_mem_32bit": 2,
+ "fild_mem_64bit": 2,
+ "DFh": 5,
+ "fisttp_64bit_store": 2,
+ "fild_mem_64bit_store": 3,
+ "fbld_instruction": 1,
+ "fbld_mem_80bit": 3,
+ "faddp_instruction": 1,
+ "faddp_streg": 2,
+ "fcompp_instruction": 1,
+ "D9DEh": 1,
+ "fucompp_instruction": 1,
+ "E9DAh": 1,
+ "fxch_instruction": 1,
+ "fpu_single_operand": 3,
+ "ffreep_instruction": 1,
+ "ffree_instruction": 1,
+ "fpu_streg": 2,
+ "fstenv_instruction": 1,
+ "fldenv_instruction": 3,
+ "fpu_mem": 2,
+ "fstenv_instruction_16bit": 1,
+ "fldenv_instruction_16bit": 1,
+ "fstenv_instruction_32bit": 1,
+ "fldenv_instruction_32bit": 1,
+ "fsave_instruction_32bit": 1,
+ "fnsave_instruction_32bit": 1,
+ "fnsave_instruction": 3,
+ "fsave_instruction_16bit": 1,
+ "fnsave_instruction_16bit": 1,
+ "fsave_instruction": 1,
+ "fstcw_instruction": 1,
+ "fldcw_instruction": 1,
+ "fldcw_mem_16bit": 3,
+ "fstsw_instruction": 1,
+ "fnstsw_instruction": 1,
+ "fstsw_reg": 2,
+ "fstsw_mem_16bit": 3,
+ "E0DFh": 1,
+ "finit_instruction": 1,
+ "fninit_instruction": 1,
+ "fcmov_instruction": 1,
+ "fcomi_streg": 3,
+ "fcomi_instruction": 1,
+ "fcomip_instruction": 1,
+ "fcomi_st0_streg": 2,
+ "basic_mmx_instruction": 1,
+ "mmx_instruction": 1,
+ "convert_mmx_register": 18,
+ "make_mmx_prefix": 9,
+ "mmx_mmreg_mmreg": 3,
+ "mmx_mmreg_mem": 2,
+ "mmx_bit_shift_instruction": 1,
+ "mmx_ps_mmreg_imm8": 2,
+ "pmovmskb_instruction": 1,
+ "pmovmskb_reg_size_ok": 2,
+ "mmx_nomem_imm8": 7,
+ "mmx_imm8": 6,
+ "cl": 42,
+ "append_imm8": 2,
+ "pinsrw_instruction": 1,
+ "pinsrw_mmreg_reg": 2,
+ "pshufw_instruction": 1,
+ "mmx_size": 30,
+ "opcode_prefix": 30,
+ "pshuf_instruction": 2,
+ "pshufd_instruction": 1,
+ "pshuf_mmreg_mmreg": 2,
+ "movd_instruction": 1,
+ "movd_reg": 2,
+ "movd_mmreg": 2,
+ "movd_mmreg_reg": 2,
+ "vex_required": 2,
+ "mmx_prefix_for_vex": 2,
+ "no_mmx_prefix": 2,
+ "movq_instruction": 1,
+ "movq_reg": 2,
+ "movq_mem_xmmreg": 2,
+ "D6h": 2,
+ "movq_mmreg": 2,
+ "movq_mmreg_": 2,
+ "F3h": 7,
+ "movq_mmreg_reg": 2,
+ "movq_mmreg_mmreg": 2,
+ "movq_mmreg_reg_store": 2,
+ "movdq_instruction": 1,
+ "movdq_mmreg": 2,
+ "convert_xmm_register": 12,
+ "movdq_mmreg_mmreg": 2,
+ "lddqu_instruction": 1,
+ "F2h": 6,
+ "movdq2q_instruction": 1,
+ "movq2dq_": 2,
+ "movq2dq_instruction": 1,
+ "sse_ps_instruction_imm8": 1,
+ "immediate_size": 9,
+ "sse_ps_instruction": 1,
+ "sse_instruction": 11,
+ "sse_pd_instruction_imm8": 1,
+ "sse_pd_instruction": 1,
+ "sse_ss_instruction": 1,
+ "sse_sd_instruction": 1,
+ "cmp_pd_instruction": 1,
+ "cmp_ps_instruction": 1,
+ "C2h": 4,
+ "cmp_ss_instruction": 1,
+ "cmp_sx_instruction": 2,
+ "cmpsd_instruction": 1,
+ "A7h": 1,
+ "cmp_sd_instruction": 1,
+ "comiss_instruction": 1,
+ "comisd_instruction": 1,
+ "cvtdq2pd_instruction": 1,
+ "cvtps2pd_instruction": 1,
+ "cvtpd2dq_instruction": 1,
+ "movshdup_instruction": 1,
+ "sse_xmmreg": 2,
+ "sse_reg": 1,
+ "sse_xmmreg_xmmreg": 2,
+ "sse_reg_mem": 2,
+ "sse_mem_size_ok": 2,
+ "supplemental_code": 2,
+ "sse_cmp_mem_ok": 3,
+ "sse_ok": 2,
+ "take_additional_xmm0": 3,
+ "sse_xmmreg_xmmreg_ok": 4,
+ "sse_cmp_nomem_ok": 3,
+ "sse_nomem_ok": 2,
+ "additional_xmm0_ok": 2,
+ "pslldq_instruction": 1,
+ "movpd_instruction": 1,
+ "movps_instruction": 1,
+ "sse_mov_instruction": 3,
+ "movss_instruction": 1,
+ "sse_movs": 2,
+ "movsd_instruction": 1,
+ "A5h": 1,
+ "sse_mem": 2,
+ "sse_mem_xmmreg": 2,
+ "movlpd_instruction": 1,
+ "movlps_instruction": 1,
+ "movhlps_instruction": 1,
+ "maskmovq_instruction": 1,
+ "maskmov_instruction": 2,
+ "maskmovdqu_instruction": 1,
+ "movmskpd_instruction": 1,
+ "movmskps_instruction": 1,
+ "movmskps_reg_ok": 2,
+ "cvtpi2pd_instruction": 1,
+ "cvtpi2ps_instruction": 1,
+ "stub_size": 1,
+ "resolver_flags": 1,
+ "number_of_sections": 1,
+ "actual_fixups_size": 1,
+ "assembler_loop": 2,
+ "labels_list": 3,
+ "tagged_blocks": 23,
+ "free_additional_memory": 2,
+ "structures_buffer": 9,
+ "source_start": 1,
+ "code_start": 2,
+ "adjustment": 4,
+ "counter": 13,
+ "format_flags": 2,
+ "number_of_relocations": 1,
+ "undefined_data_end": 4,
+ "file_extension": 1,
+ "output_format": 3,
+ "adjustment_sign": 2,
+ "init_addressing_space": 6,
+ "pass_loop": 2,
+ "assemble_line": 3,
+ "pass_done": 2,
+ "missing_end_directive": 7,
+ "close_pass": 1,
+ "check_symbols": 2,
+ "symbols_checked": 2,
+ "symbol_defined_ok": 5,
+ "cx": 42,
+ "use_prediction_ok": 5,
+ "check_use_prediction": 2,
+ "use_misprediction": 3,
+ "check_next_symbol": 5,
+ "define_misprediction": 4,
+ "check_define_prediction": 2,
+ "LABEL_STRUCTURE_SIZE": 1,
+ "next_pass": 3,
+ "assemble_ok": 2,
+ "undefined_symbol": 2,
+ "error_confirmed": 3,
+ "error_info": 2,
+ "error_handler": 3,
+ "code_cannot_be_generated": 1,
+ "create_addressing_space": 1,
+ "assemble_instruction": 2,
+ "source_end": 2,
+ "define_label": 2,
+ "define_constant": 2,
+ "label_addressing_space": 2,
+ "new_line": 2,
+ "code_type_setting": 2,
+ "line_assembled": 3,
+ "reserved_word_used_as_symbol": 6,
+ "label_size": 5,
+ "make_label": 3,
+ "ds": 21,
+ "sbb": 9,
+ "jp": 2,
+ "label_value_ok": 2,
+ "address_sign": 4,
+ "make_virtual_label": 2,
+ "setnz": 5,
+ "finish_label": 2,
+ "setne": 14,
+ "finish_label_symbol": 2,
+ "label_symbol_ok": 2,
+ "new_label": 2,
+ "symbol_already_defined": 3,
+ "btr": 2,
+ "requalified_label": 2,
+ "label_made": 4,
+ "get_constant_value": 4,
+ "get_value": 2,
+ "constant_referencing_mode_ok": 2,
+ "make_constant": 2,
+ "value_sign": 3,
+ "constant_symbol_ok": 2,
+ "new_constant": 2,
+ "redeclare_constant": 2,
+ "requalified_constant": 2,
+ "make_addressing_space_label": 3,
+ "vex_register": 1,
+ "instruction_handler": 32,
+ "extra_characters_on_line": 8,
+ "org_directive": 1,
+ "in_virtual": 2,
+ "org_space_ok": 2,
+ "close_virtual_addressing_space": 3,
+ "org_value_ok": 2,
+ "bts": 1,
+ "label_directive": 1,
+ "get_label_size": 2,
+ "label_size_ok": 2,
+ "get_free_label_value": 2,
+ "get_address_value": 3,
+ "bp": 2,
+ "make_free_label": 1,
+ "address_symbol": 2,
+ "load_directive": 1,
+ "load_size_ok": 2,
+ "get_data_point": 3,
+ "value_loaded": 2,
+ "rep": 7,
+ "movs": 8,
+ "get_data_address": 5,
+ "addressing_space_unavailable": 3,
+ "symbol_out_of_scope": 1,
+ "get_addressing_space": 3,
+ "store_label_reference": 1,
+ "data_address_type_ok": 2,
+ "bad_data_address": 3,
+ "store_directive": 1,
+ "sized_store": 2,
+ "store_value_ok": 2,
+ "undefined_data_start": 3,
+ "display_directive": 2,
+ "display_byte": 2,
+ "display_next": 2,
+ "display_done": 3,
+ "display_messages": 2,
+ "skip_block": 2,
+ "times_directive": 1,
+ "get_count_value": 6,
+ "zero_times": 3,
+ "times_argument_ok": 2,
+ "counter_limit": 7,
+ "times_loop": 2,
+ "stack_overflow": 2,
+ "times_done": 2,
+ "virtual_directive": 3,
+ "virtual_at_current": 2,
+ "set_virtual": 2,
+ "allocate_structure_data": 5,
+ "find_structure_data": 6,
+ "scan_structures": 2,
+ "no_such_structure": 2,
+ "structure_data_found": 2,
+ "end_virtual": 2,
+ "unexpected_instruction": 18,
+ "remove_structure_data": 7,
+ "std": 2,
+ "cld": 2,
+ "addressing_space_closed": 2,
+ "virtual_byte_ok": 2,
+ "virtual_word_ok": 2,
+ "repeat_directive": 7,
+ "zero_repeat": 2,
+ "end_repeat": 2,
+ "continue_repeating": 2,
+ "stop_repeat": 2,
+ "find_end_repeat": 4,
+ "find_structure_end": 5,
+ "while_directive": 7,
+ "do_while": 2,
+ "calculate_logical_expression": 3,
+ "while_true": 2,
+ "stop_while": 2,
+ "find_end_while": 3,
+ "end_while": 2,
+ "too_many_repeats": 1,
+ "if_directive": 13,
+ "if_true": 2,
+ "find_else": 4,
+ "else_true": 3,
+ "make_if_structure": 2,
+ "else_directive": 3,
+ "found_else": 2,
+ "skip_else": 3,
+ "find_end_if": 3,
+ "end_if": 2,
+ "else_found": 2,
+ "find_end_directive": 10,
+ "no_end_directive": 2,
+ "skip_labels": 2,
+ "labels_ok": 2,
+ "skip_repeat": 2,
+ "skip_while": 2,
+ "skip_if": 2,
+ "structure_end": 4,
+ "end_directive": 2,
+ "skip_if_block": 4,
+ "if_block_skipped": 2,
+ "skip_after_else": 3,
+ "data_directive": 1,
+ "end_data": 1,
+ "break_directive": 1,
+ "find_breakable_structure": 4,
+ "break_repeat": 2,
+ "break_while": 2,
+ "break_if": 2,
+ "data_bytes": 1,
+ "define_data": 8,
+ "get_byte": 2,
+ "undefined_data": 7,
+ "get_string": 2,
+ "mark_undefined_data": 2,
+ "undefined_data_ok": 2,
+ "simple_data_value": 3,
+ "skip_expression": 1,
+ "duplicate_zero_times": 2,
+ "duplicate_single_data_value": 3,
+ "duplicate_data": 2,
+ "duplicated_values": 2,
+ "near": 3,
+ "data_defined": 5,
+ "skip_single_data_value": 2,
+ "skip_data_value": 2,
+ "data_unicode": 1,
+ "define_words": 2,
+ "data_words": 1,
+ "get_word": 2,
+ "word_data_value": 2,
+ "word_string": 2,
+ "jecxz": 1,
+ "word_string_ok": 2,
+ "ecx*2": 1,
+ "copy_word_string": 2,
+ "data_dwords": 1,
+ "get_dword": 2,
+ "complex_dword": 2,
+ "data_pwords": 1,
+ "get_pword": 2,
+ "get_pword_value": 1,
+ "complex_pword": 2,
+ "data_qwords": 1,
+ "get_qword": 2,
+ "data_twords": 1,
+ "get_tword": 2,
+ "complex_tword": 2,
+ "fp_zero_tword": 2,
+ "jg": 1,
+ "tword_exp_ok": 3,
+ "large_shift": 2,
+ "shrd": 1,
+ "tword_mantissa_shift_done": 2,
+ "store_shifted_mantissa": 2,
+ "data_file": 2,
+ "open_binary_file": 2,
+ "position_ok": 2,
+ "size_ok": 2,
+ "error_reading_file": 1,
+ "find_current_source_path": 2,
+ "get_current_path": 3,
+ "cut_current_path": 1,
+ "current_path_ok": 1,
+ "/": 1,
+ ".": 7,
+ "invalid_align_value": 3,
+ "section_not_aligned_enough": 4,
+ "make_alignment": 3,
+ "pe_alignment": 2,
+ "nops": 2,
+ "reserved_data": 2,
+ "nops_stosb_ok": 2,
+ "nops_stosw_ok": 2,
+ "err_directive": 1,
+ "invoked_error": 2,
+ "assert_directive": 1,
+ "assertion_failed": 1
+ },
+ "AsciiDoc": {
+ "Gregory": 2,
+ "Rom": 2,
+ "has": 2,
+ "written": 2,
+ "an": 2,
+ "AsciiDoc": 3,
+ "plugin": 2,
+ "for": 2,
+ "the": 2,
+ "Redmine": 2,
+ "project": 2,
+ "management": 2,
+ "application.": 2,
+ "https": 1,
+ "//github.com/foo": 1,
+ "-": 4,
+ "users/foo": 1,
+ "vicmd": 1,
+ "gif": 1,
+ "tag": 1,
+ "rom": 2,
+ "[": 2,
+ "]": 2,
+ "end": 1,
+ "berschrift": 1,
+ "*": 4,
+ "Codierungen": 1,
+ "sind": 1,
+ "verr": 1,
+ "ckt": 1,
+ "auf": 1,
+ "lteren": 1,
+ "Versionen": 1,
+ "von": 1,
+ "Ruby": 1,
+ "Home": 1,
+ "Page": 1,
+ "Example": 1,
+ "Articles": 1,
+ "Item": 6,
+ "Document": 1,
+ "Title": 1,
+ "Doc": 1,
+ "Writer": 1,
+ "": 1,
+ "idprefix": 1,
+ "id_": 1,
+ "Preamble": 1,
+ "paragraph.": 4,
+ "NOTE": 1,
+ "This": 1,
+ "is": 1,
+ "test": 1,
+ "only": 1,
+ "a": 1,
+ "test.": 1,
+ "Section": 3,
+ "A": 2,
+ "*Section": 3,
+ "A*": 2,
+ "Subsection": 1,
+ "B": 2,
+ "B*": 1,
+ ".Section": 1,
+ "list": 1
+ },
+ "Gnuplot": {
+ "set": 98,
+ "boxwidth": 1,
+ "absolute": 1,
+ "style": 7,
+ "fill": 1,
+ "solid": 1,
+ "border": 3,
+ "lt": 15,
+ "-": 102,
+ "key": 1,
+ "inside": 1,
+ "right": 1,
+ "top": 1,
+ "vertical": 2,
+ "Right": 1,
+ "noreverse": 13,
+ "noenhanced": 1,
+ "autotitles": 1,
+ "nobox": 1,
+ "histogram": 1,
+ "clustered": 1,
+ "gap": 1,
+ "title": 13,
+ "offset": 25,
+ "character": 22,
+ "datafile": 1,
+ "missing": 1,
+ "data": 1,
+ "histograms": 1,
+ "xtics": 3,
+ "in": 1,
+ "scale": 1,
+ "nomirror": 1,
+ "rotate": 3,
+ "by": 3,
+ "autojustify": 1,
+ "norangelimit": 3,
+ "font": 8,
+ "(": 52,
+ ")": 52,
+ "yrange": 4,
+ "[": 18,
+ "]": 18,
+ "nowriteback": 12,
+ "i": 1,
+ "plot": 3,
+ "using": 2,
+ "xtic": 1,
+ "ti": 4,
+ "col": 4,
+ "u": 25,
+ "dummy": 3,
+ "v": 31,
+ "label": 14,
+ "at": 14,
+ "left": 15,
+ "norotate": 18,
+ "back": 23,
+ "nopoint": 14,
+ "arrow": 7,
+ "from": 7,
+ "to": 7,
+ "head": 7,
+ "nofilled": 7,
+ "linetype": 11,
+ "linewidth": 11,
+ "parametric": 3,
+ "view": 3,
+ "samples": 3,
+ "isosamples": 3,
+ "hidden3d": 2,
+ "trianglepattern": 2,
+ "undefined": 2,
+ "altdiagonal": 2,
+ "bentover": 2,
+ "ztics": 2,
+ "xlabel": 6,
+ "textcolor": 13,
+ "xrange": 3,
+ "ylabel": 5,
+ "zlabel": 4,
+ "zrange": 2,
+ "sinc": 13,
+ "sin": 3,
+ "sqrt": 4,
+ "u**2": 4,
+ "+": 6,
+ "v**2": 4,
+ "/": 2,
+ "GPFUN_sinc": 2,
+ "xx": 2,
+ "dx": 2,
+ "x0": 4,
+ "x1": 4,
+ "x2": 4,
+ "x3": 4,
+ "x4": 4,
+ "x5": 4,
+ "x6": 4,
+ "x7": 4,
+ "x8": 4,
+ "x9": 4,
+ "splot": 3,
+ "<": 10,
+ "notitle": 15,
+ "rgb": 8,
+ "line": 4,
+ "linecolor": 4,
+ "pointtype": 4,
+ "pointsize": 4,
+ "default": 4,
+ "pointinterval": 4,
+ "noxtics": 2,
+ "noytics": 2,
+ "bmargin": 1,
+ "unset": 2,
+ "colorbox": 3,
+ "cos": 9,
+ "x": 7,
+ "ls": 4,
+ ".2": 1,
+ ".4": 1,
+ ".6": 1,
+ ".8": 1,
+ "lc": 3,
+ "SHEBANG#!gnuplot": 1,
+ "reset": 1,
+ "terminal": 1,
+ "png": 1,
+ "output": 1,
+ "#set": 2,
+ "xr": 1,
+ "yr": 1,
+ "pt": 2,
+ "xmin": 3,
+ "xmax": 1,
+ "n": 1,
+ "zbase": 2,
+ ".5": 2,
+ "*n": 1,
+ "floor": 3,
+ "u/3": 1,
+ "*dx": 1,
+ "%": 2,
+ "u/3.*dx": 1,
+ "/0": 1,
+ "angles": 1,
+ "degrees": 1,
+ "mapping": 1,
+ "spherical": 1,
+ "noztics": 1,
+ "urange": 1,
+ "vrange": 1,
+ "cblabel": 1,
+ "cbrange": 1,
+ "user": 1,
+ "origin": 1,
+ "screen": 2,
+ "size": 1,
+ "front": 1,
+ "bdefault": 1,
+ "*cos": 1,
+ "*sin": 1,
+ "with": 3,
+ "lines": 2,
+ "labels": 1,
+ "point": 1,
+ "lw": 1,
+ ".1": 1,
+ "tc": 1,
+ "pal": 1
+ },
+ "Nginx": {
+ "user": 1,
+ "www": 2,
+ ";": 35,
+ "worker_processes": 1,
+ "error_log": 1,
+ "logs/error.log": 1,
+ "pid": 1,
+ "logs/nginx.pid": 1,
+ "worker_rlimit_nofile": 1,
+ "events": 1,
+ "{": 10,
+ "worker_connections": 1,
+ "}": 10,
+ "http": 3,
+ "include": 3,
+ "conf/mime.types": 1,
+ "/etc/nginx/proxy.conf": 1,
+ "/etc/nginx/fastcgi.conf": 1,
+ "index": 1,
+ "index.html": 1,
+ "index.htm": 1,
+ "index.php": 1,
+ "default_type": 1,
+ "application/octet": 1,
+ "-": 2,
+ "stream": 1,
+ "log_format": 1,
+ "main": 5,
+ "access_log": 4,
+ "logs/access.log": 1,
+ "sendfile": 1,
+ "on": 2,
+ "tcp_nopush": 1,
+ "server_names_hash_bucket_size": 1,
+ "#": 4,
+ "this": 1,
+ "seems": 1,
+ "to": 1,
+ "be": 1,
+ "required": 1,
+ "for": 1,
+ "some": 1,
+ "vhosts": 1,
+ "server": 7,
+ "php/fastcgi": 1,
+ "listen": 3,
+ "server_name": 3,
+ "domain1.com": 1,
+ "www.domain1.com": 1,
+ "logs/domain1.access.log": 1,
+ "root": 2,
+ "html": 1,
+ "location": 4,
+ ".php": 1,
+ "fastcgi_pass": 1,
+ "simple": 2,
+ "reverse": 1,
+ "proxy": 1,
+ "domain2.com": 1,
+ "www.domain2.com": 1,
+ "logs/domain2.access.log": 1,
+ "/": 4,
+ "(": 1,
+ "images": 1,
+ "|": 6,
+ "javascript": 1,
+ "js": 1,
+ "css": 1,
+ "flash": 1,
+ "media": 1,
+ "static": 1,
+ ")": 1,
+ "/var/www/virtual/big.server.com/htdocs": 1,
+ "expires": 1,
+ "d": 1,
+ "proxy_pass": 2,
+ "//127.0.0.1": 1,
+ "upstream": 1,
+ "big_server_com": 1,
+ "weight": 2,
+ "load": 1,
+ "balancing": 1,
+ "big.server.com": 1,
+ "logs/big.server.access.log": 1,
+ "//big_server_com": 1
+ },
+ "Dogescript": {
+ "quiet": 1,
+ "wow": 4,
+ "such": 2,
+ "language": 3,
+ "very": 1,
+ "syntax": 1,
+ "github": 1,
+ "recognized": 1,
+ "loud": 1,
+ "much": 1,
+ "friendly": 2,
+ "rly": 1,
+ "is": 2,
+ "true": 1,
+ "plz": 2,
+ "console.loge": 2,
+ "with": 2,
+ "but": 1,
+ "module.exports": 1
+ },
+ "Markdown": {
+ "Tender": 1
+ },
+ "Perl": {
+ "pod": 1,
+ "head1": 36,
+ "NAME": 6,
+ "Catalyst": 10,
+ "PSGI": 10,
+ "-": 868,
+ "How": 1,
+ "and": 85,
+ "work": 3,
+ "together": 2,
+ "SYNOPSIS": 6,
+ "The": 22,
+ "L": 34,
+ "": 3,
+ "specification": 3,
+ "defines": 2,
+ "an": 16,
+ "interface": 1,
+ "between": 4,
+ "web": 8,
+ "servers": 2,
+ "Perl": 9,
+ "based": 2,
+ "applications": 2,
+ "frameworks.": 1,
+ "It": 3,
+ "supports": 1,
+ "the": 143,
+ "writing": 1,
+ "of": 64,
+ "portable": 1,
+ "that": 33,
+ "can": 30,
+ "be": 36,
+ "run": 1,
+ "using": 5,
+ "various": 2,
+ "methods": 4,
+ "(": 925,
+ "as": 37,
+ "a": 85,
+ "standalone": 1,
+ "server": 2,
+ "or": 49,
+ "mod_perl": 3,
+ "FastCGI": 2,
+ "etc.": 3,
+ ")": 923,
+ ".": 125,
+ "": 3,
+ "is": 69,
+ "implementation": 1,
+ "for": 83,
+ "running": 1,
+ "applications.": 1,
+ "used": 12,
+ "to": 95,
+ "contain": 3,
+ "entire": 3,
+ "set": 12,
+ "C": 56,
+ "<<": 10,
+ "Engine": 1,
+ "XXXX": 1,
+ "classes": 2,
+ "handle": 3,
+ "environments": 1,
+ "e.g.": 2,
+ "CGI": 6,
+ "This": 27,
+ "has": 3,
+ "been": 1,
+ "changed": 1,
+ "in": 36,
+ "so": 4,
+ "all": 23,
+ "done": 2,
+ "by": 16,
+ "implementing": 1,
+ "s": 35,
+ "possible": 2,
+ "do": 12,
+ "it": 28,
+ "manually": 2,
+ "creating": 3,
+ "": 1,
+ "file": 49,
+ "root": 1,
+ "your": 20,
+ "application.": 1,
+ "head2": 34,
+ "Why": 3,
+ "would": 5,
+ "I": 68,
+ "want": 7,
+ "write": 2,
+ "my": 404,
+ "own": 4,
+ ".psgi": 7,
+ "Writing": 2,
+ "allows": 4,
+ "you": 44,
+ "use": 83,
+ "alternate": 1,
+ "": 1,
+ "command": 14,
+ "start": 7,
+ "application": 15,
+ "add": 9,
+ "extensions": 1,
+ "implement": 2,
+ "": 1,
+ "such": 6,
+ "": 1,
+ "": 1,
+ "simplest": 1,
+ "<.psgi>": 1,
+ "called": 4,
+ "": 1,
+ "strict": 18,
+ ";": 1193,
+ "warnings": 18,
+ "TestApp": 5,
+ "app": 2,
+ "psgi_app": 3,
+ "@_": 43,
+ "Note": 5,
+ "will": 9,
+ "apply": 3,
+ "number": 4,
+ "middleware": 2,
+ "components": 2,
+ "automatically": 2,
+ "these": 4,
+ "B": 76,
+ "": 1,
+ "not": 54,
+ "applied": 1,
+ "if": 276,
+ "create": 3,
+ "psgi": 2,
+ "yourself.": 2,
+ "Details": 1,
+ "found": 11,
+ "below.": 1,
+ "Additional": 1,
+ "information": 2,
+ "about": 4,
+ "files": 42,
+ "at": 4,
+ "": 1,
+ "What": 1,
+ "generates": 2,
+ "default": 19,
+ "which": 7,
+ "": 1,
+ "setting": 2,
+ "on": 25,
+ "wrapped": 1,
+ "": 1,
+ "contains": 2,
+ "some": 1,
+ "engine": 1,
+ "specific": 2,
+ "fixes": 1,
+ "uniform": 1,
+ "behaviour": 2,
+ "contained": 1,
+ "over": 2,
+ "item": 44,
+ "": 1,
+ "": 1,
+ "back": 4,
+ "If": 15,
+ "override": 1,
+ "providing": 2,
+ "then": 4,
+ "none": 1,
+ "things": 2,
+ "returned": 3,
+ "when": 18,
+ "call": 2,
+ "MyApp": 1,
+ "Thus": 1,
+ "need": 5,
+ "any": 4,
+ "this": 22,
+ "functionality": 1,
+ "ll": 1,
+ "An": 1,
+ "apply_default_middlewares": 2,
+ "method": 8,
+ "supplied": 1,
+ "wrap": 1,
+ "middlewares": 1,
+ "are": 25,
+ "file.": 3,
+ "means": 3,
+ "auto": 1,
+ "generated": 1,
+ "no": 22,
+ "code": 8,
+ "looks": 2,
+ "something": 3,
+ "like": 13,
+ "SEE": 4,
+ "ALSO": 4,
+ "": 1,
+ "": 1,
+ "AUTHORS": 2,
+ "Contributors": 1,
+ "see": 5,
+ "Catalyst.pm": 1,
+ "COPYRIGHT": 7,
+ "library": 2,
+ "free": 4,
+ "software.": 1,
+ "You": 4,
+ "redistribute": 4,
+ "and/or": 4,
+ "modify": 4,
+ "under": 5,
+ "same": 2,
+ "terms": 4,
+ "itself.": 3,
+ "cut": 28,
+ "package": 14,
+ "Plack": 25,
+ "Request": 11,
+ "_001": 1,
+ "our": 34,
+ "VERSION": 15,
+ "eval": 8,
+ "HTTP": 16,
+ "Headers": 8,
+ "Carp": 11,
+ "Hash": 11,
+ "MultiValue": 9,
+ "Body": 2,
+ "Upload": 2,
+ "TempBuffer": 2,
+ "URI": 11,
+ "Escape": 6,
+ "sub": 225,
+ "_deprecated": 8,
+ "{": 1121,
+ "alt": 1,
+ "shift": 165,
+ "caller": 2,
+ "[": 159,
+ "]": 155,
+ "carp": 2,
+ "}": 1134,
+ "new": 55,
+ "class": 8,
+ "env": 76,
+ "croak": 3,
+ "q": 5,
+ "required": 2,
+ "unless": 39,
+ "defined": 54,
+ "&&": 83,
+ "ref": 33,
+ "eq": 31,
+ "bless": 7,
+ "_": 101,
+ "address": 2,
+ "REMOTE_ADDR": 1,
+ "remote_host": 2,
+ "REMOTE_HOST": 1,
+ "protocol": 1,
+ "SERVER_PROTOCOL": 1,
+ "REQUEST_METHOD": 1,
+ "port": 1,
+ "SERVER_PORT": 2,
+ "user": 4,
+ "REMOTE_USER": 1,
+ "request_uri": 1,
+ "REQUEST_URI": 2,
+ "path_info": 4,
+ "PATH_INFO": 3,
+ "path": 28,
+ "||": 49,
+ "script_name": 1,
+ "SCRIPT_NAME": 2,
+ "scheme": 3,
+ "secure": 2,
+ "body": 30,
+ "input": 9,
+ "content_length": 4,
+ "CONTENT_LENGTH": 3,
+ "content_type": 5,
+ "CONTENT_TYPE": 2,
+ "session": 1,
+ "session_options": 1,
+ "logger": 1,
+ "cookies": 9,
+ "self": 141,
+ "return": 157,
+ "HTTP_COOKIE": 3,
+ "%": 78,
+ "results": 8,
+ "@pairs": 2,
+ "grep": 17,
+ "/": 69,
+ "split": 13,
+ "pair": 4,
+ "s/": 22,
+ "+": 120,
+ "//": 9,
+ "key": 20,
+ "value": 12,
+ "map": 10,
+ "uri_unescape": 1,
+ "exists": 19,
+ "query_parameters": 3,
+ "uri": 11,
+ "query_form": 2,
+ "content": 8,
+ "_parse_request_body": 4,
+ "fh": 28,
+ "cl": 10,
+ "read": 6,
+ "seek": 4,
+ "raw_body": 1,
+ "headers": 56,
+ "field": 2,
+ "HTTPS": 1,
+ "_//": 1,
+ "|": 28,
+ "CONTENT": 1,
+ "COOKIE": 1,
+ "/i": 2,
+ "keys": 15,
+ "content_encoding": 5,
+ "header": 17,
+ "referer": 3,
+ "user_agent": 3,
+ "body_parameters": 3,
+ "parameters": 8,
+ "query": 4,
+ "flatten": 3,
+ "uploads": 5,
+ "hostname": 1,
+ "url_scheme": 1,
+ "params": 1,
+ "query_params": 1,
+ "body_params": 1,
+ "cookie": 6,
+ "name": 44,
+ "param": 8,
+ "wantarray": 3,
+ "get_all": 2,
+ "upload": 13,
+ "raw_uri": 1,
+ "base": 10,
+ "path_query": 1,
+ "_uri_base": 3,
+ "path_escape_class": 2,
+ "uri_escape": 3,
+ "QUERY_STRING": 3,
+ "ne": 9,
+ "m": 17,
+ "canonical": 2,
+ "HTTP_HOST": 1,
+ "SERVER_NAME": 1,
+ "new_response": 4,
+ "require": 12,
+ "Response": 16,
+ "ct": 3,
+ "cleanup": 1,
+ "buffer": 9,
+ "else": 53,
+ "spin": 2,
+ "while": 31,
+ "chunk": 4,
+ "<": 15,
+ "length": 1,
+ "print": 35,
+ "rewind": 1,
+ "from_mixed": 2,
+ "@uploads": 3,
+ "@obj": 3,
+ "k": 6,
+ "v": 19,
+ "splice": 2,
+ "push": 30,
+ "_make_upload": 2,
+ "copy": 4,
+ "__END__": 2,
+ "Portable": 2,
+ "request": 11,
+ "object": 6,
+ "from": 19,
+ "hash": 11,
+ "app_or_middleware": 1,
+ "#": 99,
+ "req": 28,
+ "res": 59,
+ "finalize": 5,
+ "DESCRIPTION": 4,
+ "": 2,
+ "provides": 1,
+ "consistent": 1,
+ "API": 2,
+ "objects": 2,
+ "across": 1,
+ "environments.": 1,
+ "CAVEAT": 1,
+ "module": 2,
+ "intended": 1,
+ "developers": 3,
+ "framework": 2,
+ "rather": 2,
+ "than": 5,
+ "end": 9,
+ "users": 4,
+ "directly": 1,
+ "certainly": 2,
+ "but": 4,
+ "recommended": 1,
+ "Apache": 2,
+ "yet": 1,
+ "too": 1,
+ "low": 1,
+ "level.": 1,
+ "re": 3,
+ "encouraged": 1,
+ "one": 9,
+ "frameworks": 2,
+ "support": 2,
+ "": 1,
+ "modules": 1,
+ "": 1,
+ "provide": 1,
+ "higher": 1,
+ "level": 1,
+ "top": 1,
+ "PSGI.": 1,
+ "METHODS": 2,
+ "Some": 1,
+ "earlier": 1,
+ "versions": 1,
+ "deprecated": 1,
+ "version": 2,
+ "Take": 1,
+ "look": 2,
+ "\"INCOMPATIBILITIES\">": 1,
+ "Unless": 1,
+ "otherwise": 2,
+ "noted": 1,
+ "attributes": 4,
+ "": 1,
+ "passing": 1,
+ "values": 5,
+ "accessor": 1,
+ "doesn": 8,
+ "debug": 1,
+ "set.": 1,
+ "Returns": 10,
+ "": 2,
+ "containing": 5,
+ "current": 5,
+ "request.": 1,
+ "reference": 8,
+ "uploads.": 2,
+ "": 2,
+ "": 1,
+ "objects.": 1,
+ "Shortcut": 6,
+ "content_encoding.": 1,
+ "content_length.": 1,
+ "content_type.": 1,
+ "header.": 2,
+ "referer.": 1,
+ "user_agent.": 1,
+ "GET": 1,
+ "POST": 1,
+ "with": 26,
+ "CGI.pm": 2,
+ "compatible": 1,
+ "method.": 1,
+ "alternative": 1,
+ "accessing": 1,
+ "parameters.": 3,
+ "Unlike": 1,
+ "does": 10,
+ "": 1,
+ "allow": 1,
+ "modifying": 1,
+ "@values": 1,
+ "@params": 1,
+ "A": 2,
+ "convenient": 1,
+ "access": 2,
+ "@fields": 1,
+ "filename": 68,
+ "Creates": 2,
+ "": 3,
+ "object.": 4,
+ "Handy": 1,
+ "remove": 2,
+ "dependency": 1,
+ "easy": 1,
+ "subclassing": 1,
+ "duck": 1,
+ "typing": 1,
+ "well": 2,
+ "overriding": 1,
+ "generation": 1,
+ "middlewares.": 1,
+ "Parameters": 1,
+ "take": 5,
+ "multiple": 5,
+ "i.e.": 2,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "store": 1,
+ "plain": 2,
+ "where": 3,
+ "": 1,
+ "scalars": 1,
+ "": 2,
+ "array": 7,
+ "references": 1,
+ "don": 2,
+ "ARRAY": 1,
+ "foo": 6,
+ "t": 18,
+ "parse": 1,
+ "more": 2,
+ "twice": 1,
+ "efficiency.": 1,
+ "DISPATCHING": 1,
+ "wants": 1,
+ "dispatch": 1,
+ "route": 1,
+ "actions": 1,
+ "paths": 3,
+ "sure": 1,
+ "because": 3,
+ "": 1,
+ "gives": 2,
+ "virtual": 1,
+ "regardless": 1,
+ "how": 1,
+ "mounted.": 1,
+ "hosted": 1,
+ "scripts": 1,
+ "even": 4,
+ "multiplexed": 1,
+ "tools": 1,
+ "": 1,
+ "good": 2,
+ "idea": 1,
+ "subclass": 1,
+ "define": 1,
+ "uri_for": 2,
+ "args": 3,
+ "@": 38,
+ "So": 1,
+ "say": 1,
+ "link": 1,
+ "signoff": 1,
+ "": 1,
+ "empty.": 1,
+ "older": 1,
+ "behavior": 3,
+ "just": 2,
+ "instead.": 1,
+ "Cookie": 2,
+ "handling": 1,
+ "simplified": 1,
+ "always": 5,
+ "string": 5,
+ "encoding": 2,
+ "decoding": 1,
+ "them": 5,
+ "totally": 1,
+ "up": 1,
+ "framework.": 1,
+ "Also": 1,
+ "": 1,
+ "now": 1,
+ "returns": 4,
+ "": 1,
+ "Simple": 1,
+ "longer": 1,
+ "have": 2,
+ "wacky": 1,
+ "undef": 17,
+ "instead": 4,
+ "simply": 1,
+ "Tatsuhiko": 2,
+ "Miyagawa": 2,
+ "Kazuhiro": 1,
+ "Osawa": 1,
+ "Tokuhiro": 2,
+ "Matsuno": 2,
+ "": 1,
+ "": 1,
+ "LICENSE": 3,
+ "software": 3,
+ "SHEBANG#!perl": 5,
+ "Fast": 3,
+ "XML": 2,
+ "XS": 2,
+ "File": 54,
+ "Spec": 13,
+ "FindBin": 1,
+ "qw": 35,
+ "Bin": 3,
+ "#use": 1,
+ "lib": 2,
+ "catdir": 3,
+ "..": 7,
+ "_stop": 4,
+ "SIG": 3,
+ "exit": 16,
+ "ENV": 40,
+ "nginx": 2,
+ "external": 2,
+ "fcgi": 2,
+ "Ext_Request": 1,
+ "FCGI": 1,
+ "*STDIN": 2,
+ "*STDOUT": 6,
+ "*STDERR": 1,
+ "int": 2,
+ "ARGV": 2,
+ "conv": 2,
+ "use_attr": 1,
+ "indent": 1,
+ "output": 36,
+ "xml_decl": 1,
+ "tmpl_path": 2,
+ "tmpl": 5,
+ "data": 3,
+ "nick": 1,
+ "tree": 2,
+ "example": 5,
+ "parent": 5,
+ "id": 6,
+ "third_party": 1,
+ "artist_name": 2,
+ "venue": 2,
+ "event": 2,
+ "date": 2,
+ "zA": 1,
+ "Z0": 1,
+ "die": 38,
+ "e": 20,
+ "catfile": 4,
+ "qq": 18,
+ "Content": 2,
+ "type": 69,
+ "application/xml": 1,
+ "charset": 2,
+ "utf": 2,
+ "r": 14,
+ "n": 19,
+ "hash2xml": 1,
+ "text/html": 1,
+ "nError": 1,
+ "last": 17,
+ "M": 1,
+ "system": 1,
+ "Foo": 11,
+ "Bar": 1,
+ "@array": 1,
+ "SHEBANG#!#! perl": 4,
+ "i": 26,
+ "o": 17,
+ "examples/benchmarks/fib.pl": 1,
+ "Fibonacci": 2,
+ "Benchmark": 1,
+ "Calculates": 1,
+ "Number": 1,
+ "": 1,
+ "defaults": 16,
+ "unspecified": 1,
+ "fib": 4,
+ "N": 2,
+ "F": 24,
+ "": 1,
+ "App": 131,
+ "Ack": 136,
+ "Next": 27,
+ "Plugin": 2,
+ "Basic": 10,
+ "container": 1,
+ "functions": 2,
+ "ack": 38,
+ "program": 6,
+ "Version": 1,
+ "BEGIN": 7,
+ "types": 26,
+ "type_wanted": 20,
+ "mappings": 29,
+ "ignore_dirs": 12,
+ "input_from_pipe": 8,
+ "output_to_pipe": 12,
+ "dir_sep_chars": 10,
+ "is_cygwin": 6,
+ "is_windows": 12,
+ "Glob": 4,
+ "Getopt": 6,
+ "Long": 6,
+ "_MTN": 2,
+ "blib": 2,
+ "CVS": 5,
+ "RCS": 2,
+ "SCCS": 2,
+ "_darcs": 2,
+ "_sgbak": 2,
+ "_build": 2,
+ "actionscript": 2,
+ "mxml": 2,
+ "ada": 4,
+ "adb": 2,
+ "ads": 2,
+ "asm": 4,
+ "batch": 2,
+ "bat": 2,
+ "cmd": 2,
+ "binary": 3,
+ "Binary": 2,
+ "T": 2,
+ "op": 2,
+ "off": 4,
+ "tt": 4,
+ "tt2": 2,
+ "ttml": 2,
+ "vb": 4,
+ "bas": 2,
+ "cls": 2,
+ "frm": 2,
+ "ctl": 2,
+ "resx": 2,
+ "verilog": 2,
+ "vh": 2,
+ "sv": 2,
+ "vhdl": 4,
+ "vhd": 2,
+ "vim": 4,
+ "yaml": 4,
+ "yml": 2,
+ "xml": 6,
+ "dtd": 2,
+ "xsl": 2,
+ "xslt": 2,
+ "ent": 2,
+ "exts": 6,
+ "each": 14,
+ "ext": 14,
+ "mk": 2,
+ "mak": 2,
+ "p": 9,
+ "STDIN": 2,
+ "O": 4,
+ "/MSWin32/": 2,
+ "quotemeta": 5,
+ "know": 4,
+ "": 13,
+ "No": 4,
+ "serviceable": 1,
+ "parts": 1,
+ "inside.": 1,
+ "should": 6,
+ "this.": 1,
+ "FUNCTIONS": 1,
+ "read_ackrc": 4,
+ "Reads": 1,
+ "contents": 2,
+ ".ackrc": 1,
+ "arguments.": 1,
+ "@files": 12,
+ "ACKRC": 2,
+ "@dirs": 4,
+ "HOME": 4,
+ "USERPROFILE": 2,
+ "dir": 27,
+ "bsd_glob": 4,
+ "GLOB_TILDE": 2,
+ "open": 7,
+ "@lines": 21,
+ "/./": 2,
+ "s*#/": 2,
+ "<$fh>": 4,
+ "chomp": 3,
+ "close": 19,
+ "get_command_line_options": 4,
+ "Gets": 3,
+ "line": 20,
+ "arguments": 2,
+ "tweaking.": 1,
+ "opt": 291,
+ "pager": 19,
+ "ACK_PAGER_COLOR": 7,
+ "ACK_PAGER": 5,
+ "getopt_specs": 6,
+ "after_context": 16,
+ "before_context": 18,
+ "val": 26,
+ "break": 14,
+ "c": 5,
+ "count": 23,
+ "color": 38,
+ "ACK_COLOR_MATCH": 5,
+ "ACK_COLOR_FILENAME": 5,
+ "ACK_COLOR_LINENO": 4,
+ "column": 4,
+ "ignore": 7,
+ "option": 7,
+ "handled": 2,
+ "beforehand": 2,
+ "f": 25,
+ "flush": 8,
+ "follow": 7,
+ "G": 11,
+ "heading": 18,
+ "h": 6,
+ "H": 6,
+ "invert_file_match": 8,
+ "lines": 19,
+ "l": 17,
+ "regex": 28,
+ "passthru": 9,
+ "print0": 7,
+ "Q": 7,
+ "show_types": 4,
+ "smart_case": 3,
+ "sort_files": 11,
+ "u": 10,
+ "w": 4,
+ "remove_dir_sep": 7,
+ "delete": 10,
+ "print_version_statement": 2,
+ "show_help": 3,
+ "show_help_types": 2,
+ "Pod": 4,
+ "Usage": 4,
+ "pod2usage": 2,
+ "verbose": 2,
+ "exitval": 2,
+ "dummy": 2,
+ "wanted": 4,
+ "no//": 2,
+ "must": 5,
+ "later": 2,
+ "Unknown": 2,
+ "unshift": 4,
+ "@ARGV": 12,
+ "ACK_OPTIONS": 5,
+ "def_types_from_ARGV": 5,
+ "filetypes_supported": 5,
+ "parser": 12,
+ "Parser": 4,
+ "configure": 4,
+ "getoptions": 4,
+ "to_screen": 10,
+ "Win32": 9,
+ "Console": 2,
+ "ANSI": 3,
+ "join": 5,
+ "@ret": 10,
+ "warn": 22,
+ "uniq": 4,
+ "@uniq": 2,
+ "sort": 8,
+ "<=>": 2,
+ "b": 6,
+ "numerical": 2,
+ "occurs": 2,
+ "only": 11,
+ "once": 4,
+ "Go": 1,
+ "through": 6,
+ "<--type-set>": 1,
+ "foo=": 1,
+ "bar": 3,
+ "<--type-add>": 1,
+ "xml=": 1,
+ "Remove": 1,
+ "supported": 1,
+ "filetypes": 8,
+ "into": 6,
+ "@typedef": 8,
+ "td": 6,
+ "Builtin": 4,
+ "cannot": 4,
+ "changed.": 4,
+ "delete_type": 5,
+ "Type": 2,
+ "exist": 4,
+ "...": 2,
+ "@exts": 8,
+ ".//": 2,
+ "Cannot": 4,
+ "append": 2,
+ "Removes": 1,
+ "internal": 1,
+ "structures": 1,
+ "type_wanted.": 1,
+ "Internal": 2,
+ "error": 4,
+ "builtin": 2,
+ "ignoredir_filter": 5,
+ "Standard": 1,
+ "filter": 12,
+ "pass": 1,
+ "": 1,
+ "descend_filter.": 1,
+ "true": 3,
+ "directory": 8,
+ "ones": 1,
+ "we": 7,
+ "ignore.": 1,
+ "removes": 1,
+ "trailing": 1,
+ "separator": 4,
+ "there": 6,
+ "its": 2,
+ "argument": 1,
+ "list": 10,
+ "<$filename>": 1,
+ "could": 2,
+ "be.": 1,
+ "For": 5,
+ "": 1,
+ "filetype": 1,
+ "": 1,
+ "skipped": 2,
+ "avoid": 1,
+ "searching": 6,
+ "a.": 1,
+ "constant": 2,
+ "TEXT": 16,
+ "basename": 9,
+ ".*": 2,
+ "is_searchable": 8,
+ "lc_basename": 8,
+ "lc": 5,
+ "SHEBANG#!#!": 2,
+ "ruby": 3,
+ "lua": 2,
+ "erl": 2,
+ "hp": 2,
+ "ython": 2,
+ "d": 9,
+ "d.": 2,
+ "*": 8,
+ "b/": 4,
+ "ba": 2,
+ "z": 2,
+ "sh": 2,
+ "search": 11,
+ "false": 1,
+ "regular": 3,
+ "expression": 9,
+ "found.": 4,
+ "www": 2,
+ "U": 2,
+ "y": 8,
+ "tr/": 2,
+ "x": 7,
+ "w/": 3,
+ "nOo_/": 2,
+ "_thpppt": 3,
+ "_get_thpppt": 3,
+ "_bar": 3,
+ "&": 22,
+ "*I": 2,
+ "g": 7,
+ "#.": 6,
+ ".#": 4,
+ "I#": 2,
+ "#I": 6,
+ "#7": 4,
+ "results.": 2,
+ "interactively": 6,
+ "Print": 6,
+ "different": 2,
+ "files.": 6,
+ "group": 2,
+ "Same": 8,
+ "nogroup": 2,
+ "noheading": 2,
+ "nobreak": 2,
+ "Highlight": 2,
+ "matching": 15,
+ "text": 6,
+ "redirected": 2,
+ "Windows": 4,
+ "colour": 2,
+ "COLOR": 6,
+ "match": 21,
+ "lineno": 2,
+ "Set": 3,
+ "filenames": 7,
+ "matches": 7,
+ "numbers.": 2,
+ "Flush": 2,
+ "immediately": 2,
+ "non": 2,
+ "goes": 2,
+ "pipe": 4,
+ "finding": 2,
+ "Only": 7,
+ "without": 3,
+ "searching.": 2,
+ "PATTERN": 8,
+ "specified.": 4,
+ "REGEX": 2,
+ "REGEX.": 2,
+ "Sort": 2,
+ "lexically.": 3,
+ "invert": 2,
+ "Print/search": 2,
+ "g/": 2,
+ "G.": 2,
+ "show": 3,
+ "Show": 2,
+ "has.": 2,
+ "inclusion/exclusion": 2,
+ "All": 4,
+ "searched": 5,
+ "Ignores": 2,
+ ".svn": 3,
+ "other": 5,
+ "ignored": 6,
+ "directories": 9,
+ "unrestricted": 2,
+ "Add/Remove": 2,
+ "dirs": 2,
+ "R": 2,
+ "recurse": 2,
+ "Recurse": 3,
+ "subdirectories": 2,
+ "END_OF_HELP": 2,
+ "VMS": 2,
+ "vd": 2,
+ "Term": 6,
+ "ANSIColor": 8,
+ "black": 3,
+ "on_yellow": 3,
+ "bold": 5,
+ "green": 3,
+ "yellow": 3,
+ "printing": 2,
+ "qr/": 13,
+ "last_output_line": 6,
+ "any_output": 10,
+ "keep_context": 8,
+ "@before": 16,
+ "before_starts_at_line": 10,
+ "after": 18,
+ "still": 4,
+ "next_text": 8,
+ "has_lines": 4,
+ "scalar": 2,
+ "m/": 4,
+ "regex/": 9,
+ "next": 9,
+ "print_match_or_context": 13,
+ "elsif": 10,
+ "max": 12,
+ "nmatches": 61,
+ "show_filename": 35,
+ "context_overall_output_count": 6,
+ "print_blank_line": 2,
+ "is_binary": 4,
+ "search_resource": 7,
+ "is_match": 7,
+ "starting_line_no": 1,
+ "match_start": 5,
+ "match_end": 3,
+ "Prints": 4,
+ "out": 2,
+ "context": 1,
+ "around": 5,
+ "match.": 3,
+ "opts": 2,
+ "line_no": 12,
+ "show_column": 4,
+ "display_filename": 8,
+ "colored": 6,
+ "print_first_filename": 2,
+ "sep": 8,
+ "output_func": 8,
+ "print_separator": 2,
+ "print_filename": 2,
+ "display_line_no": 4,
+ "print_line_no": 2,
+ "regex/go": 2,
+ "regex/Term": 2,
+ "substr": 2,
+ "/eg": 2,
+ "z/": 2,
+ "K/": 2,
+ "z//": 2,
+ "print_column_no": 2,
+ "scope": 4,
+ "TOTAL_COUNT_SCOPE": 2,
+ "total_count": 10,
+ "get_total_count": 4,
+ "reset_total_count": 4,
+ "search_and_list": 8,
+ "Optimized": 1,
+ "lines.": 3,
+ "ors": 11,
+ "record": 3,
+ "show_total": 6,
+ "print_count": 4,
+ "print_count0": 2,
+ "filetypes_supported_set": 9,
+ "True/False": 1,
+ "print_files": 4,
+ "iter": 23,
+ "iterator": 3,
+ "<$regex>": 1,
+ "<$one>": 1,
+ "stop": 1,
+ "first.": 1,
+ "<$ors>": 1,
+ "<\"\\n\">": 1,
+ "what": 14,
+ "filename.": 1,
+ "print_files_with_matches": 4,
+ "was": 2,
+ "repo": 18,
+ "Repository": 11,
+ "next_resource": 6,
+ "print_matches": 4,
+ "tarballs_work": 4,
+ ".tar": 2,
+ ".gz": 2,
+ "Tar": 4,
+ "XXX": 4,
+ "Error": 2,
+ "checking": 2,
+ "needs_line_scan": 14,
+ "reset": 5,
+ "filetype_setup": 4,
+ "Minor": 1,
+ "housekeeping": 1,
+ "before": 1,
+ "go": 1,
+ "expand_filenames": 7,
+ "expanded": 3,
+ "globs": 1,
+ "EXPAND_FILENAMES_SCOPE": 4,
+ "argv": 12,
+ "attr": 6,
+ "foreach": 4,
+ "pattern": 10,
+ "@results": 14,
+ "didn": 2,
+ "ve": 2,
+ "tried": 2,
+ "load": 2,
+ "GetAttributes": 2,
+ "got": 2,
+ "get_starting_points": 4,
+ "starting": 2,
+ "@what": 14,
+ "reslash": 4,
+ "Assume": 2,
+ "start_point": 4,
+ "_match": 8,
+ "target": 6,
+ "invert_flag": 4,
+ "get_iterator": 4,
+ "Return": 2,
+ "starting_point": 10,
+ "g_regex": 4,
+ "file_filter": 12,
+ "g_regex/": 6,
+ "Maybe": 2,
+ "is_interesting": 4,
+ "descend_filter": 11,
+ "error_handler": 5,
+ "msg": 4,
+ "follow_symlinks": 6,
+ "set_up_pager": 3,
+ "Unable": 2,
+ "going": 1,
+ "pipe.": 1,
+ "exit_from_ack": 5,
+ "Exit": 1,
+ "correct": 1,
+ "code.": 2,
+ "handed": 1,
+ "argument.": 1,
+ "rc": 11,
+ "Copyright": 2,
+ "Andy": 2,
+ "Lester.": 2,
+ "Artistic": 2,
+ "License": 2,
+ "v2.0.": 2,
+ "End": 3,
+ "Util": 3,
+ "Accessor": 1,
+ "status": 17,
+ "Scalar": 2,
+ "shortcut": 2,
+ "location": 4,
+ "redirect": 1,
+ "url": 2,
+ "clone": 1,
+ "_finalize_cookies": 2,
+ "/chr": 1,
+ "/ge": 1,
+ "replace": 3,
+ "LWS": 1,
+ "single": 1,
+ "SP": 1,
+ "//g": 1,
+ "CR": 1,
+ "LF": 1,
+ "since": 1,
+ "char": 1,
+ "invalid": 1,
+ "here": 2,
+ "header_field_names": 1,
+ "_body": 2,
+ "blessed": 1,
+ "overload": 1,
+ "Method": 1,
+ "_bake_cookie": 2,
+ "push_header": 1,
+ "@cookie": 7,
+ "domain": 3,
+ "_date": 2,
+ "expires": 7,
+ "httponly": 1,
+ "@MON": 1,
+ "Jan": 1,
+ "Feb": 1,
+ "Mar": 1,
+ "Apr": 1,
+ "May": 2,
+ "Jun": 1,
+ "Jul": 1,
+ "Aug": 1,
+ "Sep": 1,
+ "Oct": 1,
+ "Nov": 1,
+ "Dec": 1,
+ "@WDAY": 1,
+ "Sun": 1,
+ "Mon": 1,
+ "Tue": 1,
+ "Wed": 1,
+ "Thu": 1,
+ "Fri": 1,
+ "Sat": 1,
+ "sec": 2,
+ "min": 3,
+ "hour": 2,
+ "mday": 2,
+ "mon": 2,
+ "year": 3,
+ "wday": 2,
+ "gmtime": 1,
+ "sprintf": 1,
+ "WDAY": 1,
+ "MON": 1,
+ "response": 5,
+ "psgi_handler": 1,
+ "way": 2,
+ "simple": 2,
+ "API.": 1,
+ "Sets": 2,
+ "gets": 2,
+ "": 1,
+ "alias.": 2,
+ "response.": 1,
+ "Setter": 2,
+ "either": 2,
+ "headers.": 1,
+ "body_str": 1,
+ "io": 1,
+ "sets": 4,
+ "body.": 1,
+ "IO": 1,
+ "Handle": 1,
+ "": 1,
+ "X": 2,
+ "text/plain": 1,
+ "gzip": 1,
+ "normalize": 1,
+ "given": 10,
+ "string.": 1,
+ "Users": 1,
+ "responsible": 1,
+ "properly": 1,
+ "": 1,
+ "names": 1,
+ "their": 1,
+ "corresponding": 1,
+ "": 2,
+ "everything": 1,
+ "": 1,
+ "": 2,
+ "": 1,
+ "": 1,
+ "": 1,
+ "integer": 1,
+ "epoch": 1,
+ "time": 3,
+ "": 1,
+ "convert": 1,
+ "formats": 1,
+ "<+3M>": 1,
+ "reference.": 1,
+ "AUTHOR": 1,
+ "MAIN": 1,
+ "main": 3,
+ "env_is_usable": 3,
+ "th": 1,
+ "pt": 1,
+ "@keys": 2,
+ "ACK_/": 1,
+ "@ENV": 1,
+ "load_colors": 1,
+ "ACK_SWITCHES": 1,
+ "Unbuffer": 1,
+ "mode": 1,
+ "build_regex": 3,
+ "nargs": 2,
+ "Resource": 5,
+ "file_matching": 2,
+ "check_regex": 2,
+ "finder": 1,
+ "options": 7,
+ "FILE...": 1,
+ "DIRECTORY...": 1,
+ "designed": 1,
+ "replacement": 1,
+ "uses": 2,
+ "": 5,
+ "searches": 1,
+ "named": 3,
+ "FILEs": 1,
+ "standard": 1,
+ "PATTERN.": 1,
+ "By": 2,
+ "prints": 2,
+ "also": 7,
+ "actually": 1,
+ "let": 1,
+ "advantage": 1,
+ ".wango": 1,
+ "won": 1,
+ "throw": 1,
+ "away": 1,
+ "times": 2,
+ "symlinks": 1,
+ "whatever": 1,
+ "were": 1,
+ "specified": 3,
+ "line.": 4,
+ "default.": 2,
+ "": 11,
+ "included": 1,
+ "search.": 1,
+ "matched": 1,
+ "against": 1,
+ "shell": 4,
+ "glob.": 1,
+ "<-i>": 5,
+ "<-w>": 2,
+ "<-v>": 3,
+ "<-Q>": 4,
+ "relative": 1,
+ "convenience": 1,
+ "<-f>": 6,
+ "<--group>": 2,
+ "<--nogroup>": 2,
+ "groups": 1,
+ "with.": 1,
+ "interactively.": 1,
+ "result": 1,
+ "per": 1,
+ "grep.": 2,
+ "redirected.": 1,
+ "<-H>": 1,
+ "<--with-filename>": 1,
+ "<-h>": 1,
+ "<--no-filename>": 1,
+ "Suppress": 1,
+ "prefixing": 1,
+ "searched.": 1,
+ "<--help>": 1,
+ "short": 1,
+ "help": 2,
+ "statement.": 1,
+ "<--ignore-case>": 1,
+ "Ignore": 3,
+ "case": 3,
+ "strings.": 1,
+ "applies": 3,
+ "regexes": 3,
+ "<-g>": 5,
+ "<-G>": 3,
+ "options.": 4,
+ "": 2,
+ "etc": 2,
+ "directories.": 2,
+ "mason": 1,
+ "may": 3,
+ "wish": 1,
+ "include": 1,
+ "<--ignore-dir=data>": 1,
+ "<--noignore-dir>": 1,
+ "normally": 1,
+ "perhaps": 1,
+ "research": 1,
+ "<.svn/props>": 1,
+ "name.": 1,
+ "Nested": 1,
+ "": 1,
+ "NOT": 1,
+ "supported.": 1,
+ "specify": 1,
+ "<--ignore-dir=foo>": 1,
+ "taken": 1,
+ "account": 1,
+ "explicitly": 1,
+ "": 2,
+ "Multiple": 1,
+ "<--line>": 1,
+ "comma": 1,
+ "separated": 2,
+ "<--line=3,5,7>": 1,
+ "<--line=4-7>": 1,
+ "works.": 1,
+ "ascending": 1,
+ "order": 2,
+ "matter": 1,
+ "<-l>": 2,
+ "<--files-with-matches>": 1,
+ "text.": 1,
+ "<-L>": 1,
+ "<--files-without-matches>": 1,
+ "equivalent": 2,
+ "specifying": 1,
+ "Specify": 1,
+ "explicitly.": 1,
+ "helpful": 2,
+ "": 1,
+ "via": 1,
+ "": 4,
+ "": 4,
+ "environment": 2,
+ "variables.": 1,
+ "Using": 3,
+ "suppress": 3,
+ "grouping": 3,
+ "coloring": 3,
+ "piping": 3,
+ "does.": 2,
+ "<--passthru>": 1,
+ "whether": 1,
+ "they": 1,
+ "expression.": 1,
+ "Highlighting": 1,
+ "though": 1,
+ "highlight": 1,
+ "seeing": 1,
+ "tail": 1,
+ "/access.log": 1,
+ "<--print0>": 1,
+ "works": 1,
+ "conjunction": 1,
+ "null": 1,
+ "byte": 1,
+ "usual": 1,
+ "newline.": 1,
+ "dealing": 1,
+ "whitespace": 1,
+ "html": 1,
+ "xargs": 2,
+ "rm": 1,
+ "<--literal>": 1,
+ "Quote": 1,
+ "metacharacters": 2,
+ "treated": 1,
+ "literal.": 1,
+ "<-r>": 1,
+ "<-R>": 1,
+ "<--recurse>": 1,
+ "compatibility": 2,
+ "turning": 1,
+ "<--no-recurse>": 1,
+ "off.": 1,
+ "<--smart-case>": 1,
+ "<--no-smart-case>": 1,
+ "strings": 1,
+ "uppercase": 1,
+ "characters.": 1,
+ "similar": 1,
+ "": 1,
+ "vim.": 1,
+ "overrides": 2,
+ "option.": 1,
+ "<--sort-files>": 1,
+ "Sorts": 1,
+ "Use": 6,
+ "listings": 1,
+ "deterministic": 1,
+ "runs": 1,
+ "<--show-types>": 1,
+ "Outputs": 1,
+ "associates": 1,
+ "Works": 1,
+ "<--thpppt>": 1,
+ "Display": 1,
+ "important": 1,
+ "Bill": 1,
+ "Cat": 1,
+ "logo.": 1,
+ "exact": 1,
+ "spelling": 1,
+ "<--thpppppt>": 1,
+ "important.": 1,
+ "make": 3,
+ "perl": 8,
+ "php": 2,
+ "python": 1,
+ "location.": 1,
+ "variable": 1,
+ "specifies": 1,
+ "placed": 1,
+ "front": 1,
+ "explicit": 1,
+ "Specifies": 4,
+ "recognized": 1,
+ "clear": 2,
+ "dark": 1,
+ "underline": 1,
+ "underscore": 2,
+ "blink": 1,
+ "reverse": 1,
+ "concealed": 1,
+ "red": 1,
+ "blue": 1,
+ "magenta": 1,
+ "on_black": 1,
+ "on_red": 1,
+ "on_green": 1,
+ "on_blue": 1,
+ "on_magenta": 1,
+ "on_cyan": 1,
+ "on_white.": 1,
+ "Case": 1,
+ "significant.": 1,
+ "Underline": 1,
+ "reset.": 1,
+ "alone": 1,
+ "foreground": 1,
+ "on_color": 1,
+ "background": 1,
+ "color.": 2,
+ "<--color-filename>": 1,
+ "printed": 1,
+ "<--color>": 1,
+ "mode.": 1,
+ "<--color-lineno>": 1,
+ "See": 1,
+ "": 1,
+ "specifications.": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "send": 1,
+ "output.": 1,
+ "except": 1,
+ "assume": 1,
+ "both": 1,
+ "understands": 1,
+ "sequences.": 1,
+ "never": 1,
+ "ACK": 2,
+ "OTHER": 1,
+ "TOOLS": 1,
+ "Vim": 3,
+ "integration": 3,
+ "integrates": 1,
+ "easily": 2,
+ "editor.": 1,
+ "<.vimrc>": 1,
+ "grepprg": 1,
+ "That": 3,
+ "examples": 1,
+ "<-a>": 1,
+ "flags.": 1,
+ "Now": 1,
+ "step": 1,
+ "Dumper": 1,
+ "perllib": 1,
+ "Emacs": 1,
+ "Phil": 1,
+ "Jackson": 1,
+ "put": 1,
+ "": 1,
+ "extension": 1,
+ "": 1,
+ "TextMate": 2,
+ "Pedro": 1,
+ "Melo": 1,
+ "who": 1,
+ "writes": 1,
+ "Shell": 2,
+ "Code": 1,
+ "greater": 1,
+ "normal": 1,
+ "<$?=256>": 1,
+ "": 1,
+ "backticks.": 1,
+ "errors": 1,
+ "used.": 1,
+ "least": 1,
+ "returned.": 1,
+ "DEBUGGING": 1,
+ "PROBLEMS": 1,
+ "expecting": 1,
+ "forgotten": 1,
+ "<--noenv>": 1,
+ "<.ackrc>": 1,
+ "remember.": 1,
+ "Put": 1,
+ "definitions": 1,
+ "it.": 1,
+ "smart": 1,
+ "too.": 1,
+ "there.": 1,
+ "working": 1,
+ "big": 1,
+ "codesets": 1,
+ "ideal": 1,
+ "sending": 1,
+ "": 1,
+ "prefer": 1,
+ "doubt": 1,
+ "day": 1,
+ "find": 1,
+ "trouble": 1,
+ "spots": 1,
+ "website": 1,
+ "visitor.": 1,
+ "had": 1,
+ "problem": 1,
+ "loading": 1,
+ "": 1,
+ "took": 1,
+ "log": 3,
+ "scanned": 1,
+ "twice.": 1,
+ "aa.bb.cc.dd": 1,
+ "/path/to/access.log": 1,
+ "B5": 1,
+ "troublesome.gif": 1,
+ "first": 1,
+ "finds": 2,
+ "IP.": 1,
+ "second": 1,
+ "troublesome": 1,
+ "GIF": 1,
+ "shows": 1,
+ "previous": 1,
+ "five": 1,
+ "case.": 1,
+ "Share": 1,
+ "knowledge": 1,
+ "Join": 1,
+ "mailing": 1,
+ "list.": 1,
+ "Send": 1,
+ "me": 1,
+ "tips": 1,
+ "here.": 1,
+ "FAQ": 1,
+ "isn": 1,
+ "driven": 1,
+ "filetype.": 1,
+ "": 1,
+ "kind": 1,
+ "ignores": 1,
+ "switch": 1,
+ "you.": 1,
+ "source": 2,
+ "compiled": 1,
+ "control": 1,
+ "metadata": 1,
+ "wastes": 1,
+ "lot": 1,
+ "those": 2,
+ "returning": 1,
+ "great": 1,
+ "did": 1,
+ "only.": 1,
+ "perfectly": 1,
+ "<-p>": 1,
+ "<-n>": 1,
+ "switches.": 1,
+ "select": 1,
+ "update.": 1,
+ "change": 1,
+ "PHP": 1,
+ "Unix": 1,
+ "Can": 1,
+ "recognize": 1,
+ "<.xyz>": 1,
+ "already": 2,
+ "program/package": 1,
+ "ack.": 2,
+ "Yes": 1,
+ "know.": 1,
+ "nothing": 1,
+ "suggest": 1,
+ "symlink": 1,
+ "points": 1,
+ "": 1,
+ "crucial": 1,
+ "benefits": 1,
+ "having": 1,
+ "Regan": 1,
+ "Slaven": 1,
+ "ReziE": 1,
+ "<0x107>": 1,
+ "Mark": 1,
+ "Stosberg": 1,
+ "David": 1,
+ "Alan": 1,
+ "Pisoni": 1,
+ "Adriano": 1,
+ "Ferreira": 1,
+ "James": 1,
+ "Keenan": 1,
+ "Leland": 1,
+ "Johnson": 1,
+ "Ricardo": 1,
+ "Signes": 1,
+ "Pete": 1,
+ "Krawczyk.": 1,
+ "files_defaults": 3,
+ "skip_dirs": 3,
+ "CORE": 3,
+ "curdir": 1,
+ "updir": 1,
+ "__PACKAGE__": 1,
+ "parms": 15,
+ "@queue": 8,
+ "_setup": 2,
+ "fullpath": 12,
+ "local": 5,
+ "_candidate_files": 2,
+ "sort_standard": 2,
+ "cmp": 2,
+ "sort_reverse": 1,
+ "@parts": 3,
+ "passed_parms": 6,
+ "parm": 1,
+ "badkey": 1,
+ "dh": 4,
+ "opendir": 1,
+ "@newfiles": 5,
+ "sort_sub": 4,
+ "readdir": 1,
+ "has_stat": 3,
+ "closedir": 1,
+ "": 1,
+ "updated": 1,
+ "update": 1,
+ "message": 1,
+ "bak": 1,
+ "core": 1,
+ "swp": 1,
+ "js": 1,
+ "1": 1,
+ "str": 12,
+ "regex_is_lc": 2,
+ "S": 1,
+ ".*//": 1,
+ "_my_program": 3,
+ "Basename": 2,
+ "FAIL": 12,
+ "confess": 2,
+ "@ISA": 2,
+ "could_be_binary": 4,
+ "opened": 1,
+ "size": 5,
+ "_000": 1,
+ "sysread": 1,
+ "regex/m": 1,
+ "readline": 1,
+ "nexted": 3
+ },
+ "XML": {
+ "": 11,
+ "version=": 20,
+ "encoding=": 8,
+ "": 7,
+ "ToolsVersion=": 6,
+ "DefaultTargets=": 5,
+ "xmlns=": 7,
+ "": 21,
+ "Project=": 12,
+ "Condition=": 37,
+ "": 26,
+ "": 6,
+ "Debug": 10,
+ "": 6,
+ "": 6,
+ "AnyCPU": 10,
+ "": 6,
+ "": 5,
+ "{": 6,
+ "D377F": 1,
+ "-": 90,
+ "A": 20,
+ "A798": 1,
+ "B3FD04C": 1,
+ "}": 6,
+ "": 5,
+ "": 4,
+ "Exe": 4,
+ "": 4,
+ "": 1,
+ "vbproj_sample.Module1": 1,
+ "": 1,
+ "": 5,
+ "vbproj_sample": 1,
+ "": 5,
+ "": 4,
+ "vbproj": 3,
+ "sample": 6,
+ "": 4,
+ "": 3,
+ "": 3,
+ "": 1,
+ "Console": 3,
+ "": 1,
+ "": 5,
+ "v4.5.1": 5,
+ "": 5,
+ "": 3,
+ "true": 24,
+ "": 3,
+ "": 25,
+ "": 6,
+ "": 6,
+ "": 5,
+ "": 5,
+ "": 6,
+ "full": 4,
+ "": 6,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 8,
+ "bin": 11,
+ "": 8,
+ "": 5,
+ "sample.xml": 2,
+ "": 5,
+ "": 2,
+ "": 2,
+ "pdbonly": 3,
+ "false": 10,
+ "": 7,
+ "": 7,
+ "Release": 6,
+ "": 1,
+ "On": 2,
+ "": 1,
+ "": 1,
+ "Binary": 1,
+ "": 1,
+ "": 1,
+ "Off": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 26,
+ "": 30,
+ "Include=": 78,
+ "": 26,
+ "": 10,
+ "": 3,
+ "True": 13,
+ "": 3,
+ "": 3,
+ "Application.myapp": 1,
+ "": 3,
+ "": 3,
+ "": 1,
+ "": 1,
+ "Resources.resx": 1,
+ "Settings.settings": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 3,
+ "VbMyResourcesResXFileCodeGenerator": 1,
+ "": 3,
+ "": 3,
+ "Resources.Designer.vb": 1,
+ "": 3,
+ "": 2,
+ "My.Resources": 1,
+ "": 2,
+ "": 1,
+ "Designer": 1,
+ "": 1,
+ "": 1,
+ "": 5,
+ "MyApplicationCodeGenerator": 1,
+ "Application.Designer.vb": 1,
+ "": 2,
+ "SettingsSingleFileGenerator": 1,
+ "My": 1,
+ "Settings.Designer.vb": 1,
+ "": 7,
+ "": 3,
+ "MyCommon": 1,
+ "": 3,
+ "": 1,
+ "Name=": 1,
+ "": 1,
+ "Text=": 1,
+ "": 1,
+ "": 1,
+ "xmlns": 2,
+ "ea=": 2,
+ "": 1,
+ "organisation=": 3,
+ "module=": 3,
+ "revision=": 3,
+ "status=": 1,
+ "": 3,
+ "this": 77,
+ "is": 123,
+ "a": 128,
+ "easyant": 3,
+ "module.ivy": 1,
+ "file": 3,
+ "for": 60,
+ "java": 1,
+ "standard": 1,
+ "application": 2,
+ "": 3,
+ "": 1,
+ "": 1,
+ "name=": 270,
+ "value=": 11,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 2,
+ "visibility=": 2,
+ "description=": 4,
+ "": 1,
+ "": 1,
+ "": 4,
+ "org=": 1,
+ "rev=": 1,
+ "conf=": 1,
+ "default": 9,
+ "junit": 2,
+ "test": 7,
+ "/": 6,
+ "": 1,
+ "": 1,
+ "": 2,
+ "This": 21,
+ "module.ant": 1,
+ "optionnal": 1,
+ "and": 44,
+ "designed": 1,
+ "to": 164,
+ "customize": 1,
+ "your": 8,
+ "build": 1,
+ "with": 23,
+ "own": 2,
+ "specific": 8,
+ "target.": 1,
+ "": 2,
+ "": 2,
+ "my": 2,
+ "awesome": 1,
+ "additionnal": 1,
+ "target": 6,
+ "": 2,
+ "": 2,
+ "extensionOf=": 1,
+ "i": 2,
+ "would": 2,
+ "love": 1,
+ "could": 1,
+ "easily": 1,
+ "plug": 1,
+ "pre": 1,
+ "compile": 1,
+ "step": 1,
+ "": 1,
+ "": 2,
+ "": 2,
+ "cfa7a11": 1,
+ "a5cd": 1,
+ "bd7b": 1,
+ "b210d4d51a29": 1,
+ "fsproj_sample": 2,
+ "": 1,
+ "": 1,
+ "fsproj": 1,
+ "": 2,
+ "": 2,
+ "": 6,
+ "DEBUG": 3,
+ ";": 52,
+ "TRACE": 6,
+ "": 6,
+ "": 8,
+ "": 8,
+ "fsproj_sample.XML": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 5,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 2,
+ "(": 65,
+ "MSBuildExtensionsPath32": 2,
+ ")": 58,
+ "..": 1,
+ "Microsoft": 2,
+ "SDKs": 1,
+ "F#": 1,
+ "Framework": 1,
+ "v4.0": 1,
+ "Microsoft.FSharp.Targets": 2,
+ "": 2,
+ "": 1,
+ "": 1,
+ "VisualStudio": 1,
+ "v": 1,
+ "VisualStudioVersion": 1,
+ "FSharp": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "c67af951": 1,
+ "d8d6376993e7": 1,
+ "": 2,
+ "Properties": 3,
+ "": 2,
+ "nproj_sample": 2,
+ "": 1,
+ "": 1,
+ "": 1,
+ "Net": 1,
+ "": 1,
+ "": 1,
+ "ProgramFiles": 1,
+ "Nemerle": 3,
+ "": 1,
+ "": 1,
+ "NemerleBinPathRoot": 1,
+ "NemerleVersion": 1,
+ "": 1,
+ "nproj": 1,
+ "": 4,
+ "prompt": 4,
+ "": 4,
+ "OutputPath": 1,
+ "AssemblyName": 1,
+ ".xml": 1,
+ "": 3,
+ "": 3,
+ "": 1,
+ "False": 1,
+ "": 1,
+ "": 2,
+ "Nemerle.dll": 1,
+ "": 2,
+ "": 1,
+ "Nemerle.Linq.dll": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "TS": 1,
+ "": 1,
+ "language=": 1,
+ "": 1,
+ "": 2,
+ "MainWindow": 1,
+ "": 2,
+ "": 8,
+ "": 8,
+ "filename=": 8,
+ "line=": 8,
+ "": 8,
+ "United": 1,
+ "Kingdom": 1,
+ "": 8,
+ "": 8,
+ "Reino": 1,
+ "Unido": 1,
+ "": 8,
+ "": 8,
+ "God": 1,
+ "save": 2,
+ "the": 261,
+ "Queen": 1,
+ "Deus": 1,
+ "salve": 1,
+ "Rainha": 1,
+ "England": 1,
+ "Inglaterra": 1,
+ "Wales": 1,
+ "Gales": 1,
+ "Scotland": 1,
+ "Esc": 1,
+ "cia": 1,
+ "Northern": 1,
+ "Ireland": 1,
+ "Irlanda": 1,
+ "Norte": 1,
+ "Portuguese": 1,
+ "Portugu": 1,
+ "s": 3,
+ "English": 1,
+ "Ingl": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "compatVersion=": 1,
+ "": 1,
+ "FreeMedForms": 1,
+ "": 1,
+ "": 1,
+ "C": 1,
+ "by": 14,
+ "Eric": 1,
+ "MAEKER": 1,
+ "MD": 1,
+ "": 1,
+ "": 1,
+ "GPLv3": 1,
+ "": 1,
+ "": 1,
+ "Patient": 1,
+ "data": 2,
+ "": 1,
+ "The": 75,
+ "XML": 1,
+ "form": 1,
+ "loader/saver": 1,
+ "FreeMedForms.": 1,
+ "": 1,
+ "http": 1,
+ "//www.freemedforms.com/": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "D9BF15": 1,
+ "D10": 1,
+ "ABAD688E8B": 1,
+ "csproj_sample": 1,
+ "csproj": 1,
+ "": 1,
+ "": 1,
+ "ReactiveUI": 2,
+ "": 1,
+ "": 1,
+ "": 120,
+ "": 120,
+ "IObservedChange": 5,
+ "generic": 3,
+ "interface": 4,
+ "that": 94,
+ "replaces": 1,
+ "non": 1,
+ "PropertyChangedEventArgs.": 1,
+ "Note": 7,
+ "it": 16,
+ "used": 19,
+ "both": 2,
+ "Changing": 5,
+ "i.e.": 23,
+ "Changed": 4,
+ "Observables.": 2,
+ "In": 6,
+ "future": 2,
+ "will": 65,
+ "be": 57,
+ "Covariant": 1,
+ "which": 12,
+ "allow": 1,
+ "simpler": 1,
+ "casting": 1,
+ "between": 15,
+ "changes.": 2,
+ "": 121,
+ "": 120,
+ "object": 42,
+ "has": 16,
+ "raised": 1,
+ "change.": 12,
+ "name": 7,
+ "of": 75,
+ "property": 74,
+ "changed": 18,
+ "on": 35,
+ "Sender.": 1,
+ "value": 44,
+ "changed.": 9,
+ "IMPORTANT": 1,
+ "NOTE": 1,
+ "often": 3,
+ "not": 9,
+ "set": 41,
+ "performance": 1,
+ "reasons": 1,
+ "unless": 1,
+ "you": 20,
+ "have": 17,
+ "explicitly": 1,
+ "requested": 1,
+ "an": 88,
+ "Observable": 56,
+ "via": 8,
+ "method": 34,
+ "such": 5,
+ "as": 25,
+ "ObservableForProperty.": 1,
+ "To": 4,
+ "retrieve": 3,
+ "use": 5,
+ "Value": 3,
+ "extension": 2,
+ "method.": 2,
+ "IReactiveNotifyPropertyChanged": 6,
+ "represents": 4,
+ "extended": 1,
+ "version": 3,
+ "INotifyPropertyChanged": 1,
+ "also": 17,
+ "exposes": 1,
+ "IEnableLogger": 1,
+ "dummy": 1,
+ "attaching": 1,
+ "any": 11,
+ "class": 11,
+ "give": 1,
+ "access": 3,
+ "Log": 2,
+ "When": 5,
+ "called": 5,
+ "fire": 11,
+ "change": 26,
+ "notifications": 22,
+ "neither": 3,
+ "traditional": 3,
+ "nor": 3,
+ "until": 7,
+ "return": 11,
+ "disposed.": 3,
+ "": 36,
+ "An": 26,
+ "when": 38,
+ "disposed": 4,
+ "reenables": 3,
+ "notifications.": 5,
+ "": 36,
+ "Represents": 4,
+ "fires": 6,
+ "*before*": 2,
+ "about": 5,
+ "should": 10,
+ "duplicate": 2,
+ "if": 27,
+ "same": 8,
+ "multiple": 6,
+ "times.": 4,
+ "*after*": 2,
+ "TSender": 1,
+ "helper": 5,
+ "adds": 2,
+ "typed": 2,
+ "versions": 2,
+ "Changed.": 1,
+ "IReactiveCollection": 3,
+ "collection": 27,
+ "can": 11,
+ "notify": 3,
+ "its": 4,
+ "contents": 2,
+ "are": 13,
+ "either": 1,
+ "items": 27,
+ "added/removed": 1,
+ "or": 24,
+ "itself": 2,
+ "changes": 13,
+ ".": 20,
+ "It": 1,
+ "important": 6,
+ "implement": 5,
+ "Changing/Changed": 1,
+ "from": 12,
+ "semantically": 3,
+ "Fires": 14,
+ "added": 6,
+ "once": 4,
+ "per": 2,
+ "item": 19,
+ "added.": 4,
+ "Functions": 2,
+ "add": 2,
+ "AddRange": 2,
+ "provided": 14,
+ "was": 6,
+ "before": 8,
+ "going": 4,
+ "collection.": 6,
+ "been": 5,
+ "removed": 4,
+ "providing": 20,
+ "removed.": 4,
+ "whenever": 18,
+ "number": 9,
+ "in": 45,
+ "new": 10,
+ "Count.": 4,
+ "previous": 2,
+ "Provides": 4,
+ "Item": 4,
+ "implements": 8,
+ "IReactiveNotifyPropertyChanged.": 4,
+ "only": 18,
+ "enabled": 8,
+ "ChangeTrackingEnabled": 2,
+ "True.": 2,
+ "Enables": 2,
+ "ItemChanging": 2,
+ "ItemChanged": 2,
+ "properties": 29,
+ "implementing": 2,
+ "rebroadcast": 2,
+ "through": 3,
+ "ItemChanging/ItemChanged.": 2,
+ "T": 1,
+ "type": 23,
+ "specified": 7,
+ "Observables": 4,
+ "IMessageBus": 1,
+ "act": 2,
+ "simple": 2,
+ "way": 2,
+ "ViewModels": 3,
+ "other": 9,
+ "objects": 4,
+ "communicate": 2,
+ "each": 7,
+ "loosely": 2,
+ "coupled": 2,
+ "way.": 2,
+ "Specifying": 2,
+ "messages": 22,
+ "go": 2,
+ "where": 4,
+ "done": 2,
+ "combination": 2,
+ "Type": 9,
+ "message": 30,
+ "well": 2,
+ "additional": 3,
+ "parameter": 6,
+ "unique": 12,
+ "string": 13,
+ "distinguish": 12,
+ "arbitrarily": 2,
+ "client.": 2,
+ "Listen": 4,
+ "provides": 6,
+ "Message": 2,
+ "RegisterMessageSource": 4,
+ "SendMessage.": 2,
+ "": 12,
+ "listen": 6,
+ "to.": 7,
+ "": 12,
+ "": 84,
+ "identical": 11,
+ "types": 10,
+ "one": 27,
+ "purpose": 10,
+ "leave": 10,
+ "null.": 10,
+ "": 83,
+ "Determins": 2,
+ "particular": 2,
+ "registered.": 2,
+ "message.": 1,
+ "posted": 3,
+ "Type.": 2,
+ "Registers": 3,
+ "representing": 20,
+ "stream": 7,
+ "send.": 4,
+ "Another": 2,
+ "part": 2,
+ "code": 4,
+ "then": 3,
+ "call": 5,
+ "Observable.": 6,
+ "subscribed": 2,
+ "sent": 2,
+ "out": 4,
+ "provided.": 5,
+ "Sends": 2,
+ "single": 2,
+ "using": 9,
+ "contract.": 2,
+ "Consider": 2,
+ "instead": 2,
+ "sending": 2,
+ "response": 2,
+ "events.": 2,
+ "actual": 2,
+ "send": 3,
+ "returns": 5,
+ "current": 10,
+ "logger": 2,
+ "allows": 15,
+ "log": 2,
+ "attached.": 1,
+ "structure": 1,
+ "representation": 1,
+ "memoizing": 2,
+ "cache": 14,
+ "evaluate": 1,
+ "function": 13,
+ "but": 7,
+ "keep": 1,
+ "recently": 3,
+ "evaluated": 1,
+ "parameters.": 1,
+ "Since": 1,
+ "mathematical": 2,
+ "sense": 1,
+ "key": 12,
+ "*always*": 1,
+ "maps": 1,
+ "corresponding": 2,
+ "value.": 2,
+ "calculation": 8,
+ "function.": 6,
+ "returned": 2,
+ "Constructor": 2,
+ "whose": 7,
+ "results": 6,
+ "want": 2,
+ "Tag": 1,
+ "user": 2,
+ "defined": 1,
+ "size": 1,
+ "maintain": 1,
+ "after": 1,
+ "old": 1,
+ "start": 1,
+ "thrown": 1,
+ "out.": 1,
+ "result": 3,
+ "gets": 1,
+ "evicted": 2,
+ "because": 2,
+ "Invalidate": 2,
+ "Evaluates": 1,
+ "returning": 1,
+ "cached": 2,
+ "possible": 1,
+ "pass": 2,
+ "optional": 2,
+ "parameter.": 1,
+ "Ensure": 1,
+ "next": 1,
+ "time": 3,
+ "queried": 1,
+ "called.": 1,
+ "all": 4,
+ "Returns": 5,
+ "values": 4,
+ "currently": 2,
+ "MessageBus": 3,
+ "bus.": 1,
+ "scheduler": 11,
+ "post": 2,
+ "RxApp.DeferredScheduler": 2,
+ "default.": 2,
+ "Current": 1,
+ "RxApp": 1,
+ "global": 1,
+ "object.": 3,
+ "ViewModel": 8,
+ "another": 3,
+ "Return": 1,
+ "instance": 2,
+ "type.": 3,
+ "registered": 1,
+ "ObservableAsPropertyHelper": 6,
+ "help": 1,
+ "backed": 1,
+ "read": 3,
+ "still": 1,
+ "created": 2,
+ "directly": 1,
+ "more": 16,
+ "ToProperty": 2,
+ "ObservableToProperty": 1,
+ "methods.": 2,
+ "so": 1,
+ "output": 1,
+ "chained": 2,
+ "example": 2,
+ "property.": 12,
+ "Constructs": 4,
+ "base": 3,
+ "on.": 6,
+ "action": 2,
+ "take": 2,
+ "typically": 1,
+ "t": 2,
+ "bindings": 13,
+ "null": 4,
+ "OAPH": 2,
+ "at": 2,
+ "startup.": 1,
+ "initial": 28,
+ "normally": 6,
+ "Dispatcher": 3,
+ "based": 9,
+ "last": 1,
+ "Exception": 1,
+ "steps": 1,
+ "taken": 1,
+ "ensure": 3,
+ "never": 3,
+ "complete": 1,
+ "fail.": 1,
+ "Converts": 2,
+ "automatically": 3,
+ "onChanged": 2,
+ "raise": 2,
+ "notification.": 2,
+ "equivalent": 2,
+ "convenient.": 1,
+ "Expression": 7,
+ "initialized": 2,
+ "backing": 9,
+ "field": 10,
+ "ReactiveObject": 11,
+ "ObservableAsyncMRUCache": 2,
+ "memoization": 2,
+ "asynchronous": 4,
+ "expensive": 2,
+ "compute": 1,
+ "MRU": 1,
+ "fixed": 1,
+ "limit": 5,
+ "cache.": 5,
+ "guarantees": 6,
+ "given": 11,
+ "flight": 2,
+ "subsequent": 1,
+ "requests": 4,
+ "wait": 3,
+ "first": 1,
+ "empty": 1,
+ "web": 6,
+ "image": 1,
+ "receives": 1,
+ "two": 1,
+ "concurrent": 5,
+ "issue": 2,
+ "WebRequest": 1,
+ "does": 1,
+ "mean": 1,
+ "request": 3,
+ "Concurrency": 1,
+ "limited": 1,
+ "maxConcurrent": 1,
+ "too": 1,
+ "many": 1,
+ "operations": 6,
+ "progress": 1,
+ "further": 1,
+ "queued": 1,
+ "slot": 1,
+ "available.": 1,
+ "performs": 1,
+ "asyncronous": 1,
+ "async": 3,
+ "CPU": 1,
+ "Observable.Return": 1,
+ "may": 1,
+ "result.": 2,
+ "*must*": 1,
+ "equivalently": 1,
+ "input": 2,
+ "being": 1,
+ "memoized": 1,
+ "calculationFunc": 2,
+ "depends": 1,
+ "varables": 1,
+ "than": 5,
+ "unpredictable.": 1,
+ "reached": 2,
+ "discarded.": 4,
+ "maximum": 2,
+ "regardless": 2,
+ "caches": 2,
+ "server.": 2,
+ "clean": 1,
+ "up": 25,
+ "manage": 1,
+ "disk": 1,
+ "download": 1,
+ "temporary": 1,
+ "folder": 1,
+ "onRelease": 1,
+ "delete": 1,
+ "file.": 1,
+ "run": 7,
+ "defaults": 1,
+ "TaskpoolScheduler": 2,
+ "Issues": 1,
+ "fetch": 1,
+ "operation.": 1,
+ "operation": 2,
+ "finishes.": 1,
+ "If": 6,
+ "immediately": 3,
+ "upon": 1,
+ "subscribing": 1,
+ "returned.": 2,
+ "provide": 2,
+ "synchronous": 1,
+ "AsyncGet": 1,
+ "resulting": 1,
+ "Works": 2,
+ "like": 2,
+ "SelectMany": 2,
+ "memoizes": 2,
+ "selector": 5,
+ "calls.": 2,
+ "addition": 3,
+ "no": 4,
+ "selectors": 2,
+ "running": 4,
+ "concurrently": 2,
+ "queues": 2,
+ "rest.": 2,
+ "very": 2,
+ "services": 2,
+ "avoid": 2,
+ "potentially": 2,
+ "spamming": 2,
+ "server": 2,
+ "hundreds": 2,
+ "requests.": 2,
+ "similar": 3,
+ "passed": 1,
+ "SelectMany.": 1,
+ "similarly": 1,
+ "ObservableAsyncMRUCache.AsyncGet": 1,
+ "must": 2,
+ "sense.": 1,
+ "flattened": 2,
+ "selector.": 2,
+ "overload": 2,
+ "useful": 2,
+ "making": 3,
+ "service": 1,
+ "several": 1,
+ "places": 1,
+ "paths": 1,
+ "already": 1,
+ "configured": 1,
+ "ObservableAsyncMRUCache.": 1,
+ "notification": 6,
+ "Attempts": 1,
+ "expression": 3,
+ "expression.": 1,
+ "entire": 1,
+ "able": 1,
+ "followed": 1,
+ "otherwise": 1,
+ "Given": 3,
+ "fully": 3,
+ "filled": 1,
+ "SetValueToProperty": 1,
+ "apply": 3,
+ "target.property": 1,
+ "This.GetValue": 1,
+ "observed": 1,
+ "onto": 1,
+ "convert": 2,
+ "stream.": 3,
+ "ValueIfNotDefault": 1,
+ "filters": 1,
+ "BindTo": 1,
+ "takes": 1,
+ "applies": 1,
+ "Conceptually": 1,
+ "child": 2,
+ "without": 1,
+ "checks.": 1,
+ "set.": 3,
+ "x.Foo.Bar.Baz": 1,
+ "disconnects": 1,
+ "binding.": 1,
+ "ReactiveCollection.": 1,
+ "ReactiveCollection": 1,
+ "existing": 3,
+ "list.": 2,
+ "list": 1,
+ "populate": 1,
+ "anything": 2,
+ "Change": 2,
+ "Tracking": 2,
+ "Creates": 3,
+ "adding": 2,
+ "completes": 4,
+ "optionally": 2,
+ "ensuring": 2,
+ "delay.": 2,
+ "withDelay": 2,
+ "leak": 2,
+ "Timer.": 2,
+ "always": 4,
+ "UI": 2,
+ "thread.": 3,
+ "put": 2,
+ "into": 2,
+ "populated": 4,
+ "faster": 2,
+ "delay": 2,
+ "Select": 3,
+ "item.": 3,
+ "creating": 2,
+ "collections": 1,
+ "updated": 1,
+ "respective": 1,
+ "Model": 1,
+ "updated.": 1,
+ "Collection.Select": 1,
+ "mirror": 1,
+ "ObservableForProperty": 14,
+ "ReactiveObject.": 1,
+ "unlike": 13,
+ "Selector": 1,
+ "classes": 2,
+ "INotifyPropertyChanged.": 1,
+ "monitor": 1,
+ "RaiseAndSetIfChanged": 2,
+ "Setter": 2,
+ "write": 2,
+ "assumption": 4,
+ "named": 2,
+ "RxApp.GetFieldNameForPropertyNameFunc.": 2,
+ "almost": 2,
+ "keyword.": 2,
+ "newly": 2,
+ "intended": 5,
+ "Silverlight": 2,
+ "WP7": 1,
+ "reflection": 1,
+ "cannot": 1,
+ "private": 1,
+ "field.": 1,
+ "Reference": 1,
+ "Use": 15,
+ "custom": 4,
+ "raiseAndSetIfChanged": 1,
+ "doesn": 1,
+ "x": 1,
+ "x.SomeProperty": 1,
+ "suffice.": 1,
+ "RaisePropertyChanging": 2,
+ "mock": 4,
+ "scenarios": 4,
+ "manually": 4,
+ "fake": 4,
+ "invoke": 4,
+ "raisePropertyChanging": 4,
+ "faking": 4,
+ "RaisePropertyChanged": 2,
+ "helps": 1,
+ "make": 2,
+ "them": 1,
+ "compatible": 1,
+ "Rx.Net.": 1,
+ "declare": 1,
+ "initialize": 1,
+ "derive": 1,
+ "properties/methods": 1,
+ "MakeObjectReactiveHelper.": 1,
+ "InUnitTestRunner": 1,
+ "attempts": 1,
+ "determine": 1,
+ "heuristically": 1,
+ "unit": 3,
+ "framework.": 1,
+ "we": 1,
+ "determined": 1,
+ "framework": 1,
+ "running.": 1,
+ "GetFieldNameForProperty": 1,
+ "convention": 2,
+ "GetFieldNameForPropertyNameFunc.": 1,
+ "needs": 1,
+ "found.": 1,
+ "name.": 1,
+ "DeferredScheduler": 1,
+ "schedule": 2,
+ "work": 2,
+ "normal": 2,
+ "mode": 2,
+ "DispatcherScheduler": 1,
+ "Unit": 1,
+ "Test": 1,
+ "Immediate": 1,
+ "simplify": 1,
+ "writing": 1,
+ "common": 1,
+ "tests.": 1,
+ "background": 1,
+ "modes": 1,
+ "TPL": 1,
+ "Task": 1,
+ "Pool": 1,
+ "Threadpool": 1,
+ "Set": 3,
+ "provider": 1,
+ "usually": 1,
+ "entry": 1,
+ "MessageBus.Current.": 1,
+ "override": 1,
+ "naming": 1,
+ "one.": 1,
+ "WhenAny": 12,
+ "observe": 12,
+ "constructors": 12,
+ "need": 12,
+ "setup.": 12,
+ "": 1,
+ "": 1,
+ "": 10,
+ "": 3,
+ "FC737F1": 1,
+ "C7A5": 1,
+ "A066": 1,
+ "A32D752A2FF": 1,
+ "": 3,
+ "": 3,
+ "cpp": 1,
+ "c": 1,
+ "cc": 1,
+ "cxx": 1,
+ "def": 1,
+ "odl": 1,
+ "idl": 1,
+ "hpj": 1,
+ "bat": 1,
+ "asm": 1,
+ "asmx": 1,
+ "": 3,
+ "": 10,
+ "BD": 1,
+ "b04": 1,
+ "EB": 1,
+ "FBE52EBFB": 1,
+ "h": 1,
+ "hh": 1,
+ "hpp": 1,
+ "hxx": 1,
+ "hm": 1,
+ "inl": 1,
+ "inc": 1,
+ "xsd": 1,
+ "DA6AB6": 1,
+ "F800": 1,
+ "c08": 1,
+ "B7A": 1,
+ "BB121AAD01": 1,
+ "rc": 1,
+ "ico": 1,
+ "cur": 1,
+ "bmp": 1,
+ "dlg": 1,
+ "rc2": 1,
+ "rct": 1,
+ "rgs": 1,
+ "gif": 1,
+ "jpg": 1,
+ "jpeg": 1,
+ "jpe": 1,
+ "resx": 1,
+ "tiff": 1,
+ "tif": 1,
+ "png": 1,
+ "wav": 1,
+ "mfcribbon": 1,
+ "ms": 1,
+ "": 2,
+ "": 4,
+ "Header": 2,
+ "Files": 7,
+ "": 2,
+ "": 2,
+ "Resource": 2,
+ "": 1,
+ "": 8,
+ "Source": 3,
+ "": 6,
+ "": 2,
+ "": 1,
+ "Label=": 11,
+ "": 2,
+ "Win32": 2,
+ "": 2,
+ "BF6EED48": 1,
+ "BF18": 1,
+ "C54": 1,
+ "F": 1,
+ "BBF19EEDC7C": 1,
+ "": 1,
+ "ManagedCProj": 1,
+ "": 1,
+ "vcxprojsample": 1,
+ "": 2,
+ "Application": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "v120": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "Unicode": 2,
+ "": 2,
+ "": 4,
+ "": 4,
+ "": 2,
+ "": 2,
+ "": 2,
+ "Level3": 2,
+ "": 1,
+ "Disabled": 1,
+ "": 1,
+ "": 2,
+ "WIN32": 2,
+ "_DEBUG": 1,
+ "%": 2,
+ "PreprocessorDefinitions": 2,
+ "": 2,
+ "": 4,
+ "": 4,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "NDEBUG": 1,
+ "Create": 2,
+ "standalone=": 1,
+ "": 1,
+ "4": 1,
+ "0": 2,
+ "": 1,
+ "storage_type_id=": 1,
+ "": 14,
+ "moduleId=": 14,
+ "": 2,
+ "id=": 141,
+ "buildSystemId=": 2,
+ "": 2,
+ "": 2,
+ "": 12,
+ "point=": 12,
+ "": 2,
+ "": 7,
+ "": 2,
+ "artifactName=": 2,
+ "buildArtefactType=": 2,
+ "buildProperties=": 2,
+ "cleanCommand=": 2,
+ "cdt": 2,
+ "managedbuild": 2,
+ "config": 2,
+ "gnu": 2,
+ "exe": 2,
+ "debug": 1,
+ "1803931088": 1,
+ "parent=": 2,
+ "": 2,
+ "resourcePath=": 2,
+ "": 2,
+ "superClass=": 42,
+ "": 2,
+ "": 2,
+ "buildPath=": 2,
+ "keepEnvironmentInBuildfile=": 2,
+ "managedBuildOn=": 2,
+ "": 12,
+ "": 4,
+ "": 8,
+ "": 8,
+ "defaultValue=": 2,
+ "": 4,
+ "kind=": 6,
+ "paths=": 4,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "flags=": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "release": 1,
+ "32754498": 1,
+ "projectType=": 1,
+ "": 5,
+ "enabled=": 125,
+ "problemReportingEnabled=": 5,
+ "selectedProfileId=": 5,
+ "": 40,
+ "": 40,
+ "": 40,
+ "filePath=": 40,
+ "": 80,
+ "": 40,
+ "": 40,
+ "": 40,
+ "arguments=": 40,
+ "command=": 40,
+ "useDefault=": 40,
+ "": 40,
+ "": 40,
+ "": 4,
+ "instanceId=": 4,
+ "": 4,
+ "": 1
+ },
+ "MTML": {
+ "<$mt:Var>": 15,
+ "name=": 19,
+ "value=": 9,
+ "": 1,
+ "op=": 8,
+ "setvar=": 9,
+ "": 1,
+ "<": 2,
+ "a": 1,
+ "href": 1,
+ "<$mt:CategoryLabel>": 1,
+ "remove_html=": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "function=": 1,
+ "": 1,
+ "gt=": 2,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 2,
+ "from=": 2,
+ "to=": 2,
+ "div": 1,
+ "class": 1,
+ "col_num": 1,
+ "": 2,
+ "": 1
+ },
+ "Lasso": {
+ "[": 22,
+ "]": 23,
+ "//": 169,
+ "-": 2248,
+ "": 6,
+ "2009": 14,
+ "09": 10,
+ "04": 8,
+ "JS": 126,
+ "Added": 40,
+ "content_body": 14,
+ "tag": 11,
+ "for": 65,
+ "compatibility": 4,
+ "with": 25,
+ "pre": 4,
+ "8": 6,
+ "5": 4,
+ "05": 4,
+ "07": 6,
+ "timestamp": 4,
+ "to": 98,
+ "knop_cachestore": 4,
+ "and": 52,
+ "maxage": 2,
+ "parameter": 8,
+ "knop_cachefetch": 4,
+ "Corrected": 8,
+ "construction": 2,
+ "of": 24,
+ "cache_name": 2,
+ "internally": 2,
+ "in": 46,
+ "the": 86,
+ "knop_cache": 2,
+ "tags": 14,
+ "so": 16,
+ "it": 20,
+ "will": 12,
+ "work": 6,
+ "correctly": 2,
+ "at": 10,
+ "site": 4,
+ "root": 2,
+ "2008": 6,
+ "11": 8,
+ "dummy": 2,
+ "knop_debug": 4,
+ "ctype": 2,
+ "be": 38,
+ "able": 14,
+ "transparently": 2,
+ "or": 6,
+ "without": 4,
+ "L": 2,
+ "Debug": 2,
+ "24": 2,
+ "knop_stripbackticks": 2,
+ "01": 4,
+ "28": 2,
+ "Cache": 2,
+ "name": 32,
+ "is": 35,
+ "now": 23,
+ "used": 12,
+ "also": 5,
+ "when": 10,
+ "using": 8,
+ "session": 4,
+ "storage": 8,
+ "2007": 6,
+ "12": 8,
+ "knop_cachedelete": 2,
+ "Created": 4,
+ "03": 2,
+ "knop_foundrows": 2,
+ "condition": 4,
+ "returning": 2,
+ "normal": 2,
+ "found_count": 11,
+ "For": 2,
+ "Lasso": 15,
+ "if": 76,
+ "lasso_tagexists": 4,
+ "define_tag": 48,
+ "namespace=": 12,
+ "return": 75,
+ "__html_reply__": 4,
+ "define_type": 14,
+ "debug": 2,
+ "_unknowntag": 6,
+ "onconvert": 2,
+ "stripbackticks": 2,
+ "description=": 2,
+ "priority=": 2,
+ "required=": 2,
+ "local": 116,
+ "output": 30,
+ "string": 59,
+ "input": 2,
+ "split": 2,
+ "(": 640,
+ ")": 639,
+ "first": 12,
+ ";": 573,
+ "@#output": 2,
+ "/define_tag": 36,
+ "description": 34,
+ "namespace": 16,
+ "priority": 8,
+ "Johan": 2,
+ "S": 2,
+ "lve": 2,
+ "integer": 30,
+ "#charlist": 6,
+ "size": 24,
+ "start": 5,
+ "current": 10,
+ "date": 23,
+ "time": 8,
+ "a": 52,
+ "mixed": 2,
+ "up": 4,
+ "format": 7,
+ "as": 26,
+ "seed": 6,
+ "#seed": 36,
+ "convert": 4,
+ "this": 14,
+ "base": 6,
+ "conversion": 4,
+ "while": 9,
+ "#output": 50,
+ "get": 12,
+ "%": 14,
+ "#base": 8,
+ "+": 146,
+ "/": 6,
+ "/while": 7,
+ "over": 2,
+ "new": 14,
+ "chunk": 2,
+ "millisecond": 2,
+ "math_random": 2,
+ "lower": 2,
+ "upper": 2,
+ "__lassoservice_ip__": 2,
+ "response_localpath": 8,
+ "removetrailing": 8,
+ "response_filepath": 8,
+ "http": 6,
+ "//tagswap.net/found_rows": 2,
+ "action_statement": 2,
+ "string_findregexp": 8,
+ "#sql": 42,
+ "find": 57,
+ "ignorecase": 12,
+ "||": 8,
+ "<": 7,
+ "maxrecords_value": 2,
+ "inaccurate": 2,
+ "must": 4,
+ "accurate": 2,
+ "/if": 53,
+ "Default": 2,
+ "method": 7,
+ "usually": 2,
+ "fastest.": 2,
+ "Can": 2,
+ "not": 10,
+ "GROUP": 4,
+ "BY": 6,
+ "example.": 2,
+ "First": 4,
+ "normalize": 4,
+ "whitespace": 3,
+ "around": 2,
+ "FROM": 2,
+ "expression": 6,
+ "string_replaceregexp": 8,
+ "replace": 8,
+ "ReplaceOnlyOne": 2,
+ "substring": 6,
+ "remove": 6,
+ "ORDER": 2,
+ "statement": 4,
+ "since": 4,
+ "causes": 4,
+ "problems": 2,
+ "field": 26,
+ "aliases": 2,
+ "we": 2,
+ "can": 14,
+ "simple": 2,
+ "later": 2,
+ "else": 32,
+ "query": 4,
+ "contains": 2,
+ "use": 10,
+ "SQL_CALC_FOUND_ROWS": 2,
+ "which": 2,
+ "much": 2,
+ "slower": 2,
+ "see": 16,
+ "//bugs.mysql.com/bug.php": 2,
+ "id": 7,
+ "removeleading": 2,
+ "inline": 4,
+ "sql": 2,
+ "exit": 2,
+ "here": 2,
+ "normally": 2,
+ "/inline": 2,
+ "fallback": 4,
+ "required": 10,
+ "optional": 36,
+ "local_defined": 26,
+ "knop_seed": 2,
+ "Local": 7,
+ "#RandChars": 4,
+ "Get": 2,
+ "Math_Random": 2,
+ "Min": 2,
+ "Max": 2,
+ "Size": 2,
+ "#value": 14,
+ "join": 5,
+ "#numericValue": 4,
+ "&&": 30,
+ "length": 8,
+ "#cryptvalue": 10,
+ "#anyChar": 2,
+ "Encrypt_Blowfish": 2,
+ "decrypt_blowfish": 2,
+ "String_Remove": 2,
+ "StartPosition": 2,
+ "EndPosition": 2,
+ "Seed": 2,
+ "String_IsAlphaNumeric": 2,
+ "self": 72,
+ "_date_msec": 4,
+ "/define_type": 4,
+ "type": 63,
+ "seconds": 4,
+ "map": 23,
+ "default": 4,
+ "store": 4,
+ "all": 6,
+ "page": 14,
+ "vars": 8,
+ "specified": 8,
+ "iterate": 12,
+ "keys": 6,
+ "var": 38,
+ "#item": 10,
+ "isa": 25,
+ "#type": 26,
+ "#data": 14,
+ "insert": 18,
+ "/iterate": 12,
+ "//fail_if": 6,
+ "session_id": 6,
+ "#session": 10,
+ "session_addvar": 4,
+ "#cache_name": 72,
+ "duration": 4,
+ "second": 8,
+ "#expires": 4,
+ "server_name": 6,
+ "initiate": 10,
+ "thread": 6,
+ "RW": 6,
+ "lock": 24,
+ "global": 40,
+ "Thread_RWLock": 6,
+ "create": 6,
+ "reference": 10,
+ "@": 8,
+ "writing": 6,
+ "#lock": 12,
+ "writelock": 4,
+ "check": 6,
+ "cache": 4,
+ "unlock": 6,
+ "writeunlock": 4,
+ "null": 26,
+ "#maxage": 4,
+ "cached": 8,
+ "data": 12,
+ "too": 4,
+ "old": 4,
+ "reading": 2,
+ "readlock": 2,
+ "readunlock": 2,
+ "value": 14,
+ "true": 12,
+ "false": 8,
+ "ignored": 2,
+ "//##################################################################": 4,
+ "knoptype": 2,
+ "All": 4,
+ "Knop": 6,
+ "custom": 8,
+ "types": 10,
+ "should": 4,
+ "have": 6,
+ "parent": 5,
+ "This": 5,
+ "identify": 2,
+ "registered": 2,
+ "knop": 6,
+ "isknoptype": 2,
+ "knop_knoptype": 2,
+ "prototype": 4,
+ "version": 4,
+ "14": 4,
+ "Base": 2,
+ "framework": 2,
+ "Contains": 2,
+ "common": 4,
+ "member": 10,
+ "Used": 2,
+ "boilerplate": 2,
+ "creating": 4,
+ "other": 4,
+ "instance": 8,
+ "variables": 2,
+ "are": 4,
+ "available": 2,
+ "well": 2,
+ "CHANGE": 4,
+ "NOTES": 4,
+ "Syntax": 4,
+ "adjustments": 4,
+ "9": 2,
+ "Changed": 6,
+ "error_msg": 15,
+ "error": 22,
+ "numbers": 2,
+ "added": 10,
+ "even": 2,
+ "language": 10,
+ "already": 2,
+ "exists.": 2,
+ "improved": 4,
+ "reporting": 2,
+ "messages": 6,
+ "such": 2,
+ "from": 6,
+ "bad": 2,
+ "database": 14,
+ "queries": 2,
+ "error_lang": 2,
+ "provide": 2,
+ "knop_lang": 8,
+ "object": 7,
+ "add": 12,
+ "localized": 2,
+ "any": 14,
+ "except": 2,
+ "knop_base": 8,
+ "html": 4,
+ "xhtml": 28,
+ "help": 10,
+ "nicely": 2,
+ "formatted": 2,
+ "output.": 2,
+ "Centralized": 2,
+ "error_code": 11,
+ "knop_base.": 2,
+ "Moved": 6,
+ "codes": 2,
+ "improve": 2,
+ "documentation.": 2,
+ "It": 2,
+ "always": 2,
+ "an": 8,
+ "list": 4,
+ "parameter.": 2,
+ "trace": 2,
+ "tagtime": 4,
+ "was": 6,
+ "nav": 4,
+ "earlier": 2,
+ "varname": 4,
+ "retreive": 2,
+ "variable": 8,
+ "that": 18,
+ "stored": 2,
+ "in.": 2,
+ "automatically": 2,
+ "sense": 2,
+ "doctype": 6,
+ "exists": 2,
+ "buffer.": 2,
+ "The": 6,
+ "result": 6,
+ "performance.": 2,
+ "internal": 2,
+ "html.": 2,
+ "Introduced": 2,
+ "_knop_data": 10,
+ "general": 2,
+ "level": 2,
+ "caching": 2,
+ "between": 2,
+ "different": 2,
+ "objects.": 2,
+ "TODO": 2,
+ "option": 2,
+ "Google": 2,
+ "Code": 2,
+ "Wiki": 2,
+ "working": 2,
+ "properly": 4,
+ "run": 2,
+ "by": 12,
+ "atbegin": 2,
+ "handler": 2,
+ "explicitly": 2,
+ "*/": 2,
+ "array": 20,
+ "entire": 4,
+ "ms": 2,
+ "defined": 4,
+ "each": 8,
+ "instead": 4,
+ "avoid": 2,
+ "recursion": 2,
+ "properties": 4,
+ "params": 11,
+ "|": 13,
+ "#endslash": 10,
+ "#tags": 2,
+ "#t": 2,
+ "doesn": 4,
+ "t": 8,
+ "p": 2,
+ "n": 30,
+ "Parameters": 4,
+ "nParameters": 2,
+ "r": 8,
+ "Internal.": 2,
+ "Finds": 2,
+ "out": 2,
+ "used.": 2,
+ "Looks": 2,
+ "unless": 2,
+ "array.": 2,
+ "variable.": 2,
+ "Looking": 2,
+ "#params": 5,
+ "#xhtmlparam": 4,
+ "boolean": 4,
+ "plain": 2,
+ "#doctype": 4,
+ "copy": 4,
+ "standard": 2,
+ "code": 2,
+ "errors": 12,
+ "error_data": 12,
+ "form": 2,
+ "grid": 2,
+ "lang": 2,
+ "user": 4,
+ "#error_lang": 12,
+ "addlanguage": 4,
+ "strings": 6,
+ "@#errorcodes": 2,
+ "#error_lang_custom": 2,
+ "#custom_language": 10,
+ "once": 4,
+ "one": 2,
+ "key": 3,
+ "#custom_string": 4,
+ "#errorcodes": 4,
+ "#error_code": 10,
+ "message": 6,
+ "getstring": 2,
+ "literal": 3,
+ "test": 2,
+ "known": 2,
+ "lasso": 2,
+ "knop_timer": 2,
+ "knop_unique": 2,
+ "look": 2,
+ "#varname": 6,
+ "loop_abort": 2,
+ "tag_name": 2,
+ "#timer": 2,
+ "#trace": 4,
+ "merge": 2,
+ "#eol": 8,
+ "2010": 4,
+ "23": 4,
+ "Custom": 2,
+ "interact": 2,
+ "databases": 2,
+ "Supports": 4,
+ "both": 2,
+ "MySQL": 2,
+ "FileMaker": 2,
+ "datasources": 2,
+ "2012": 4,
+ "06": 2,
+ "10": 2,
+ "SP": 4,
+ "Fix": 2,
+ "decimal": 5,
+ "precision": 2,
+ "bug": 2,
+ "6": 2,
+ "0": 2,
+ "1": 2,
+ "renderfooter": 2,
+ "15": 2,
+ "Add": 2,
+ "support": 6,
+ "host": 6,
+ "Thanks": 2,
+ "Ric": 2,
+ "Lewis": 2,
+ "settable": 4,
+ "removed": 2,
+ "table": 6,
+ "nextrecord": 12,
+ "deprecation": 2,
+ "warning": 2,
+ "corrected": 2,
+ "verification": 2,
+ "index": 4,
+ "before": 4,
+ "calling": 2,
+ "resultset_count": 6,
+ "break": 2,
+ "versions": 2,
+ "fixed": 4,
+ "incorrect": 2,
+ "debug_trace": 2,
+ "addrecord": 4,
+ "how": 2,
+ "keyvalue": 10,
+ "returned": 6,
+ "adding": 2,
+ "records": 4,
+ "inserting": 2,
+ "generated": 2,
+ "suppressed": 2,
+ "specifying": 2,
+ "saverecord": 8,
+ "deleterecord": 4,
+ "case.": 2,
+ "recorddata": 6,
+ "no": 2,
+ "longer": 2,
+ "touch": 2,
+ "current_record": 2,
+ "zero": 2,
+ "access": 2,
+ "occurrence": 2,
+ "same": 4,
+ "returns": 4,
+ "knop_databaserows": 2,
+ "inlinename.": 4,
+ "next.": 2,
+ "remains": 2,
+ "supported": 2,
+ "backwards": 2,
+ "compatibility.": 2,
+ "resets": 2,
+ "record": 20,
+ "pointer": 8,
+ "reaching": 2,
+ "last": 4,
+ "honors": 2,
+ "incremented": 2,
+ "recordindex": 4,
+ "specific": 2,
+ "found.": 2,
+ "getrecord": 8,
+ "REALLY": 2,
+ "works": 4,
+ "keyvalues": 4,
+ "double": 2,
+ "oops": 4,
+ "I": 4,
+ "thought": 2,
+ "but": 2,
+ "misplaced": 2,
+ "paren...": 2,
+ "corresponding": 2,
+ "resultset": 2,
+ "...": 3,
+ "/resultset": 2,
+ "through": 2,
+ "handling": 2,
+ "better": 2,
+ "knop_user": 4,
+ "keeplock": 4,
+ "updates": 2,
+ "datatype": 2,
+ "knop_databaserow": 2,
+ "iterated.": 2,
+ "When": 2,
+ "iterating": 2,
+ "row": 2,
+ "values.": 2,
+ "Addedd": 2,
+ "increments": 2,
+ "recordpointer": 2,
+ "called": 2,
+ "until": 2,
+ "found": 5,
+ "set": 10,
+ "reached.": 2,
+ "Returns": 2,
+ "long": 2,
+ "there": 2,
+ "more": 2,
+ "records.": 2,
+ "Useful": 2,
+ "loop": 2,
+ "example": 2,
+ "below": 2,
+ "Implemented": 2,
+ ".": 5,
+ "reset": 2,
+ "query.": 2,
+ "shortcut": 2,
+ "Removed": 2,
+ "onassign": 2,
+ "touble": 2,
+ "Extended": 2,
+ "field_names": 2,
+ "names": 4,
+ "db": 2,
+ "objects": 2,
+ "never": 2,
+ "been": 2,
+ "optionally": 2,
+ "supports": 2,
+ "sql.": 2,
+ "Make": 2,
+ "sure": 2,
+ "SQL": 2,
+ "includes": 2,
+ "relevant": 2,
+ "keyfield": 4,
+ "lockfield": 2,
+ "locking": 4,
+ "capturesearchvars": 2,
+ "mysteriously": 2,
+ "after": 2,
+ "operations": 2,
+ "caused": 2,
+ "errors.": 2,
+ "flag": 2,
+ "save": 2,
+ "locked": 2,
+ "releasing": 2,
+ "Adding": 2,
+ "progress.": 2,
+ "Done": 2,
+ "oncreate": 2,
+ "getrecord.": 2,
+ "documentation": 2,
+ "most": 2,
+ "existing": 2,
+ "it.": 2,
+ "Faster": 2,
+ "than": 2,
+ "scratch.": 2,
+ "shown_first": 2,
+ "again": 2,
+ "hoping": 2,
+ "s": 2,
+ "only": 2,
+ "captured": 2,
+ "update": 2,
+ "uselimit": 2,
+ "querys": 2,
+ "LIMIT": 2,
+ "still": 2,
+ "gets": 2,
+ "proper": 2,
+ "searchresult": 2,
+ "separate": 2,
+ "COUNT": 2,
+ "define": 20,
+ "trait_json_serialize": 2,
+ "trait": 1,
+ "{": 18,
+ "require": 1,
+ "asString": 3,
+ "}": 18,
+ "json_serialize": 18,
+ "e": 13,
+ "bytes": 8,
+ "#e": 13,
+ "Replace": 19,
+ "&": 21,
+ "json_literal": 1,
+ "asstring": 4,
+ "gmt": 1,
+ "trait_forEach": 1,
+ "delimit": 7,
+ "foreach": 1,
+ "#delimit": 7,
+ "#1": 3,
+ "pr": 1,
+ "eachPair": 1,
+ "select": 1,
+ "#pr": 2,
+ "json_object": 2,
+ "foreachpair": 1,
+ "serialize": 1,
+ "json_consume_string": 3,
+ "ibytes": 9,
+ "obytes": 3,
+ "temp": 12,
+ "#temp": 19,
+ "#ibytes": 17,
+ "export8bits": 6,
+ "#obytes": 5,
+ "import8bits": 4,
+ "Escape": 1,
+ "unescape": 1,
+ "//Replace": 1,
+ "BeginsWith": 1,
+ "EndsWith": 1,
+ "Protect": 1,
+ "serialization_reader": 1,
+ "xml": 1,
+ "read": 1,
+ "/Protect": 1,
+ "regexp": 1,
+ "d": 2,
+ "T": 3,
+ "Z": 1,
+ "matches": 1,
+ "Format": 1,
+ "yyyyMMdd": 2,
+ "HHmmssZ": 1,
+ "HHmmss": 1,
+ "json_consume_token": 2,
+ "marker": 4,
+ "Is": 1,
+ "end": 2,
+ "token": 1,
+ "//............................................................................": 2,
+ "string_IsNumeric": 1,
+ "json_consume_array": 3,
+ "While": 1,
+ "If": 4,
+ "Discard": 1,
+ "Else": 7,
+ "#key": 12,
+ "json_consume_object": 2,
+ "Loop_Abort": 1,
+ "/If": 3,
+ "/While": 1,
+ "Find": 3,
+ "Return": 7,
+ "Second": 1,
+ "json_deserialize": 1,
+ "removeLeading": 1,
+ "bom_utf8": 1,
+ "Reset": 1,
+ "on": 1,
+ "provided": 1,
+ "**/": 1,
+ "public": 1,
+ "onCreate": 1,
+ "..onCreate": 1,
+ "#rest": 1,
+ "json_rpccall": 1,
+ "#id": 2,
+ "#host": 4,
+ "Lasso_UniqueID": 1,
+ "Decode_JSON": 2,
+ "Include_URL": 1,
+ "PostParams": 1,
+ "Encode_JSON": 1,
+ "Map": 3,
+ "#method": 1,
+ "LassoScript": 1,
+ "JSON": 2,
+ "Encoding": 1,
+ "Decoding": 1,
+ "Copyright": 1,
+ "LassoSoft": 1,
+ "Inc.": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "incorporated": 1,
+ "Lasso_TagExists": 1,
+ "False": 1,
+ "Define_Tag": 1,
+ "Namespace": 1,
+ "Required": 1,
+ "Optional": 1,
+ "f": 2,
+ "b": 2,
+ "newoptions": 1,
+ "options": 2,
+ "queue": 2,
+ "priorityqueue": 2,
+ "stack": 2,
+ "pair": 1,
+ "client_ip": 1,
+ "client_address": 1,
+ "__jsonclass__": 6,
+ "deserialize": 2,
+ "": 3,
+ "": 3,
+ "Decode_": 1,
+ "consume_string": 1,
+ "unescapes": 1,
+ "u": 1,
+ "UTF": 4,
+ "QT": 4,
+ "TZ": 2,
+ "consume_token": 1,
+ "consume_array": 1,
+ "consume_object": 1,
+ "val": 1,
+ "native": 2,
+ "comment": 2,
+ "//www.lassosoft.com/json": 1,
+ "Literal": 2,
+ "String": 1,
+ "Object": 2,
+ "JSON_RPCCall": 1,
+ "RPCCall": 1,
+ "JSON_": 1,
+ "//localhost/lassoapps.8/rpc/rpc.lasso": 1,
+ "request": 2,
+ "JSON_Records": 3,
+ "KeyField": 1,
+ "ReturnField": 1,
+ "ExcludeField": 1,
+ "Fields": 1,
+ "_fields": 1,
+ "fields": 2,
+ "No": 1,
+ "_keyfield": 4,
+ "ID": 1,
+ "_index": 1,
+ "_return": 1,
+ "returnfield": 1,
+ "_exclude": 1,
+ "excludefield": 1,
+ "_records": 1,
+ "_record": 1,
+ "_temp": 1,
+ "_field": 1,
+ "_output": 1,
+ "rows": 1,
+ "#_records": 1,
+ "@#_output": 1,
+ "/Define_Tag": 1
+ },
+ "Max": {
+ "max": 1,
+ "v2": 1,
+ ";": 39,
+ "#N": 2,
+ "vpatcher": 1,
+ "#P": 33,
+ "toggle": 1,
+ "button": 4,
+ "window": 2,
+ "setfont": 1,
+ "Verdana": 1,
+ "linecount": 1,
+ "newex": 8,
+ "r": 1,
+ "jojo": 2,
+ "#B": 2,
+ "color": 2,
+ "s": 1,
+ "route": 1,
+ "append": 1,
+ "toto": 1,
+ "%": 1,
+ "counter": 2,
+ "#X": 1,
+ "flags": 1,
+ "newobj": 1,
+ "metro": 1,
+ "t": 2,
+ "message": 2,
+ "Goodbye": 1,
+ "World": 2,
+ "Hello": 1,
+ "connect": 13,
+ "fasten": 1,
+ "pop": 1,
+ "{": 126,
+ "}": 126,
+ "[": 163,
+ "]": 163
+ },
+ "Awk": {
+ "SHEBANG#!awk": 1,
+ "BEGIN": 1,
+ "{": 17,
+ "n": 13,
+ ";": 55,
+ "printf": 1,
+ "network_max_bandwidth_in_byte": 3,
+ "network_max_packet_per_second": 3,
+ "last3": 3,
+ "last4": 3,
+ "last5": 3,
+ "last6": 3,
+ "}": 17,
+ "if": 14,
+ "(": 14,
+ "/Average/": 1,
+ ")": 14,
+ "#": 48,
+ "Skip": 1,
+ "the": 12,
+ "Average": 1,
+ "values": 1,
+ "next": 1,
+ "/all/": 1,
+ "This": 8,
+ "is": 7,
+ "cpu": 1,
+ "info": 7,
+ "print": 35,
+ "FILENAME": 35,
+ "-": 2,
+ "/eth0/": 1,
+ "eth0": 1,
+ "network": 1,
+ "Total": 9,
+ "number": 9,
+ "of": 22,
+ "packets": 4,
+ "received": 4,
+ "per": 14,
+ "second.": 8,
+ "else": 4,
+ "transmitted": 4,
+ "bytes": 4,
+ "/proc": 1,
+ "|": 4,
+ "cswch": 1,
+ "tps": 1,
+ "kbmemfree": 1,
+ "totsck/": 1,
+ "/": 2,
+ "[": 1,
+ "]": 1,
+ "proc/s": 1,
+ "context": 1,
+ "switches": 1,
+ "second": 6,
+ "disk": 1,
+ "total": 1,
+ "transfers": 1,
+ "read": 1,
+ "requests": 2,
+ "write": 1,
+ "block": 2,
+ "reads": 1,
+ "writes": 1,
+ "mem": 1,
+ "Amount": 7,
+ "free": 2,
+ "memory": 6,
+ "available": 1,
+ "in": 11,
+ "kilobytes.": 7,
+ "used": 8,
+ "does": 1,
+ "not": 1,
+ "take": 1,
+ "into": 1,
+ "account": 1,
+ "by": 4,
+ "kernel": 3,
+ "itself.": 1,
+ "Percentage": 2,
+ "memory.": 1,
+ "X": 1,
+ "shared": 1,
+ "system": 1,
+ "Always": 1,
+ "zero": 1,
+ "with": 1,
+ "kernels.": 1,
+ "as": 1,
+ "buffers": 1,
+ "to": 1,
+ "cache": 1,
+ "data": 1,
+ "swap": 3,
+ "space": 2,
+ "space.": 1,
+ "socket": 1,
+ "sockets.": 1,
+ "Number": 4,
+ "TCP": 1,
+ "sockets": 3,
+ "currently": 4,
+ "use.": 4,
+ "UDP": 1,
+ "RAW": 1,
+ "IP": 1,
+ "fragments": 1,
+ "END": 1
+ },
+ "JavaScript": {
+ "(": 8518,
+ "function": 1212,
+ "window": 18,
+ "angular": 1,
+ ")": 8526,
+ "{": 2738,
+ "Array.prototype.last": 1,
+ "return": 945,
+ "this": 578,
+ "[": 1461,
+ "this.length": 41,
+ "-": 706,
+ "]": 1458,
+ ";": 4056,
+ "}": 2714,
+ "var": 911,
+ "app": 3,
+ "angular.module": 1,
+ "JSON": 5,
+ "if": 1230,
+ "f": 666,
+ "n": 874,
+ "<": 209,
+ "+": 1135,
+ "typeof": 132,
+ "Date.prototype.toJSON": 2,
+ "key": 85,
+ "isFinite": 1,
+ "this.valueOf": 2,
+ "this.getUTCFullYear": 1,
+ "this.getUTCMonth": 1,
+ "this.getUTCDate": 1,
+ "this.getUTCHours": 1,
+ "this.getUTCMinutes": 1,
+ "this.getUTCSeconds": 1,
+ "null": 427,
+ "String.prototype.toJSON": 1,
+ "Number.prototype.toJSON": 1,
+ "Boolean.prototype.toJSON": 1,
+ "cx": 2,
+ "/": 290,
+ "u0000": 1,
+ "u00ad": 1,
+ "u0600": 1,
+ "u0604": 1,
+ "u070f": 1,
+ "u17b4": 1,
+ "u17b5": 1,
+ "u200c": 1,
+ "u200f": 1,
+ "u2028": 3,
+ "u202f": 1,
+ "u2060": 1,
+ "u206f": 1,
+ "ufeff": 1,
+ "ufff0": 1,
+ "uffff": 1,
+ "/g": 37,
+ "escapable": 1,
+ "b": 961,
+ "t": 436,
+ "r": 261,
+ "object": 59,
+ "string": 41,
+ "number": 13,
+ "boolean": 8,
+ "Array": 3,
+ "JSON.stringify": 4,
+ "u": 304,
+ "/bfnrt": 1,
+ "|": 206,
+ "a": 1489,
+ "fA": 2,
+ "F": 8,
+ ".replace": 38,
+ "*": 70,
+ "JSON.parse": 1,
+ "PUT": 1,
+ "DELETE": 1,
+ "all": 16,
+ "change": 16,
+ "id": 38,
+ "_id": 1,
+ "error": 20,
+ "Can": 2,
+ "add": 15,
+ "remove": 9,
+ "s": 290,
+ "ties": 1,
+ "to": 92,
+ "collection.": 1,
+ "_removeReference": 1,
+ "model": 14,
+ "model.collection": 2,
+ "delete": 39,
+ "model.unbind": 1,
+ "this._onModelEvent": 1,
+ "_onModelEvent": 1,
+ "ev": 5,
+ "collection": 3,
+ "options": 56,
+ "||": 648,
+ "&&": 1017,
+ "this._remove": 1,
+ "model.idAttribute": 2,
+ "this._byId": 2,
+ "model.previous": 1,
+ "model.id": 1,
+ "this.trigger.apply": 2,
+ "arguments": 83,
+ "methods": 8,
+ "_.each": 1,
+ "method": 30,
+ "Backbone.Collection.prototype": 1,
+ "_": 9,
+ ".apply": 7,
+ "this.models": 1,
+ ".concat": 3,
+ "_.toArray": 1,
+ "Backbone.Router": 1,
+ "options.routes": 2,
+ "this.routes": 4,
+ "this._bindRoutes": 1,
+ "this.initialize.apply": 2,
+ "namedParam": 2,
+ "w": 110,
+ "d": 771,
+ "splatParam": 2,
+ "escapeRegExp": 2,
+ ".": 91,
+ "#": 13,
+ "_.extend": 9,
+ "Backbone.Router.prototype": 1,
+ "Backbone.Events": 2,
+ "initialize": 3,
+ "//": 410,
+ "route": 18,
+ "name": 161,
+ "callback": 23,
+ "Backbone.history": 2,
+ "new": 86,
+ "Backbone.History": 2,
+ "_.isRegExp": 1,
+ "this._routeToRegExp": 1,
+ "Backbone.history.route": 1,
+ "_.bind": 2,
+ "fragment": 27,
+ "args": 31,
+ "this._extractParameters": 1,
+ "callback.apply": 1,
+ "navigate": 2,
+ "triggerRoute": 4,
+ "Backbone.history.navigate": 1,
+ "_bindRoutes": 1,
+ "routes": 4,
+ "for": 262,
+ "in": 170,
+ "routes.unshift": 1,
+ "i": 853,
+ "l": 312,
+ "routes.length": 1,
+ "this.route": 1,
+ "_routeToRegExp": 1,
+ "route.replace": 1,
+ "RegExp": 12,
+ "_extractParameters": 1,
+ "route.exec": 1,
+ ".slice": 6,
+ "this.handlers": 2,
+ "_.bindAll": 1,
+ "hashStrip": 4,
+ "#*": 1,
+ "isExplorer": 1,
+ "/msie": 1,
+ "w.": 17,
+ "historyStarted": 3,
+ "false": 142,
+ "Backbone.History.prototype": 1,
+ "interval": 3,
+ "getFragment": 1,
+ "forcePushState": 2,
+ "this._hasPushState": 6,
+ "window.location.pathname": 1,
+ "search": 5,
+ "window.location.search": 1,
+ "fragment.indexOf": 1,
+ "this.options.root": 6,
+ "fragment.substr": 1,
+ "this.options.root.length": 1,
+ "else": 307,
+ "window.location.hash": 3,
+ "fragment.replace": 1,
+ "start": 20,
+ "throw": 27,
+ "Error": 16,
+ "this.options": 6,
+ "root": 5,
+ "this._wantsPushState": 3,
+ "this.options.pushState": 2,
+ "window.history": 2,
+ "window.history.pushState": 2,
+ "this.getFragment": 6,
+ "docMode": 3,
+ "document.documentMode": 3,
+ "oldIE": 3,
+ "isExplorer.exec": 1,
+ "navigator.userAgent.toLowerCase": 1,
+ "this.iframe": 4,
+ ".hide": 2,
+ ".appendTo": 2,
+ ".contentWindow": 1,
+ "this.navigate": 2,
+ ".bind": 3,
+ "this.checkUrl": 3,
+ "setInterval": 6,
+ "this.interval": 1,
+ "this.fragment": 13,
+ "true": 147,
+ "loc": 2,
+ "window.location": 5,
+ "atRoot": 3,
+ "loc.pathname": 1,
+ "loc.hash": 1,
+ "loc.hash.replace": 1,
+ "window.history.replaceState": 1,
+ "document.title": 2,
+ "loc.protocol": 2,
+ "loc.host": 2,
+ "this.loadUrl": 4,
+ "this.handlers.unshift": 1,
+ "checkUrl": 1,
+ "e": 663,
+ "current": 7,
+ "this.iframe.location.hash": 3,
+ "decodeURIComponent": 2,
+ "loadUrl": 1,
+ "fragmentOverride": 2,
+ "matched": 2,
+ "_.any": 1,
+ "handler": 14,
+ "handler.route.test": 1,
+ "handler.callback": 1,
+ "frag": 13,
+ "frag.indexOf": 1,
+ "this.iframe.document.open": 1,
+ ".close": 1,
+ "Backbone.View": 1,
+ "this.cid": 3,
+ "_.uniqueId": 1,
+ "this._configure": 1,
+ "this._ensureElement": 1,
+ "this.delegateEvents": 1,
+ "selectorDelegate": 2,
+ "selector": 40,
+ "this.el": 10,
+ "eventSplitter": 2,
+ "S": 8,
+ "s*": 15,
+ ".*": 20,
+ "viewOptions": 2,
+ "Backbone.View.prototype": 1,
+ "tagName": 3,
+ "render": 1,
+ ".remove": 2,
+ "make": 2,
+ "attributes": 14,
+ "content": 5,
+ "el": 4,
+ "document.createElement": 26,
+ ".attr": 1,
+ ".html": 1,
+ "delegateEvents": 1,
+ "events": 18,
+ "this.events": 1,
+ ".unbind": 4,
+ "match": 30,
+ "key.match": 1,
+ "eventName": 21,
+ ".delegate": 2,
+ "_configure": 1,
+ "viewOptions.length": 1,
+ "attr": 13,
+ "_ensureElement": 1,
+ "attrs": 6,
+ "this.attributes": 1,
+ "this.id": 2,
+ "attrs.id": 1,
+ "this.className": 10,
+ "this.make": 1,
+ "this.tagName": 1,
+ "_.isString": 1,
+ ".get": 3,
+ "extend": 13,
+ "protoProps": 6,
+ "classProps": 2,
+ "child": 17,
+ "inherits": 2,
+ "child.extend": 1,
+ "this.extend": 1,
+ "Backbone.Model.extend": 1,
+ "Backbone.Collection.extend": 1,
+ "Backbone.Router.extend": 1,
+ "Backbone.View.extend": 1,
+ "methodMap": 2,
+ "Backbone.sync": 1,
+ "type": 49,
+ "params": 2,
+ "dataType": 6,
+ "processData": 3,
+ "params.url": 2,
+ "getUrl": 2,
+ "urlError": 2,
+ "params.data": 5,
+ "params.contentType": 2,
+ "model.toJSON": 1,
+ "Backbone.emulateJSON": 2,
+ "params.processData": 1,
+ "Backbone.emulateHTTP": 1,
+ "params.data._method": 1,
+ "params.type": 1,
+ "params.beforeSend": 1,
+ "xhr": 1,
+ "xhr.setRequestHeader": 1,
+ ".ajax": 1,
+ "ctor": 6,
+ "parent": 15,
+ "staticProps": 3,
+ "protoProps.hasOwnProperty": 1,
+ "protoProps.constructor": 1,
+ "parent.apply": 1,
+ "ctor.prototype": 3,
+ "parent.prototype": 6,
+ "child.prototype": 4,
+ "child.prototype.constructor": 1,
+ "child.__super__": 3,
+ "object.url": 4,
+ "_.isFunction": 1,
+ "wrapError": 1,
+ "onError": 3,
+ "resp": 3,
+ "model.trigger": 1,
+ "escapeHTML": 1,
+ "string.replace": 1,
+ "&": 13,
+ "#x": 1,
+ "da": 1,
+ "/gi": 2,
+ "": 1,
+ "lt": 55,
+ "replace": 8,
+ "#x27": 1,
+ "#x2F": 1,
+ ".call": 10,
+ "undefined": 328,
+ "document": 26,
+ "window.document": 2,
+ "navigator": 3,
+ "window.navigator": 2,
+ "location": 2,
+ "jQuery": 48,
+ "context": 48,
+ "The": 9,
+ "is": 67,
+ "actually": 2,
+ "just": 2,
+ "the": 107,
+ "init": 7,
+ "constructor": 8,
+ "jQuery.fn.init": 2,
+ "rootjQuery": 8,
+ "Map": 4,
+ "over": 7,
+ "case": 136,
+ "of": 28,
+ "overwrite": 4,
+ "_jQuery": 4,
+ "window.jQuery": 7,
+ "window.": 6,
+ "A": 24,
+ "central": 2,
+ "reference": 5,
+ "simple": 3,
+ "way": 2,
+ "check": 8,
+ "HTML": 9,
+ "strings": 8,
+ "or": 38,
+ "ID": 8,
+ "Prioritize": 1,
+ "#id": 3,
+ "": 1,
+ "avoid": 5,
+ "XSS": 1,
+ "via": 2,
+ "location.hash": 1,
+ "#9521": 1,
+ "quickExpr": 2,
+ "<[\\w\\W]+>": 4,
+ "Check": 10,
+ "has": 9,
+ "non": 8,
+ "whitespace": 7,
+ "character": 3,
+ "it": 112,
+ "rnotwhite": 2,
+ "S/": 4,
+ "Used": 3,
+ "trimming": 2,
+ "trimLeft": 4,
+ "trimRight": 4,
+ "Match": 3,
+ "standalone": 2,
+ "tag": 2,
+ "rsingleTag": 2,
+ "<(\\w+)\\s*\\/?>": 4,
+ "<\\/\\1>": 4,
+ "rvalidchars": 2,
+ "rvalidescape": 2,
+ "d*": 8,
+ "eE": 4,
+ "rvalidbraces": 2,
+ "Useragent": 2,
+ "rwebkit": 2,
+ "webkit": 6,
+ "ropera": 2,
+ "opera": 4,
+ ".*version": 4,
+ "rmsie": 2,
+ "msie": 4,
+ "rmozilla": 2,
+ "mozilla": 4,
+ "rv": 4,
+ "Matches": 1,
+ "dashed": 1,
+ "camelizing": 1,
+ "rdashAlpha": 1,
+ "z": 21,
+ "/ig": 3,
+ "rmsPrefix": 1,
+ "ms": 2,
+ "by": 12,
+ "jQuery.camelCase": 6,
+ "as": 11,
+ "fcamelCase": 1,
+ "letter": 3,
+ ".toUpperCase": 3,
+ "Keep": 2,
+ "UserAgent": 2,
+ "use": 10,
+ "with": 18,
+ "jQuery.browser": 4,
+ "userAgent": 3,
+ "navigator.userAgent": 3,
+ "For": 5,
+ "matching": 3,
+ "engine": 2,
+ "and": 42,
+ "version": 10,
+ "browser": 11,
+ "browserMatch": 3,
+ "deferred": 25,
+ "used": 13,
+ "on": 37,
+ "DOM": 21,
+ "ready": 31,
+ "readyList": 6,
+ "event": 31,
+ "DOMContentLoaded": 14,
+ "Save": 2,
+ "some": 2,
+ "core": 2,
+ "toString": 4,
+ "Object.prototype.toString": 7,
+ "hasOwn": 2,
+ "Object.prototype.hasOwnProperty": 6,
+ "push": 11,
+ "Array.prototype.push": 4,
+ "slice": 10,
+ "Array.prototype.slice": 6,
+ "trim": 5,
+ "String.prototype.trim": 3,
+ "indexOf": 5,
+ "Array.prototype.indexOf": 4,
+ "Class": 2,
+ "pairs": 2,
+ "class2type": 3,
+ "jQuery.fn": 4,
+ "jQuery.prototype": 2,
+ "elem": 101,
+ "ret": 62,
+ "doc": 4,
+ "Handle": 14,
+ "DOMElement": 2,
+ "selector.nodeType": 2,
+ "this.context": 17,
+ "body": 22,
+ "element": 19,
+ "only": 10,
+ "exists": 9,
+ "once": 4,
+ "optimize": 3,
+ "finding": 2,
+ "document.body": 8,
+ "this.selector": 16,
+ "Are": 2,
+ "we": 25,
+ "dealing": 2,
+ "an": 12,
+ "selector.charAt": 4,
+ "selector.length": 4,
+ "Assume": 2,
+ "that": 33,
+ "end": 14,
+ "are": 18,
+ "skip": 5,
+ "regex": 3,
+ "quickExpr.exec": 2,
+ "Verify": 3,
+ "no": 19,
+ "was": 6,
+ "specified": 4,
+ "HANDLE": 2,
+ "html": 10,
+ "array": 7,
+ "instanceof": 19,
+ "context.ownerDocument": 2,
+ "If": 21,
+ "single": 2,
+ "passed": 5,
+ "clean": 3,
+ "not": 26,
+ "like": 5,
+ "method.": 3,
+ "sort": 4,
+ ".sort": 9,
+ "splice": 5,
+ ".splice": 5,
+ "jQuery.fn.init.prototype": 2,
+ "jQuery.extend": 11,
+ "jQuery.fn.extend": 4,
+ "src": 7,
+ "copy": 16,
+ "copyIsArray": 2,
+ "clone": 5,
+ "target": 44,
+ "length": 48,
+ "arguments.length": 18,
+ "deep": 12,
+ "situation": 2,
+ "when": 20,
+ "something": 3,
+ "possible": 3,
+ "jQuery.isFunction": 6,
+ "itself": 4,
+ "one": 15,
+ "argument": 2,
+ "Only": 5,
+ "deal": 2,
+ "null/undefined": 2,
+ "values": 10,
+ "Extend": 2,
+ "base": 2,
+ "Prevent": 2,
+ "never": 2,
+ "ending": 2,
+ "loop": 7,
+ "continue": 18,
+ "Recurse": 2,
+ "bring": 2,
+ "Return": 2,
+ "modified": 3,
+ "noConflict": 4,
+ "Is": 2,
+ "be": 12,
+ "Set": 4,
+ "occurs.": 2,
+ "isReady": 5,
+ "counter": 2,
+ "track": 2,
+ "how": 2,
+ "many": 3,
+ "items": 2,
+ "wait": 12,
+ "before": 8,
+ "fires.": 2,
+ "See": 9,
+ "#6781": 2,
+ "readyWait": 6,
+ "Hold": 2,
+ "release": 2,
+ "holdReady": 3,
+ "hold": 6,
+ "jQuery.readyWait": 6,
+ "jQuery.ready": 16,
+ "Either": 2,
+ "released": 2,
+ "DOMready/load": 2,
+ "yet": 2,
+ "jQuery.isReady": 6,
+ "Make": 17,
+ "sure": 18,
+ "at": 58,
+ "least": 4,
+ "IE": 28,
+ "gets": 6,
+ "little": 4,
+ "overzealous": 4,
+ "ticket": 4,
+ "#5443": 4,
+ "setTimeout": 19,
+ "Remember": 2,
+ "normal": 2,
+ "Ready": 2,
+ "fired": 12,
+ "decrement": 2,
+ "need": 10,
+ "there": 6,
+ "functions": 6,
+ "bound": 8,
+ "execute": 4,
+ "readyList.fireWith": 1,
+ "Trigger": 2,
+ "any": 12,
+ "jQuery.fn.trigger": 2,
+ ".trigger": 3,
+ ".off": 1,
+ "bindReady": 5,
+ "jQuery.Callbacks": 2,
+ "Catch": 2,
+ "cases": 4,
+ "where": 2,
+ ".ready": 2,
+ "called": 2,
+ "after": 7,
+ "already": 6,
+ "occurred.": 2,
+ "document.readyState": 4,
+ "asynchronously": 2,
+ "allow": 6,
+ "scripts": 2,
+ "opportunity": 2,
+ "delay": 4,
+ "Mozilla": 2,
+ "Opera": 2,
+ "nightlies": 3,
+ "currently": 4,
+ "support": 13,
+ "document.addEventListener": 6,
+ "Use": 7,
+ "handy": 2,
+ "fallback": 4,
+ "window.onload": 4,
+ "will": 7,
+ "always": 6,
+ "work": 6,
+ "window.addEventListener": 2,
+ "document.attachEvent": 6,
+ "ensure": 2,
+ "firing": 16,
+ "onload": 2,
+ "maybe": 2,
+ "late": 2,
+ "but": 4,
+ "safe": 3,
+ "also": 5,
+ "iframes": 2,
+ "window.attachEvent": 2,
+ "frame": 23,
+ "continually": 2,
+ "see": 6,
+ "toplevel": 7,
+ "try": 44,
+ "window.frameElement": 2,
+ "catch": 38,
+ "document.documentElement.doScroll": 4,
+ "doScrollCheck": 6,
+ "test/unit/core.js": 2,
+ "details": 3,
+ "concerning": 2,
+ "isFunction.": 2,
+ "Since": 3,
+ "alert": 11,
+ "aren": 5,
+ "pass": 7,
+ "through": 3,
+ "well": 2,
+ "obj": 40,
+ "jQuery.type": 4,
+ "obj.nodeType": 2,
+ "jQuery.isWindow": 2,
+ "Not": 4,
+ "own": 4,
+ "property": 15,
+ "must": 4,
+ "Object": 4,
+ "obj.constructor": 2,
+ "hasOwn.call": 6,
+ "obj.constructor.prototype": 2,
+ "IE8": 2,
+ "Will": 2,
+ "exceptions": 2,
+ "certain": 2,
+ "host": 29,
+ "objects": 7,
+ "#9897": 1,
+ "Own": 2,
+ "properties": 7,
+ "enumerated": 2,
+ "firstly": 2,
+ "so": 8,
+ "speed": 4,
+ "up": 4,
+ "last": 6,
+ "then": 8,
+ "own.": 2,
+ "isEmptyObject": 7,
+ "msg": 4,
+ "parseJSON": 4,
+ "data": 145,
+ "leading/trailing": 2,
+ "removed": 3,
+ "can": 10,
+ "access": 2,
+ "elems": 9,
+ "fn": 14,
+ "value": 98,
+ "chainable": 4,
+ "emptyGet": 3,
+ "exec": 8,
+ "bulk": 3,
+ "elems.length": 1,
+ "Sets": 3,
+ "jQuery.access": 2,
+ "Optionally": 1,
+ "get": 24,
+ "executed": 1,
+ "Bulk": 1,
+ "operations": 1,
+ "iterate": 1,
+ "executing": 1,
+ "exec.call": 1,
+ "Otherwise": 2,
+ "they": 2,
+ "run": 1,
+ "against": 1,
+ "entire": 1,
+ "set": 22,
+ "fn.call": 2,
+ "value.call": 1,
+ "Gets": 2,
+ "now": 5,
+ "Date": 4,
+ ".getTime": 3,
+ "frowned": 1,
+ "upon.": 1,
+ "More": 1,
+ "http": 6,
+ "//docs.jquery.com/Utilities/jQuery.browser": 1,
+ "uaMatch": 3,
+ "ua": 6,
+ "ua.toLowerCase": 1,
+ "rwebkit.exec": 1,
+ "ropera.exec": 1,
+ "rmsie.exec": 1,
+ "ua.indexOf": 1,
+ "rmozilla.exec": 1,
+ "sub": 4,
+ "jQuerySub": 7,
+ "jQuerySub.fn.init": 2,
+ "jQuerySub.superclass": 1,
+ "jQuerySub.fn": 2,
+ "jQuerySub.prototype": 1,
+ "jQuerySub.fn.constructor": 1,
+ "jQuerySub.sub": 1,
+ "this.sub": 2,
+ "jQuery.fn.init.call": 1,
+ "rootjQuerySub": 2,
+ "jQuerySub.fn.init.prototype": 1,
+ "jQuery.each": 2,
+ ".split": 19,
+ "name.toLowerCase": 6,
+ "jQuery.uaMatch": 1,
+ "browserMatch.browser": 2,
+ "jQuery.browser.version": 1,
+ "browserMatch.version": 1,
+ "jQuery.browser.webkit": 1,
+ "jQuery.browser.safari": 1,
+ "rnotwhite.test": 2,
+ "xA0": 7,
+ "document.removeEventListener": 2,
+ "document.detachEvent": 2,
+ "trick": 2,
+ "Diego": 2,
+ "Perini": 2,
+ "//javascript.nwbox.com/IEContentLoaded/": 2,
+ "waiting": 2,
+ "flagsCache": 3,
+ "createFlags": 2,
+ "flags": 13,
+ "flags.split": 1,
+ "flags.length": 1,
+ "Convert": 1,
+ "from": 7,
+ "String": 2,
+ "formatted": 2,
+ "cache": 45,
+ "first": 10,
+ "Actual": 2,
+ "list": 21,
+ "Stack": 1,
+ "fire": 4,
+ "calls": 1,
+ "repeatable": 1,
+ "lists": 2,
+ "stack": 2,
+ "Last": 2,
+ "forgettable": 1,
+ "memory": 8,
+ "Flag": 2,
+ "know": 3,
+ "First": 3,
+ "internally": 5,
+ "fireWith": 1,
+ "firingStart": 3,
+ "End": 1,
+ "firingLength": 4,
+ "Index": 1,
+ "needed": 2,
+ "firingIndex": 5,
+ "Add": 4,
+ "several": 1,
+ "callbacks": 10,
+ "actual": 1,
+ "args.length": 3,
+ "Inspect": 1,
+ "recursively": 1,
+ "unique": 2,
+ "mode": 1,
+ "flags.unique": 1,
+ "self.has": 1,
+ "list.push": 1,
+ "Fire": 1,
+ "flags.memory": 1,
+ "list.length": 5,
+ "flags.stopOnFalse": 1,
+ "Mark": 1,
+ "halted": 1,
+ "break": 111,
+ "flags.once": 1,
+ "stack.length": 1,
+ "stack.shift": 1,
+ "self.fireWith": 1,
+ "self.disable": 1,
+ "Callbacks": 1,
+ "self": 17,
+ "Do": 2,
+ "batch": 2,
+ "With": 1,
+ "/a": 1,
+ "top": 12,
+ "px": 31,
+ "float": 3,
+ "left": 14,
+ "opacity": 13,
+ ".55": 1,
+ "checkbox": 14,
+ "basic": 1,
+ "test": 21,
+ "all.length": 1,
+ "supports": 2,
+ "tests": 48,
+ "select": 20,
+ "opt": 2,
+ "select.appendChild": 1,
+ "input": 25,
+ "div.getElementsByTagName": 6,
+ "strips": 1,
+ "leading": 1,
+ ".innerHTML": 3,
+ "leadingWhitespace": 3,
+ "div.firstChild.nodeType": 1,
+ "tbody": 7,
+ "elements": 9,
+ "manipulated": 1,
+ "normalizes": 1,
+ "default": 21,
+ "hrefNormalized": 3,
+ "a.getAttribute": 11,
+ "uses": 3,
+ "filter": 10,
+ "instead": 6,
+ "around": 1,
+ "WebKit": 9,
+ "issue.": 1,
+ "#5145": 1,
+ "/.test": 19,
+ "a.style.opacity": 2,
+ "style": 30,
+ "existence": 1,
+ "styleFloat": 1,
+ "cssFloat": 4,
+ "a.style.cssFloat": 1,
+ "defaults": 3,
+ "checkOn": 4,
+ "input.value": 5,
+ "selected": 5,
+ "option": 12,
+ "working": 1,
+ "property.": 1,
+ "too": 1,
+ "marked": 1,
+ "disabled": 11,
+ "marks": 1,
+ "them": 3,
+ "select.disabled": 1,
+ "support.optDisabled": 1,
+ "opt.disabled": 1,
+ "Test": 3,
+ "handlers": 1,
+ "does": 9,
+ "support.noCloneEvent": 1,
+ "div.cloneNode": 1,
+ ".fireEvent": 3,
+ "radio": 17,
+ "maintains": 1,
+ "its": 2,
+ "being": 2,
+ "appended": 2,
+ "input.setAttribute": 5,
+ "support.radioValue": 2,
+ "#11217": 1,
+ "loses": 1,
+ "checked": 4,
+ "attribute": 5,
+ "div.appendChild": 4,
+ "document.createDocumentFragment": 3,
+ "fragment.appendChild": 2,
+ "div.lastChild": 1,
+ "doesn": 2,
+ "have": 6,
+ "conMarginTop": 3,
+ "paddingMarginBorder": 5,
+ "positionTopLeftWidthHeight": 3,
+ "paddingMarginBorderVisibility": 3,
+ "container": 4,
+ "container.style.cssText": 1,
+ "body.insertBefore": 1,
+ "body.firstChild": 1,
+ "Construct": 1,
+ "div": 28,
+ "container.appendChild": 1,
+ "table": 6,
+ "cells": 3,
+ "still": 4,
+ "offsetWidth/Height": 3,
+ "display": 7,
+ "none": 4,
+ "other": 3,
+ "visible": 1,
+ "row": 1,
+ "reliable": 1,
+ "determining": 3,
+ "been": 5,
+ "hidden": 12,
+ "directly": 2,
+ "using": 5,
+ "offsets": 1,
+ "don": 5,
+ "safety": 1,
+ "goggles": 1,
+ "bug": 3,
+ "#4512": 1,
+ "more": 6,
+ "information": 5,
+ "fails": 2,
+ "div.innerHTML": 7,
+ "tds": 6,
+ "isSupported": 7,
+ ".offsetHeight": 4,
+ ".style.display": 5,
+ "empty": 3,
+ "fail": 10,
+ "support.reliableHiddenOffsets": 1,
+ "explicit": 1,
+ "width": 32,
+ "margin": 8,
+ "right": 3,
+ "incorrectly": 1,
+ "computed": 1,
+ "based": 1,
+ "container.": 1,
+ "info": 2,
+ "#3333": 1,
+ "Fails": 2,
+ "Feb": 1,
+ "Bug": 1,
+ "getComputedStyle": 3,
+ "returns": 1,
+ "wrong": 1,
+ "window.getComputedStyle": 6,
+ "marginDiv": 5,
+ "marginDiv.style.width": 1,
+ "marginDiv.style.marginRight": 1,
+ "div.style.width": 2,
+ "support.reliableMarginRight": 1,
+ "parseInt": 12,
+ "marginRight": 2,
+ ".marginRight": 2,
+ "div.style.zoom": 2,
+ "natively": 1,
+ "block": 4,
+ "level": 3,
+ "act": 1,
+ "inline": 3,
+ "setting": 2,
+ "their": 3,
+ "giving": 1,
+ "layout": 2,
+ "div.style.padding": 1,
+ "div.style.border": 1,
+ "div.style.overflow": 2,
+ "div.style.display": 2,
+ "support.inlineBlockNeedsLayout": 1,
+ "div.offsetWidth": 2,
+ "shrink": 1,
+ "wrap": 2,
+ "children": 3,
+ "support.shrinkWrapBlocks": 1,
+ "div.style.cssText": 1,
+ "outer": 2,
+ "div.firstChild": 3,
+ "inner": 2,
+ "outer.firstChild": 1,
+ "td": 3,
+ "outer.nextSibling.firstChild.firstChild": 1,
+ "offsetSupport": 2,
+ "doesNotAddBorder": 1,
+ "inner.offsetTop": 4,
+ "doesAddBorderForTableAndCells": 1,
+ "td.offsetTop": 1,
+ "inner.style.position": 2,
+ "inner.style.top": 2,
+ "safari": 1,
+ "subtracts": 1,
+ "border": 7,
+ "here": 1,
+ "which": 8,
+ "offsetSupport.fixedPosition": 1,
+ "outer.style.overflow": 1,
+ "outer.style.position": 1,
+ "offsetSupport.subtractsBorderForOverflowNotVisible": 1,
+ "offsetSupport.doesNotIncludeMarginInBodyOffset": 1,
+ "body.offsetTop": 1,
+ "div.style.marginTop": 1,
+ "support.pixelMargin": 1,
+ "marginTop": 3,
+ ".marginTop": 1,
+ "container.style.zoom": 2,
+ "body.removeChild": 1,
+ "rbrace": 1,
+ "rmultiDash": 3,
+ "Z": 6,
+ "Please": 1,
+ "caution": 1,
+ "uuid": 2,
+ "Unique": 1,
+ "each": 17,
+ "page": 1,
+ "Non": 3,
+ "digits": 3,
+ "rinlinejQuery": 1,
+ "expando": 14,
+ "jQuery.fn.jquery": 1,
+ "Math.random": 2,
+ "D/g": 2,
+ "following": 1,
+ "uncatchable": 1,
+ "you": 1,
+ "attempt": 2,
+ "them.": 1,
+ "noData": 3,
+ "Ban": 1,
+ "except": 1,
+ "Flash": 1,
+ "handle": 15,
+ "expandos": 2,
+ "hasData": 2,
+ "elem.nodeType": 8,
+ "jQuery.cache": 3,
+ "jQuery.expando": 12,
+ "isEmptyDataObject": 3,
+ "pvt": 8,
+ "jQuery.acceptData": 2,
+ "privateCache": 1,
+ "thisCache": 15,
+ "internalKey": 12,
+ "getByName": 3,
+ "We": 6,
+ "nodes": 14,
+ "JS": 7,
+ "differently": 1,
+ "because": 1,
+ "IE6": 1,
+ "internal": 8,
+ "order": 1,
+ "collisions": 1,
+ "between": 1,
+ "user": 1,
+ "defined": 3,
+ "data.": 1,
+ "thisCache.data": 3,
+ "Users": 1,
+ "should": 1,
+ "inspect": 1,
+ "jQuery.data": 15,
+ "undocumented": 1,
+ "subject": 1,
+ "change.": 1,
+ "But": 1,
+ "anyone": 1,
+ "listen": 1,
+ "No.": 1,
+ "isEvents": 1,
+ "privateCache.events": 1,
+ "both": 2,
+ "converted": 2,
+ "camel": 2,
+ "names": 2,
+ "Try": 4,
+ "find": 7,
+ "camelCased": 1,
+ "removeData": 8,
+ "Reference": 1,
+ "isNode": 11,
+ "entry": 1,
+ "purpose": 1,
+ "continuing": 1,
+ ".data": 3,
+ "Support": 1,
+ "space": 1,
+ "separated": 1,
+ "keys": 11,
+ "jQuery.isArray": 1,
+ "manipulation": 1,
+ "split": 4,
+ "cased": 1,
+ "spaces": 3,
+ "unless": 2,
+ "name.split": 1,
+ "name.length": 1,
+ "want": 1,
+ "let": 1,
+ "destroyed": 2,
+ "jQuery.isEmptyObject": 1,
+ "Don": 1,
+ "care": 1,
+ "Ensure": 1,
+ "#10080": 1,
+ "jQuery.support.deleteExpando": 3,
+ "cache.setInterval": 1,
+ "eliminate": 2,
+ "node": 23,
+ "lookups": 2,
+ "entries": 2,
+ "longer": 2,
+ "exist": 2,
+ "us": 2,
+ "nor": 2,
+ "removeAttribute": 3,
+ "Document": 2,
+ "these": 2,
+ "elem.removeAttribute": 6,
+ "only.": 2,
+ "_data": 3,
+ "acceptData": 3,
+ "elem.nodeName": 2,
+ "jQuery.noData": 2,
+ "elem.nodeName.toLowerCase": 2,
+ "elem.getAttribute": 7,
+ "parts": 28,
+ "part": 8,
+ "jQuery._data": 2,
+ "elem.attributes": 1,
+ "attr.length": 2,
+ ".name": 3,
+ "name.indexOf": 2,
+ "name.substring": 2,
+ "dataAttr": 6,
+ "multiple": 7,
+ "this.each": 42,
+ "key.split": 2,
+ "this.triggerHandler": 6,
+ "fetch": 4,
+ "stored": 4,
+ "this.data": 5,
+ "self.triggerHandler": 2,
+ "jQuery.removeData": 2,
+ "nothing": 2,
+ "found": 10,
+ "HTML5": 3,
+ "key.replace": 2,
+ ".toLowerCase": 7,
+ "jQuery.isNumeric": 1,
+ "rbrace.test": 2,
+ "jQuery.parseJSON": 2,
+ "isn": 2,
+ "optgroup": 5,
+ "option.selected": 2,
+ "jQuery.support.optDisabled": 2,
+ "option.disabled": 2,
+ "option.getAttribute": 2,
+ "option.parentNode.disabled": 2,
+ "jQuery.nodeName": 3,
+ "option.parentNode": 2,
+ "Get": 4,
+ "specific": 2,
+ ".val": 5,
+ "get/set": 2,
+ "text": 14,
+ "comment": 3,
+ "nType": 8,
+ "jQuery.attrFn": 2,
+ "Fallback": 2,
+ "prop": 24,
+ "supported": 2,
+ "jQuery.prop": 2,
+ "notxml": 8,
+ "jQuery.isXMLDoc": 2,
+ "All": 1,
+ "lowercase": 1,
+ "Grab": 1,
+ "necessary": 1,
+ "hook": 1,
+ "hooks": 14,
+ "jQuery.attrHooks": 2,
+ "rboolean.test": 4,
+ "boolHook": 3,
+ "nodeHook": 1,
+ "jQuery.removeAttr": 2,
+ "hooks.set": 2,
+ "elem.setAttribute": 2,
+ "hooks.get": 2,
+ "existent": 2,
+ "normalize": 2,
+ "removeAttr": 5,
+ "propName": 8,
+ "attrNames": 3,
+ "isBool": 4,
+ "value.toLowerCase": 2,
+ "rspace": 1,
+ "attrNames.length": 1,
+ "jQuery.propFix": 2,
+ "#9699": 1,
+ "explanation": 1,
+ "approach": 1,
+ "removal": 1,
+ "do": 15,
+ "#10870": 1,
+ "jQuery.attr": 2,
+ "getSetAttribute": 3,
+ "corresponding": 2,
+ "attrHooks": 3,
+ "changed": 3,
+ "button": 24,
+ "tabIndex": 4,
+ "readOnly": 2,
+ "htmlFor": 2,
+ "class": 5,
+ "className": 4,
+ "maxLength": 2,
+ "cellSpacing": 2,
+ "cellPadding": 2,
+ "rowSpan": 2,
+ "colSpan": 2,
+ "useMap": 2,
+ "frameBorder": 2,
+ "contentEditable": 2,
+ "tabindex": 4,
+ "height": 25,
+ "auto": 3,
+ "href": 9,
+ "encoding": 26,
+ "mouseenter": 9,
+ "mouseleave": 9,
+ "mouseover": 12,
+ "mouseout": 12,
+ "**": 1,
+ "getData": 3,
+ "setData": 3,
+ "changeData": 3,
+ "click": 11,
+ "focus": 7,
+ "blur": 8,
+ "attrChange": 4,
+ "attrName": 4,
+ "relatedNode": 4,
+ "srcElement": 5,
+ "altKey": 4,
+ "bubbles": 4,
+ "cancelable": 4,
+ "ctrlKey": 6,
+ "currentTarget": 4,
+ "eventPhase": 4,
+ "metaKey": 5,
+ "relatedTarget": 6,
+ "shiftKey": 4,
+ "timeStamp": 1,
+ "view": 4,
+ "char": 2,
+ "charCode": 7,
+ "keyCode": 6,
+ "buttons": 1,
+ "clientX": 6,
+ "clientY": 5,
+ "fromElement": 6,
+ "offsetX": 4,
+ "offsetY": 4,
+ "pageX": 4,
+ "pageY": 4,
+ "screenX": 4,
+ "screenY": 4,
+ "toElement": 5,
+ "focusin": 9,
+ "focusout": 11,
+ "form": 12,
+ "window.Modernizr": 1,
+ "Modernizr": 12,
+ "enableClasses": 3,
+ "docElement": 1,
+ "document.documentElement": 2,
+ "mod": 12,
+ "modElem": 2,
+ "mStyle": 2,
+ "modElem.style": 1,
+ "inputElem": 6,
+ "smile": 4,
+ ".toString": 3,
+ "prefixes": 2,
+ "omPrefixes": 1,
+ "cssomPrefixes": 2,
+ "omPrefixes.split": 1,
+ "domPrefixes": 3,
+ "omPrefixes.toLowerCase": 1,
+ "ns": 1,
+ "inputs": 3,
+ "classes": 1,
+ "classes.slice": 1,
+ "featureName": 5,
+ "testing": 1,
+ "injectElementWithStyles": 9,
+ "rule": 5,
+ "testnames": 3,
+ "fakeBody": 4,
+ "while": 53,
+ "node.id": 1,
+ ".join": 14,
+ "div.id": 1,
+ "fakeBody.appendChild": 1,
+ "//avoid": 1,
+ "crashing": 1,
+ "background": 56,
+ "image": 5,
+ "fakeBody.style.background": 1,
+ "docElement.appendChild": 2,
+ "fakeBody.parentNode.removeChild": 1,
+ "div.parentNode.removeChild": 1,
+ "testMediaQuery": 2,
+ "mq": 3,
+ "matchMedia": 3,
+ "window.matchMedia": 1,
+ "window.msMatchMedia": 1,
+ ".matches": 1,
+ "bool": 30,
+ "node.currentStyle": 2,
+ "isEventSupported": 5,
+ "TAGNAMES": 2,
+ "element.setAttribute": 3,
+ "element.removeAttribute": 2,
+ "_hasOwnProperty": 2,
+ ".hasOwnProperty": 2,
+ "hasOwnProperty": 5,
+ "_hasOwnProperty.call": 2,
+ "object.constructor.prototype": 1,
+ "Function.prototype.bind": 2,
+ "bind": 3,
+ "TypeError": 2,
+ "slice.call": 3,
+ "F.prototype": 1,
+ "target.prototype": 1,
+ "result": 9,
+ "target.apply": 2,
+ "args.concat": 2,
+ "setCss": 7,
+ "str": 4,
+ "mStyle.cssText": 1,
+ "setCssAll": 2,
+ "str1": 6,
+ "str2": 4,
+ "prefixes.join": 3,
+ "contains": 8,
+ "substr": 2,
+ ".indexOf": 2,
+ "testProps": 3,
+ "props": 21,
+ "prefixed": 7,
+ "testDOMProps": 2,
+ "item": 4,
+ "item.bind": 1,
+ "testPropsAll": 17,
+ "ucProp": 5,
+ "prop.charAt": 1,
+ "prop.substr": 1,
+ "cssomPrefixes.join": 1,
+ "elem.getContext": 2,
+ ".getContext": 8,
+ ".fillText": 1,
+ "window.WebGLRenderingContext": 1,
+ "window.DocumentTouch": 1,
+ "DocumentTouch": 1,
+ "node.offsetTop": 1,
+ "window.postMessage": 1,
+ "window.openDatabase": 1,
+ "history.pushState": 1,
+ "mStyle.backgroundColor": 3,
+ "url": 23,
+ "mStyle.background": 1,
+ ".style.textShadow": 1,
+ "mStyle.opacity": 1,
+ "str3": 2,
+ "str1.length": 1,
+ "mStyle.backgroundImage": 1,
+ "docElement.style": 1,
+ "node.offsetLeft": 1,
+ "node.offsetHeight": 2,
+ "document.styleSheets": 1,
+ "document.styleSheets.length": 1,
+ "cssText": 4,
+ "style.cssRules": 3,
+ ".cssText": 2,
+ "style.cssText": 1,
+ "/src/i.test": 1,
+ "cssText.indexOf": 1,
+ "rule.split": 1,
+ "elem.canPlayType": 10,
+ "Boolean": 2,
+ "bool.ogg": 2,
+ "bool.h264": 1,
+ "bool.webm": 1,
+ "bool.mp3": 1,
+ "bool.wav": 1,
+ "bool.m4a": 1,
+ "localStorage.setItem": 1,
+ "localStorage.removeItem": 1,
+ "sessionStorage.setItem": 1,
+ "sessionStorage.removeItem": 1,
+ "window.Worker": 1,
+ "window.applicationCache": 1,
+ "document.createElementNS": 6,
+ "ns.svg": 4,
+ ".createSVGRect": 1,
+ "div.firstChild.namespaceURI": 1,
+ "/SVGAnimate/.test": 1,
+ "toString.call": 2,
+ "/SVGClipPath/.test": 1,
+ "webforms": 2,
+ "len": 11,
+ "props.length": 2,
+ "attrs.list": 2,
+ "window.HTMLDataListElement": 1,
+ "inputElemType": 5,
+ "defaultView": 2,
+ "inputElem.setAttribute": 1,
+ "inputElem.type": 1,
+ "inputElem.value": 2,
+ "inputElem.style.cssText": 1,
+ "range": 2,
+ "inputElem.style.WebkitAppearance": 1,
+ "document.defaultView": 1,
+ "defaultView.getComputedStyle": 2,
+ ".WebkitAppearance": 1,
+ "inputElem.offsetHeight": 1,
+ "docElement.removeChild": 1,
+ "tel": 2,
+ "email": 2,
+ "inputElem.checkValidity": 2,
+ "feature": 12,
+ "feature.toLowerCase": 2,
+ "classes.push": 1,
+ "Modernizr.input": 1,
+ "Modernizr.addTest": 2,
+ "docElement.className": 2,
+ "chaining.": 1,
+ "window.html5": 2,
+ "reSkip": 1,
+ "map": 7,
+ "textarea": 8,
+ "iframe": 3,
+ "/i": 22,
+ "saveClones": 1,
+ "code": 2,
+ "fieldset": 1,
+ "h1": 5,
+ "h2": 5,
+ "h3": 3,
+ "h4": 3,
+ "h5": 1,
+ "h6": 1,
+ "img": 1,
+ "label": 2,
+ "li": 19,
+ "link": 2,
+ "ol": 1,
+ "p": 110,
+ "param": 3,
+ "q": 34,
+ "script": 7,
+ "span": 1,
+ "strong": 1,
+ "tfoot": 1,
+ "th": 1,
+ "thead": 2,
+ "tr": 23,
+ "ul": 1,
+ "supportsHtml5Styles": 5,
+ "supportsUnknownElements": 3,
+ "a.innerHTML": 7,
+ "//if": 2,
+ "implemented": 1,
+ "assume": 1,
+ "Styles": 1,
+ "Chrome": 2,
+ "additional": 1,
+ "solve": 1,
+ "node.hidden": 1,
+ ".display": 1,
+ "a.childNodes.length": 1,
+ "frag.cloneNode": 1,
+ "frag.createDocumentFragment": 1,
+ "frag.createElement": 2,
+ "addStyleSheet": 2,
+ "ownerDocument": 9,
+ "ownerDocument.createElement": 3,
+ "ownerDocument.getElementsByTagName": 1,
+ "ownerDocument.documentElement": 1,
+ "p.innerHTML": 1,
+ "parent.insertBefore": 1,
+ "p.lastChild": 1,
+ "parent.firstChild": 1,
+ "getElements": 2,
+ "html5.elements": 1,
+ "elements.split": 1,
+ "shivMethods": 2,
+ "docCreateElement": 5,
+ "docCreateFragment": 2,
+ "ownerDocument.createDocumentFragment": 2,
+ "nodeName": 20,
+ "//abort": 1,
+ "shiv": 1,
+ "html5.shivMethods": 1,
+ ".cloneNode": 4,
+ "saveClones.test": 1,
+ "node.canHaveChildren": 1,
+ "reSkip.test": 1,
+ "frag.appendChild": 1,
+ "Function": 3,
+ "html5": 3,
+ "shivDocument": 3,
+ "shived": 5,
+ "ownerDocument.documentShived": 2,
+ "html5.shivCSS": 1,
+ "options.elements": 1,
+ "options.shivCSS": 1,
+ "options.shivMethods": 1,
+ "Modernizr._version": 1,
+ "Modernizr._prefixes": 1,
+ "Modernizr._domPrefixes": 1,
+ "Modernizr._cssomPrefixes": 1,
+ "Modernizr.mq": 1,
+ "Modernizr.hasEvent": 1,
+ "Modernizr.testProp": 1,
+ "Modernizr.testAllProps": 1,
+ "Modernizr.testStyles": 1,
+ "Modernizr.prefixed": 1,
+ "docElement.className.replace": 1,
+ "js": 1,
+ "classes.join": 1,
+ "this.document": 1,
+ "PEG.parser": 1,
+ "quote": 3,
+ "x": 33,
+ "result0": 264,
+ "result1": 81,
+ "result2": 77,
+ "parse_singleQuotedCharacter": 3,
+ "result1.push": 3,
+ "input.charCodeAt": 18,
+ "pos": 197,
+ "reportFailures": 64,
+ "matchFailed": 40,
+ "pos1": 63,
+ "offset": 21,
+ "chars": 1,
+ "chars.join": 1,
+ "pos0": 51,
+ "parse_simpleSingleQuotedCharacter": 2,
+ "parse_simpleEscapeSequence": 3,
+ "parse_zeroEscapeSequence": 3,
+ "parse_hexEscapeSequence": 3,
+ "parse_unicodeEscapeSequence": 3,
+ "parse_eolEscapeSequence": 3,
+ "pos2": 22,
+ "parse_eolChar": 6,
+ "input.length": 9,
+ "input.charAt": 21,
+ "char_": 9,
+ "parse_class": 1,
+ "result3": 35,
+ "result4": 12,
+ "result5": 4,
+ "parse_classCharacterRange": 3,
+ "parse_classCharacter": 5,
+ "result2.push": 1,
+ "parse___": 2,
+ "inverted": 4,
+ "partsConverted": 2,
+ "part.data": 1,
+ "rawText": 5,
+ "part.rawText": 1,
+ "ignoreCase": 1,
+ "begin": 1,
+ "begin.data.charCodeAt": 1,
+ "end.data.charCodeAt": 1,
+ "this.SyntaxError": 2,
+ "begin.rawText": 2,
+ "end.rawText": 2,
+ "begin.data": 1,
+ "end.data": 1,
+ "parse_bracketDelimitedCharacter": 2,
+ "quoteForRegexpClass": 1,
+ "parse_simpleBracketDelimitedCharacter": 2,
+ "parse_digit": 3,
+ "recognize": 1,
+ "input.substr": 9,
+ "parse_hexDigit": 7,
+ "String.fromCharCode": 4,
+ "parse_eol": 4,
+ "eol": 2,
+ "parse_letter": 1,
+ "parse_lowerCaseLetter": 2,
+ "parse_upperCaseLetter": 2,
+ "parse_whitespace": 3,
+ "parse_comment": 3,
+ "result0.push": 1,
+ "parse_singleLineComment": 2,
+ "parse_multiLineComment": 2,
+ "u2029": 2,
+ "x0B": 1,
+ "uFEFF": 1,
+ "u1680": 1,
+ "u180E": 1,
+ "u2000": 1,
+ "u200A": 1,
+ "u202F": 1,
+ "u205F": 1,
+ "u3000": 1,
+ "cleanupExpected": 2,
+ "expected": 12,
+ "expected.sort": 1,
+ "lastExpected": 3,
+ "cleanExpected": 2,
+ "expected.length": 4,
+ "cleanExpected.push": 1,
+ "computeErrorPosition": 2,
+ "line": 14,
+ "column": 8,
+ "seenCR": 5,
+ "Math.max": 10,
+ "rightmostFailuresPos": 2,
+ "ch": 58,
+ "parseFunctions": 1,
+ "startRule": 1,
+ "errorPosition": 1,
+ "rightmostFailuresExpected": 1,
+ "errorPosition.line": 1,
+ "errorPosition.column": 1,
+ "toSource": 1,
+ "this._source": 1,
+ "result.SyntaxError": 1,
+ "buildMessage": 2,
+ "expectedHumanized": 5,
+ "foundHumanized": 3,
+ "switch": 30,
+ "expected.slice": 1,
+ "this.name": 7,
+ "this.expected": 1,
+ "this.found": 1,
+ "this.message": 3,
+ "this.offset": 2,
+ "this.line": 3,
+ "this.column": 1,
+ "result.SyntaxError.prototype": 1,
+ "Error.prototype": 1,
+ "steelseries": 10,
+ "n.charAt": 1,
+ "n.substring": 1,
+ "i.substring": 3,
+ "this.color": 1,
+ "ui": 31,
+ "/255": 1,
+ "y": 101,
+ "t.getRed": 4,
+ "v": 135,
+ "t.getGreen": 4,
+ "t.getBlue": 4,
+ "t.getAlpha": 4,
+ "i.getRed": 1,
+ "i.getGreen": 1,
+ "i.getBlue": 1,
+ "o": 322,
+ "i.getAlpha": 1,
+ "*f": 2,
+ "w/r": 1,
+ "p/r": 1,
+ "c": 775,
+ "s/r": 1,
+ "h": 499,
+ "o/r": 1,
+ "e*u": 1,
+ ".toFixed": 3,
+ "l*u": 1,
+ "c*u": 1,
+ "h*u": 1,
+ "vr": 20,
+ "stop": 7,
+ "color": 4,
+ "Math.floor": 26,
+ "Math.log10": 1,
+ "n/Math.pow": 1,
+ "": 1,
+ "e=": 21,
+ "o=": 13,
+ "beginPath": 12,
+ "moveTo": 10,
+ "lineTo": 22,
+ "quadraticCurveTo": 4,
+ "closePath": 8,
+ "stroke": 7,
+ "i=": 31,
+ "createElement": 3,
+ "canvas": 22,
+ "width=": 17,
+ "height=": 17,
+ "ii": 29,
+ "u=": 12,
+ "getContext": 26,
+ "2d": 26,
+ "ft": 70,
+ "1": 97,
+ "fillStyle=": 13,
+ "rect": 3,
+ "0": 220,
+ "fill": 10,
+ "t=": 19,
+ "getImageData": 1,
+ "2": 66,
+ "3": 13,
+ "wt": 26,
+ "r=": 18,
+ "32": 1,
+ "62": 1,
+ "f=": 13,
+ "84": 1,
+ "s=": 12,
+ "94": 1,
+ "ar": 20,
+ "255": 3,
+ "max": 1,
+ "min": 2,
+ ".5": 7,
+ "u/": 3,
+ "/u": 3,
+ "f/": 1,
+ "vt": 50,
+ "n*6": 2,
+ "i*": 3,
+ "h*t": 1,
+ "*t": 3,
+ "%": 26,
+ "f*255": 1,
+ "u*255": 1,
+ "r*255": 1,
+ "st": 59,
+ "n/255": 1,
+ "t/255": 1,
+ "i/255": 1,
+ "Math.min": 5,
+ "f/r": 1,
+ "/f": 3,
+ "k": 302,
+ "<0?0:n>": 1,
+ "si": 23,
+ "ti": 39,
+ "Math.round": 7,
+ "/r": 1,
+ "u*r": 1,
+ "ni": 30,
+ "tt": 53,
+ "ei": 26,
+ "ot": 43,
+ "i.gaugeType": 6,
+ "steelseries.GaugeType.TYPE4": 2,
+ "i.size": 6,
+ "i.minValue": 10,
+ "i.maxValue": 10,
+ "bf": 6,
+ "i.niceScale": 10,
+ "i.threshold": 10,
+ "/2": 25,
+ "i.section": 8,
+ "i.area": 4,
+ "lu": 10,
+ "i.titleString": 10,
+ "au": 10,
+ "i.unitString": 10,
+ "hu": 11,
+ "i.frameDesign": 10,
+ "steelseries.FrameDesign.METAL": 7,
+ "wu": 9,
+ "i.frameVisible": 10,
+ "bt": 42,
+ "i.backgroundColor": 10,
+ "steelseries.BackgroundColor.DARK_GRAY": 7,
+ "bu": 11,
+ "i.backgroundVisible": 10,
+ "pt": 48,
+ "i.pointerType": 4,
+ "steelseries.PointerType.TYPE1": 3,
+ "i.pointerColor": 4,
+ "steelseries.ColorDef.RED": 7,
+ "ee": 2,
+ "i.knobType": 4,
+ "steelseries.KnobType.STANDARD_KNOB": 14,
+ "fi": 26,
+ "i.knobStyle": 4,
+ "steelseries.KnobStyle.SILVER": 4,
+ "i.lcdColor": 8,
+ "steelseries.LcdColor.STANDARD": 9,
+ "i.lcdVisible": 8,
+ "eu": 13,
+ "i.lcdDecimals": 8,
+ "ye": 2,
+ "i.digitalFont": 8,
+ "pe": 2,
+ "i.fractionalScaleDecimals": 4,
+ "br": 19,
+ "i.ledColor": 10,
+ "steelseries.LedColor.RED_LED": 7,
+ "ru": 14,
+ "i.ledVisible": 10,
+ "vf": 5,
+ "i.thresholdVisible": 8,
+ "kr": 17,
+ "i.minMeasuredValueVisible": 8,
+ "dr": 16,
+ "i.maxMeasuredValueVisible": 8,
+ "cf": 7,
+ "i.foregroundType": 6,
+ "steelseries.ForegroundType.TYPE1": 5,
+ "af": 5,
+ "i.foregroundVisible": 10,
+ "oe": 2,
+ "i.labelNumberFormat": 10,
+ "steelseries.LabelNumberFormat.STANDARD": 5,
+ "yr": 17,
+ "i.playAlarm": 10,
+ "uf": 5,
+ "i.alarmSound": 10,
+ "fe": 2,
+ "i.customLayer": 4,
+ "le": 1,
+ "i.tickLabelOrientation": 4,
+ "steelseries.GaugeType.TYPE1": 4,
+ "steelseries.TickLabelOrientation.TANGENT": 2,
+ "steelseries.TickLabelOrientation.NORMAL": 2,
+ "wr": 18,
+ "i.trendVisible": 4,
+ "hr": 17,
+ "i.trendColors": 4,
+ "steelseries.LedColor.GREEN_LED": 2,
+ "steelseries.LedColor.CYAN_LED": 2,
+ "sr": 21,
+ "i.useOdometer": 2,
+ "i.odometerParams": 2,
+ "wf": 4,
+ "i.odometerUseValue": 2,
+ "ki": 21,
+ "r.createElement": 11,
+ "ki.setAttribute": 2,
+ "yf": 3,
+ "ri": 24,
+ "ht": 34,
+ "ef": 5,
+ "steelseries.TrendState.OFF": 4,
+ "lr": 19,
+ "f*.06": 1,
+ "cr": 20,
+ "f*.29": 19,
+ "er": 19,
+ "f*.36": 4,
+ "ci": 29,
+ "et": 45,
+ "gi": 26,
+ "rr": 21,
+ "*lt": 9,
+ "r.getElementById": 7,
+ "u.save": 7,
+ "u.clearRect": 5,
+ "u.canvas.width": 7,
+ "u.canvas.height": 7,
+ "g": 441,
+ "s/2": 2,
+ "k/2": 1,
+ "pf": 4,
+ ".6*s": 1,
+ "ne": 2,
+ ".4*k": 1,
+ "pr": 16,
+ "s/10": 1,
+ "ce": 6,
+ "ae": 2,
+ "hf": 4,
+ "k*.13": 2,
+ "bi": 27,
+ "s*.4": 1,
+ "sf": 5,
+ "rf": 5,
+ "k*.57": 1,
+ "tf": 5,
+ "ve": 3,
+ "k*.61": 1,
+ "Math.PI/2": 40,
+ "ue": 1,
+ "Math.PI/180": 5,
+ "ff": 5,
+ "ir": 23,
+ "nr": 22,
+ "ai": 21,
+ "yt": 32,
+ "fr": 21,
+ "oi": 23,
+ "lf": 5,
+ "re": 2,
+ "ai/": 2,
+ "h/vt": 1,
+ "*vt": 4,
+ "Math.ceil": 63,
+ "b/vt": 1,
+ "vt/": 3,
+ "ot.type": 10,
+ "Math.PI": 13,
+ "at/yt": 4,
+ "*Math.PI": 10,
+ "*ue": 1,
+ "ci/2": 1,
+ "wi": 24,
+ "nf": 7,
+ "wi.getContext": 2,
+ "di": 22,
+ "ut": 59,
+ "di.getContext": 2,
+ "fu": 13,
+ "hi": 15,
+ "f*.093457": 10,
+ "uu": 13,
+ "hi.getContext": 6,
+ "gt": 32,
+ "nu": 11,
+ "gt.getContext": 3,
+ "iu": 14,
+ "f*.028037": 6,
+ "se": 1,
+ "iu.getContext": 1,
+ "gr": 12,
+ "he": 1,
+ "gr.getContext": 1,
+ "vi": 16,
+ "tu": 13,
+ "vi.getContext": 2,
+ "yi": 17,
+ "ou": 13,
+ "yi.getContext": 2,
+ "pi": 24,
+ "kt": 24,
+ "pi.getContext": 2,
+ "pu": 9,
+ "li.getContext": 6,
+ "gu": 9,
+ "du": 10,
+ "ku": 9,
+ "yu": 10,
+ "cu": 18,
+ "su": 12,
+ "tr.getContext": 1,
+ "kf": 3,
+ "u.textAlign": 2,
+ "u.strokeStyle": 2,
+ "ei.textColor": 2,
+ "u.fillStyle": 2,
+ "steelseries.LcdColor.STANDARD_GREEN": 4,
+ "u.shadowColor": 2,
+ "u.shadowOffsetX": 2,
+ "s*.007": 3,
+ "u.shadowOffsetY": 2,
+ "u.shadowBlur": 2,
+ "u.font": 2,
+ "u.fillText": 2,
+ "n.toFixed": 2,
+ "bi*.05": 1,
+ "hf*.5": 1,
+ "pr*.38": 1,
+ "bi*.9": 1,
+ "u.restore": 6,
+ "te": 2,
+ "n.save": 35,
+ "n.drawImage": 14,
+ "k*.037383": 11,
+ "s*.523364": 2,
+ "k*.130841": 1,
+ "s*.130841": 1,
+ "k*.514018": 2,
+ "s*.831775": 1,
+ "k*.831775": 1,
+ "s*.336448": 1,
+ "k*.803738": 2,
+ "s*.626168": 1,
+ "n.restore": 35,
+ "ie": 2,
+ "t.width": 2,
+ "f*.046728": 1,
+ "t.height": 2,
+ "t.width*.9": 4,
+ "t.getContext": 2,
+ "n.createLinearGradient": 17,
+ ".1": 18,
+ "t.height*.9": 6,
+ "i.addColorStop": 27,
+ ".3": 8,
+ ".59": 4,
+ "n.fillStyle": 36,
+ "n.beginPath": 39,
+ "n.moveTo": 37,
+ "t.width*.5": 4,
+ "n.lineTo": 33,
+ "t.width*.1": 2,
+ "n.closePath": 34,
+ "n.fill": 17,
+ "n.strokeStyle": 27,
+ "n.stroke": 31,
+ "vu": 10,
+ "": 1,
+ "": 1,
+ "n.lineWidth": 30,
+ "s*.035": 2,
+ "at/yt*t": 1,
+ "at/yt*h": 1,
+ "yt/at": 1,
+ "n.translate": 93,
+ "n.rotate": 53,
+ "n.arc": 6,
+ "s*.365": 2,
+ "n.lineWidth/2": 2,
+ "df": 3,
+ "bt.labelColor.setAlpha": 1,
+ "n.textAlign": 12,
+ "n.textBaseline": 10,
+ "s*.04": 1,
+ "n.font": 34,
+ "bt.labelColor.getRgbaColor": 2,
+ "lt*fr": 1,
+ "s*.38": 2,
+ "s*.35": 1,
+ "s*.355": 1,
+ "s*.36": 1,
+ "s*.3": 1,
+ "s*.1": 1,
+ "oi/2": 2,
+ "parseFloat": 30,
+ "b.toFixed": 1,
+ "c.toFixed": 2,
+ "le.type": 1,
+ "t.format": 7,
+ "n.fillText": 54,
+ "e.toFixed": 2,
+ "e.toPrecision": 1,
+ "n.frame": 22,
+ "n.background": 22,
+ "n.led": 20,
+ "n.pointer": 10,
+ "n.foreground": 22,
+ "n.trend": 4,
+ "n.odo": 2,
+ "rt": 45,
+ "uu.drawImage": 1,
+ "nu.drawImage": 3,
+ "se.drawImage": 1,
+ "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6,
+ "he.drawImage": 1,
+ "steelseries.ColorDef.RED.medium.getRgbaColor": 6,
+ "ii.length": 2,
+ ".start": 12,
+ ".stop": 11,
+ ".color": 13,
+ "ui.length": 2,
+ "ct": 34,
+ "ut.save": 1,
+ "ut.translate": 3,
+ "ut.rotate": 1,
+ "ut.drawImage": 2,
+ "s*.475": 1,
+ "ut.restore": 1,
+ "steelseries.Odometer": 1,
+ "_context": 1,
+ "f*.075": 1,
+ "decimals": 1,
+ "wt.decimals": 1,
+ "wt.digits": 2,
+ "valueForeColor": 1,
+ "wt.valueForeColor": 1,
+ "valueBackColor": 1,
+ "wt.valueBackColor": 1,
+ "decimalForeColor": 1,
+ "wt.decimalForeColor": 1,
+ "decimalBackColor": 1,
+ "wt.decimalBackColor": 1,
+ "font": 1,
+ "wt.font": 1,
+ "tr.width": 1,
+ "nt": 75,
+ "bt.labelColor": 2,
+ "pt.type": 6,
+ "steelseries.TrendState.UP": 2,
+ "steelseries.TrendState.STEADY": 2,
+ "steelseries.TrendState.DOWN": 2,
+ "dt": 30,
+ "wi.width": 1,
+ "wi.height": 1,
+ "di.width": 1,
+ "di.height": 1,
+ "hi.width": 3,
+ "hi.height": 3,
+ "gt.width": 2,
+ "gt.height": 1,
+ "vi.width": 1,
+ "vi.height": 1,
+ "yi.width": 1,
+ "yi.height": 1,
+ "pi.width": 1,
+ "pi.height": 1,
+ "li.width": 3,
+ "li.height": 3,
+ "gf": 2,
+ "yf.repaint": 1,
+ "ur": 20,
+ "e3": 5,
+ "clearInterval": 6,
+ "this.setValue": 7,
+ "": 5,
+ "ki.pause": 1,
+ "ki.play": 1,
+ "this.repaint": 126,
+ "this.getValue": 7,
+ "this.setOdoValue": 1,
+ "this.getOdoValue": 1,
+ "this.setValueAnimated": 7,
+ "t.playing": 1,
+ "t.stop": 1,
+ "Tween": 11,
+ "Tween.regularEaseInOut": 6,
+ "t.onMotionChanged": 1,
+ "n.target._pos": 7,
+ "": 1,
+ "i.repaint": 1,
+ "t.start": 1,
+ "this.resetMinMeasuredValue": 4,
+ "this.resetMaxMeasuredValue": 4,
+ "this.setMinMeasuredValueVisible": 4,
+ "this.setMaxMeasuredValueVisible": 4,
+ "this.setMaxMeasuredValue": 3,
+ "this.setMinMeasuredValue": 3,
+ "this.setTitleString": 4,
+ "this.setUnitString": 4,
+ "this.setMinValue": 4,
+ "this.getMinValue": 3,
+ "this.setMaxValue": 3,
+ "this.getMaxValue": 4,
+ "this.setThreshold": 4,
+ "this.setArea": 1,
+ "foreground": 30,
+ "this.setSection": 4,
+ "this.setThresholdVisible": 4,
+ "this.setLcdDecimals": 3,
+ "this.setFrameDesign": 7,
+ "this.setBackgroundColor": 7,
+ "pointer": 28,
+ "this.setForegroundType": 5,
+ "this.setPointerType": 3,
+ "this.setPointerColor": 4,
+ "this.setLedColor": 5,
+ "led": 18,
+ "this.setLcdColor": 5,
+ "this.setTrend": 2,
+ "this.setTrendVisible": 2,
+ "trend": 2,
+ "odo": 1,
+ "u.drawImage": 22,
+ "cu.setValue": 1,
+ "of.state": 1,
+ "u.translate": 8,
+ "u.rotate": 4,
+ "u.canvas.width*.4865": 2,
+ "u.canvas.height*.105": 2,
+ "s*.006": 1,
+ "kt.clearRect": 1,
+ "kt.save": 1,
+ "kt.translate": 2,
+ "kt.rotate": 1,
+ "kt.drawImage": 1,
+ "kt.restore": 1,
+ "i.useSectionColors": 4,
+ "i.valueColor": 6,
+ "i.valueGradient": 4,
+ "i.useValueGradient": 4,
+ "yi.setAttribute": 2,
+ "e/2": 2,
+ "ut/2": 4,
+ "e/10": 3,
+ "ut*.13": 1,
+ "e*.4": 1,
+ "or/2": 1,
+ "e*.116822": 3,
+ "e*.485981": 3,
+ "s*.093457": 5,
+ "e*.53": 1,
+ "ut*.61": 1,
+ "s*.06": 1,
+ "s*.57": 1,
+ "dt.type": 4,
+ "l/Math.PI*180": 4,
+ "l/et": 8,
+ "Math.PI/3": 1,
+ "ft/2": 2,
+ "Math.PI/": 1,
+ "ai.getContext": 2,
+ "s*.060747": 2,
+ "s*.023364": 2,
+ "ri.getContext": 6,
+ "yt.getContext": 5,
+ "si.getContext": 4,
+ "ci/": 2,
+ "f/ht": 1,
+ "*ht": 8,
+ "h/ht": 1,
+ "ht/": 2,
+ "*kt": 5,
+ "angle": 1,
+ "*st": 1,
+ "n.value": 4,
+ "tu.drawImage": 1,
+ "gr.drawImage": 3,
+ "at.getImageData": 1,
+ "at.drawImage": 1,
+ "bt.length": 4,
+ "ii.push": 1,
+ "Math.abs": 19,
+ "ai.width": 1,
+ "ai.height": 1,
+ "ri.width": 3,
+ "ri.height": 3,
+ "yt.width": 2,
+ "yt.height": 2,
+ "si.width": 2,
+ "si.height": 2,
+ "s*.085": 1,
+ "e*.35514": 2,
+ ".107476*ut": 1,
+ ".897195*ut": 1,
+ "t.addColorStop": 6,
+ ".22": 1,
+ ".76": 1,
+ "s*.075": 1,
+ ".112149*ut": 1,
+ ".892523*ut": 1,
+ "r.addColorStop": 6,
+ "e*.060747": 2,
+ "e*.023364": 2,
+ "n.createRadialGradient": 4,
+ ".030373*e": 1,
+ "u.addColorStop": 14,
+ "i*kt": 1,
+ "n.rect": 4,
+ "n.canvas.width": 3,
+ "n.canvas.height": 3,
+ "n.canvas.width/2": 6,
+ "n.canvas.height/2": 4,
+ "u.createRadialGradient": 1,
+ "t.light.getRgbaColor": 2,
+ "t.dark.getRgbaColor": 2,
+ "ni.textColor": 2,
+ "e*.007": 5,
+ "oi*.05": 1,
+ "or*.5": 1,
+ "cr*.38": 1,
+ "oi*.9": 1,
+ "ei.labelColor.setAlpha": 1,
+ "e*.04": 1,
+ "ei.labelColor.getRgbaColor": 2,
+ "st*di": 1,
+ "e*.28": 1,
+ "e*.1": 1,
+ "e*.0375": 1,
+ "h.toFixed": 3,
+ "df.type": 1,
+ "u.toFixed": 2,
+ "u.toPrecision": 1,
+ "kf.repaint": 1,
+ "": 3,
+ "yi.pause": 1,
+ "yi.play": 1,
+ "ti.playing": 1,
+ "ti.stop": 1,
+ "ti.onMotionChanged": 1,
+ "t.repaint": 4,
+ "ti.start": 1,
+ "this.setValueColor": 3,
+ "this.setSectionActive": 2,
+ "this.setGradient": 2,
+ "this.setGradientActive": 2,
+ "useGradient": 2,
+ "n/lt*": 1,
+ "vi.getEnd": 1,
+ "vi.getStart": 1,
+ "s/c": 1,
+ "vi.getColorAt": 1,
+ ".getRgbaColor": 3,
+ "": 1,
+ "e.medium.getHexColor": 1,
+ "i.medium.getHexColor": 1,
+ "n*kt": 1,
+ "pu.state": 1,
+ "i.orientation": 2,
+ "steelseries.Orientation.NORTH": 2,
+ "hi.setAttribute": 2,
+ "steelseries.GaugeType.TYPE5": 1,
+ "kt/at": 2,
+ "f.clearRect": 2,
+ "f.canvas.width": 3,
+ "f.canvas.height": 3,
+ "h/2": 1,
+ "k*.733644": 1,
+ ".455*h": 1,
+ ".51*k": 1,
+ "bi/": 2,
+ "l/ot": 1,
+ "*ot": 2,
+ "d/ot": 1,
+ "ot/": 1,
+ "ui.getContext": 4,
+ "u*.093457": 10,
+ "ii.getContext": 5,
+ "st.getContext": 2,
+ "u*.028037": 6,
+ "hr.getContext": 1,
+ "er.getContext": 1,
+ "fi.getContext": 4,
+ "kr.type": 1,
+ "ft.type": 1,
+ "h*.44": 3,
+ "k*.8": 1,
+ "k*.16": 1,
+ "h*.2": 2,
+ "k*.446666": 2,
+ "h*.8": 1,
+ "u*.046728": 1,
+ "h*.035": 1,
+ "kt/at*t": 1,
+ "kt/at*l": 1,
+ "at/kt": 1,
+ "h*.365": 2,
+ "it.labelColor.getRgbaColor": 4,
+ "vertical": 1,
+ ".046728*h": 1,
+ "n.measureText": 2,
+ ".width": 2,
+ "k*.4": 1,
+ "h*.3": 1,
+ "k*.47": 1,
+ "it.labelColor.setAlpha": 1,
+ "steelseries.Orientation.WEST": 6,
+ "h*.04": 1,
+ "ht*yi": 1,
+ "h*.41": 1,
+ "h*.415": 1,
+ "h*.42": 1,
+ "h*.48": 1,
+ "h*.0375": 1,
+ "d.toFixed": 1,
+ "f.toFixed": 1,
+ "i.toFixed": 2,
+ "i.toPrecision": 1,
+ "u/2": 5,
+ "cr.drawImage": 3,
+ "ar.drawImage": 1,
+ "or.drawImage": 1,
+ "or.restore": 1,
+ "rr.drawImage": 1,
+ "rr.restore": 1,
+ "gt.length": 2,
+ "p.save": 2,
+ "p.translate": 8,
+ "p.rotate": 4,
+ "p.restore": 3,
+ "ni.length": 2,
+ "p.drawImage": 1,
+ "h*.475": 1,
+ "k*.32": 1,
+ "h*1.17": 2,
+ "it.labelColor": 2,
+ "ut.type": 6,
+ "ui.width": 2,
+ "ui.height": 2,
+ "ii.width": 2,
+ "ii.height": 2,
+ "st.width": 1,
+ "st.height": 1,
+ "fi.width": 2,
+ "fi.height": 2,
+ "wu.repaint": 1,
+ "": 2,
+ "hi.pause": 1,
+ "hi.play": 1,
+ "dt.playing": 2,
+ "dt.stop": 2,
+ "dt.onMotionChanged": 2,
+ "": 1,
+ "dt.start": 2,
+ "f.save": 5,
+ "f.drawImage": 9,
+ "f.translate": 10,
+ "f.rotate": 5,
+ "f.canvas.width*.4865": 2,
+ "f.canvas.height*.27": 2,
+ "f.restore": 5,
+ "h*.006": 1,
+ "h*1.17/2": 1,
+ "et.clearRect": 1,
+ "et.save": 1,
+ "et.translate": 2,
+ "et.rotate": 1,
+ "et.drawImage": 1,
+ "et.restore": 1,
+ "i.width": 6,
+ "i.height": 6,
+ "fi.setAttribute": 2,
+ "l.type": 26,
+ "y.clearRect": 2,
+ "y.canvas.width": 3,
+ "y.canvas.height": 3,
+ "*.05": 4,
+ "f/2": 13,
+ "it/2": 2,
+ ".053": 1,
+ ".038": 1,
+ "*u": 1,
+ "u/22": 2,
+ ".89*f": 2,
+ "u/10": 2,
+ "ei/": 1,
+ "e/ut": 1,
+ "*ut": 2,
+ "s/ut": 1,
+ "ut/": 1,
+ "kt.getContext": 2,
+ "rt.getContext": 2,
+ "dt.getContext": 1,
+ "ni.getContext": 4,
+ "lt.textColor": 2,
+ "n.shadowColor": 2,
+ "n.shadowOffsetX": 4,
+ "u*.003": 2,
+ "n.shadowOffsetY": 4,
+ "n.shadowBlur": 4,
+ "u*.004": 1,
+ "u*.007": 2,
+ "u*.009": 1,
+ "f*.571428": 8,
+ "u*.88": 2,
+ "u*.055": 2,
+ "f*.7": 2,
+ "f*.695": 4,
+ "f*.18": 4,
+ "u*.22": 3,
+ "u*.15": 2,
+ "t.toFixed": 2,
+ "i.getContext": 2,
+ "t.save": 2,
+ "t.createLinearGradient": 2,
+ "i.height*.9": 6,
+ "t.fillStyle": 2,
+ "t.beginPath": 4,
+ "t.moveTo": 4,
+ "i.height*.5": 2,
+ "t.lineTo": 8,
+ "i.width*.9": 6,
+ "t.closePath": 4,
+ "i.width*.5": 2,
+ "t.fill": 2,
+ "t.strokeStyle": 2,
+ "t.stroke": 2,
+ "t.restore": 2,
+ "w.labelColor.setAlpha": 1,
+ "f*.1": 5,
+ "w.labelColor.getRgbaColor": 2,
+ ".34*f": 2,
+ ".36*f": 6,
+ ".33*f": 2,
+ ".32*f": 2,
+ "u*.12864": 3,
+ "u*.856796": 1,
+ "u*.7475": 1,
+ "c/": 2,
+ ".65*u": 1,
+ ".63*u": 3,
+ ".66*u": 1,
+ ".67*u": 1,
+ "f*.142857": 4,
+ "f*.871012": 2,
+ "f*.19857": 1,
+ "f*.82": 1,
+ "v/": 1,
+ "tickCounter": 4,
+ "currentPos": 20,
+ "tickCounter*a": 2,
+ "r.toFixed": 8,
+ "f*.28": 6,
+ "r.toPrecision": 4,
+ "u*.73": 3,
+ "ui/2": 1,
+ "vi.drawImage": 2,
+ "yi.drawImage": 2,
+ "hr.drawImage": 2,
+ "k.save": 1,
+ ".856796": 2,
+ ".7475": 2,
+ ".12864": 2,
+ "u*i": 1,
+ "u*r*": 1,
+ "bt/": 1,
+ "k.translate": 2,
+ "f*.365": 2,
+ "nt/2": 2,
+ ".871012": 3,
+ ".82": 2,
+ ".142857": 5,
+ ".19857": 6,
+ "f*r*bt/": 1,
+ "f*": 5,
+ "u*.58": 1,
+ "k.drawImage": 3,
+ "k.restore": 1,
+ "kt.width": 1,
+ "b*.093457": 2,
+ "kt.height": 1,
+ "d*.093457": 2,
+ "rt.width": 1,
+ "rt.height": 1,
+ "ni.width": 2,
+ "ni.height": 2,
+ "hu.repaint": 1,
+ "w.labelColor": 1,
+ "i*.12864": 2,
+ "i*.856796": 2,
+ "i*.7475": 1,
+ "t*.871012": 1,
+ "t*.142857": 8,
+ "t*.82": 1,
+ "t*.19857": 1,
+ "steelseries.BackgroundColor.CARBON": 2,
+ "steelseries.BackgroundColor.PUNCHED_SHEET": 2,
+ "steelseries.BackgroundColor.STAINLESS": 2,
+ "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2,
+ "steelseries.BackgroundColor.TURNED": 2,
+ "r.setAlpha": 8,
+ ".05": 2,
+ "p.addColorStop": 4,
+ "r.getRgbaColor": 8,
+ ".15": 2,
+ ".48": 7,
+ ".49": 4,
+ "n.fillRect": 16,
+ "t*.435714": 4,
+ "i*.435714": 4,
+ "i*.142857": 1,
+ "b.addColorStop": 4,
+ ".69": 1,
+ ".7": 1,
+ ".4": 2,
+ "t*.007142": 4,
+ "t*.571428": 2,
+ "i*.007142": 4,
+ "i*.571428": 2,
+ "t*.45": 4,
+ "t*.114285": 1,
+ "t/2": 1,
+ "i*.0486/2": 1,
+ "i*.053": 1,
+ "i*.45": 4,
+ "i*.114285": 1,
+ "i/2": 1,
+ "t*.025": 1,
+ "t*.053": 1,
+ "ut.addColorStop": 2,
+ "wt.medium.getRgbaColor": 3,
+ "wt.light.getRgbaColor": 2,
+ "i*.05": 2,
+ "t*.05": 2,
+ "ot.addColorStop": 2,
+ ".98": 1,
+ "Math.PI*.5": 2,
+ "f*.05": 2,
+ ".049*t": 8,
+ ".825*t": 9,
+ "n.bezierCurveTo": 42,
+ ".7975*t": 2,
+ ".0264*t": 4,
+ ".775*t": 3,
+ ".0013*t": 12,
+ ".85*t": 2,
+ ".8725*t": 3,
+ ".0365*t": 9,
+ ".8075*t": 4,
+ ".7925*t": 3,
+ ".0214*t": 13,
+ ".7875*t": 4,
+ ".7825*t": 5,
+ ".0189*t": 4,
+ ".785*t": 1,
+ ".8175*t": 2,
+ ".815*t": 1,
+ ".8125*t": 2,
+ ".8*t": 2,
+ ".0377*t": 2,
+ ".86*t": 4,
+ ".0415*t": 2,
+ ".845*t": 1,
+ ".0465*t": 2,
+ ".805*t": 2,
+ ".0113*t": 10,
+ ".0163*t": 7,
+ ".8025*t": 1,
+ ".8225*t": 3,
+ ".8425*t": 1,
+ ".03*t": 2,
+ ".115*t": 5,
+ ".1075*t": 2,
+ ".1025*t": 8,
+ ".0038*t": 2,
+ ".76*t": 4,
+ ".7675*t": 2,
+ ".7725*t": 6,
+ ".34": 1,
+ ".0516*t": 7,
+ ".8525*t": 2,
+ ".0289*t": 8,
+ ".875*t": 3,
+ ".044*t": 1,
+ ".0314*t": 5,
+ ".12*t": 4,
+ ".0875*t": 3,
+ ".79*t": 1,
+ "": 5,
+ "fi.pause": 1,
+ "fi.play": 1,
+ "yt.playing": 1,
+ "yt.stop": 1,
+ "yt.onMotionChanged": 1,
+ "t.setValue": 1,
+ "yt.start": 1,
+ "mminMeasuredValue": 1,
+ "": 1,
+ "setMaxValue=": 1,
+ "y.drawImage": 6,
+ "u*n": 2,
+ "u*i*": 2,
+ "at/": 1,
+ "f*.34": 3,
+ "gt.height/2": 2,
+ "f*i*at/": 1,
+ "u*.65": 2,
+ "ft/": 1,
+ "dt.width": 1,
+ "dt.height/2": 2,
+ ".8": 1,
+ ".14857": 1,
+ "f*i*ft/": 1,
+ "y.save": 1,
+ "y.restore": 1,
+ "oi.setAttribute": 2,
+ "v.clearRect": 2,
+ "v.canvas.width": 4,
+ "v.canvas.height": 4,
+ ".053*e": 1,
+ "e/22": 2,
+ "e/1.95": 1,
+ "u/vt": 1,
+ "s/vt": 1,
+ "g.width": 4,
+ "f*.121428": 2,
+ "g.height": 4,
+ "e*.012135": 2,
+ "f*.012135": 2,
+ "e*.121428": 2,
+ "g.getContext": 2,
+ "d.width": 4,
+ "d.height": 4,
+ "d.getContext": 2,
+ "pt.getContext": 2,
+ "ci.getContext": 1,
+ "kt.textColor": 2,
+ "f*.007": 2,
+ "f*.009": 1,
+ "e*.009": 1,
+ "e*.88": 2,
+ "e*.055": 2,
+ "e*.22": 3,
+ "e*.15": 2,
+ "k.labelColor.setAlpha": 1,
+ "k.labelColor.getRgbaColor": 5,
+ "e*.12864": 3,
+ "e*.856796": 3,
+ ".65*e": 1,
+ ".63*e": 3,
+ ".66*e": 1,
+ ".67*e": 1,
+ "g/": 1,
+ "tickCounter*h": 2,
+ "e*.73": 3,
+ "ti/2": 1,
+ "n.bargraphled": 4,
+ "nr.drawImage": 2,
+ "tr.drawImage": 2,
+ "nt.save": 1,
+ "e*.728155*": 1,
+ "st/": 1,
+ "nt.translate": 2,
+ "rt/2": 2,
+ "f*.856796": 2,
+ "f*.12864": 2,
+ "*st/": 1,
+ "e*.58": 1,
+ "nt.drawImage": 3,
+ "nt.restore": 1,
+ "f*.012135/2": 1,
+ "ft.push": 1,
+ "*c": 2,
+ "y*.121428": 2,
+ "w*.012135": 2,
+ "y*.012135": 2,
+ "w*.121428": 2,
+ "y*.093457": 2,
+ "w*.093457": 2,
+ "pt.width": 1,
+ "pt.height": 1,
+ "ku.repaint": 1,
+ "k.labelColor": 1,
+ "r*": 2,
+ "r*1.014": 5,
+ "t*.856796": 1,
+ "t*.12864": 1,
+ "t*.13": 3,
+ "r*1.035": 4,
+ "f.setAlpha": 8,
+ ".047058": 2,
+ "rt.addColorStop": 4,
+ "f.getRgbaColor": 8,
+ ".145098": 1,
+ ".149019": 1,
+ "t*.15": 1,
+ "i*.152857": 1,
+ ".298039": 1,
+ "it.addColorStop": 4,
+ ".686274": 1,
+ ".698039": 1,
+ "i*.851941": 1,
+ "t*.121428": 1,
+ "i*.012135": 1,
+ "t*.012135": 1,
+ "i*.121428": 1,
+ "*r": 4,
+ "o/r*": 1,
+ "yt.getEnd": 2,
+ "yt.getStart": 2,
+ "lt/ct": 2,
+ "yt.getColorAt": 2,
+ "": 1,
+ "st.medium.getHexColor": 2,
+ "a.medium.getHexColor": 2,
+ "b/2": 2,
+ "e/r*": 1,
+ "": 1,
+ "v.createRadialGradient": 2,
+ "": 5,
+ "oi.pause": 1,
+ "oi.play": 1,
+ "": 1,
+ "bargraphled": 3,
+ "v.drawImage": 2,
+ "": 1,
+ "n=": 10,
+ "856796": 4,
+ "728155": 2,
+ "34": 2,
+ "12864": 2,
+ "142857": 2,
+ "65": 2,
+ "drawImage": 12,
+ "save": 27,
+ "restore": 14,
+ "repaint": 23,
+ "dr=": 1,
+ "b=": 25,
+ "128": 2,
+ "y=": 5,
+ "48": 1,
+ "w=": 4,
+ "lcdColor": 4,
+ "LcdColor": 4,
+ "STANDARD": 3,
+ "pt=": 5,
+ "lcdDecimals": 4,
+ "lt=": 4,
+ "unitString": 4,
+ "at=": 3,
+ "unitStringVisible": 4,
+ "ht=": 6,
+ "digitalFont": 4,
+ "bt=": 3,
+ "valuesNumeric": 4,
+ "a=": 23,
+ "ct=": 5,
+ "autoScroll": 2,
+ "section": 2,
+ "c=": 24,
+ "wt=": 3,
+ "getElementById": 4,
+ "clearRect": 8,
+ "h=": 19,
+ "l=": 10,
+ "v=": 5,
+ "floor": 13,
+ "5": 23,
+ "ot=": 4,
+ "sans": 12,
+ "serif": 13,
+ "it=": 7,
+ "nt=": 5,
+ "et=": 6,
+ "kt=": 4,
+ "textAlign=": 7,
+ "strokeStyle=": 8,
+ "4": 4,
+ "clip": 1,
+ "font=": 28,
+ "measureText": 4,
+ "toFixed": 3,
+ "fillText": 23,
+ "38": 5,
+ "o*.2": 1,
+ "clearTimeout": 2,
+ "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1,
+ "d=": 15,
+ "rt=": 3,
+ "095": 1,
+ "createLinearGradient": 6,
+ "addColorStop": 25,
+ "4c4c4c": 1,
+ "08": 1,
+ "666666": 2,
+ "92": 1,
+ "e6e6e6": 1,
+ "g=": 15,
+ "gradientStartColor": 1,
+ "tt=": 3,
+ "gradientFraction1Color": 1,
+ "gradientFraction2Color": 1,
+ "gradientFraction3Color": 1,
+ "gradientStopColor": 1,
+ "yt=": 4,
+ "31": 26,
+ "k=": 11,
+ "p=": 5,
+ "ut=": 6,
+ "rgb": 6,
+ "03": 1,
+ "49": 1,
+ "57": 1,
+ "83": 1,
+ "wt.repaint": 1,
+ "f.length": 5,
+ "resetBuffers": 1,
+ "this.setScrolling": 1,
+ "w.textColor": 1,
+ "": 1,
+ "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1,
+ "64": 1,
+ "875": 2,
+ "textBaseline=": 4,
+ "textColor": 2,
+ "STANDARD_GREEN": 1,
+ "shadowColor=": 1,
+ "shadowOffsetX=": 1,
+ "05": 2,
+ "shadowOffsetY=": 1,
+ "shadowBlur=": 1,
+ "06": 1,
+ "46": 1,
+ "8": 2,
+ "setValue=": 2,
+ "setLcdColor=": 2,
+ "repaint=": 2,
+ "br=": 1,
+ "size": 6,
+ "200": 2,
+ "st=": 3,
+ "decimalsVisible": 2,
+ "gt=": 1,
+ "textOrientationFixed": 2,
+ "frameDesign": 4,
+ "FrameDesign": 2,
+ "METAL": 2,
+ "frameVisible": 4,
+ "backgroundColor": 2,
+ "BackgroundColor": 1,
+ "DARK_GRAY": 1,
+ "vt=": 2,
+ "backgroundVisible": 2,
+ "pointerColor": 4,
+ "ColorDef": 2,
+ "RED": 1,
+ "foregroundType": 4,
+ "ForegroundType": 2,
+ "TYPE1": 2,
+ "foregroundVisible": 4,
+ "PI": 54,
+ "180": 26,
+ "ni=": 1,
+ "labelColor": 6,
+ "getRgbaColor": 21,
+ "translate": 38,
+ "360": 15,
+ "p.labelColor.getRgbaColor": 4,
+ "f*.38": 7,
+ "f*.37": 3,
+ "": 1,
+ "rotate": 31,
+ "Math": 51,
+ "u00b0": 8,
+ "41": 3,
+ "45": 5,
+ "25": 9,
+ "085": 4,
+ "100": 4,
+ "90": 3,
+ "21": 2,
+ "u221e": 2,
+ "135": 1,
+ "225": 1,
+ "75": 3,
+ "270": 1,
+ "315": 1,
+ "ti=": 2,
+ "200934": 2,
+ "434579": 4,
+ "163551": 5,
+ "560747": 4,
+ "lineWidth=": 6,
+ "lineCap=": 5,
+ "lineJoin=": 5,
+ "471962": 4,
+ "205607": 1,
+ "523364": 5,
+ "799065": 2,
+ "836448": 5,
+ "794392": 1,
+ "ii=": 2,
+ "350467": 5,
+ "130841": 1,
+ "476635": 2,
+ "bezierCurveTo": 6,
+ "490654": 3,
+ "345794": 3,
+ "509345": 1,
+ "154205": 1,
+ "350466": 1,
+ "dark": 2,
+ "light": 5,
+ "setAlpha": 8,
+ "70588": 4,
+ "59": 3,
+ "dt=": 2,
+ "285046": 5,
+ "514018": 6,
+ "21028": 1,
+ "481308": 4,
+ "280373": 3,
+ "495327": 2,
+ "504672": 2,
+ "224299": 1,
+ "289719": 1,
+ "714953": 5,
+ "789719": 1,
+ "719626": 3,
+ "7757": 1,
+ "71028": 1,
+ "ft=": 3,
+ "*10": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "": 2,
+ "<-90&&e>": 2,
+ "<-180&&e>": 2,
+ "<-270&&e>": 2,
+ "d.playing": 2,
+ "d.stop": 2,
+ "d.onMotionChanged": 2,
+ "d.start": 2,
+ "s.save": 4,
+ "s.clearRect": 3,
+ "s.canvas.width": 4,
+ "s.canvas.height": 4,
+ "s.drawImage": 8,
+ "e*kt": 1,
+ "s.translate": 6,
+ "s.rotate": 3,
+ "s.fillStyle": 1,
+ "s.textAlign": 1,
+ "s.textBaseline": 1,
+ "s.restore": 6,
+ "s.font": 2,
+ "f*.15": 2,
+ "s.fillText": 2,
+ "f*.35": 26,
+ "f*.2": 1,
+ "k*Math.PI/180": 1,
+ "u.size": 4,
+ "u.frameDesign": 4,
+ "u.frameVisible": 4,
+ "u.backgroundColor": 4,
+ "u.backgroundVisible": 4,
+ "u.pointerType": 2,
+ "steelseries.PointerType.TYPE2": 1,
+ "u.pointerColor": 4,
+ "u.knobType": 4,
+ "u.knobStyle": 4,
+ "u.foregroundType": 4,
+ "u.foregroundVisible": 4,
+ "u.pointSymbols": 4,
+ "u.customLayer": 4,
+ "u.degreeScale": 4,
+ "u.roseVisible": 4,
+ "this.value": 4,
+ "ft.getContext": 2,
+ "ut.getContext": 2,
+ "it.getContext": 2,
+ "ot.getContext": 3,
+ "et.getContext": 2,
+ "tt.labelColor.getRgbaColor": 2,
+ ".08*f": 1,
+ "f*.033": 1,
+ "st*10": 2,
+ ".substring": 2,
+ ".12*f": 2,
+ ".06*f": 2,
+ "tt.symbolColor.getRgbaColor": 1,
+ "st*2.5": 1,
+ "bt.type": 1,
+ "f*.53271": 6,
+ "e*.453271": 5,
+ "f*.5": 17,
+ "e*.149532": 8,
+ "f*.467289": 6,
+ "f*.453271": 2,
+ "e*.462616": 2,
+ "f*.443925": 9,
+ "e*.481308": 2,
+ "e*.5": 10,
+ "f*.556074": 9,
+ "f*.546728": 2,
+ ".471962*f": 5,
+ ".528036*f": 5,
+ "o.addColorStop": 4,
+ "h.light.getRgbaColor": 6,
+ ".46": 3,
+ ".47": 3,
+ "h.medium.getRgbaColor": 6,
+ "h.dark.getRgbaColor": 3,
+ "n.lineCap": 5,
+ "n.lineJoin": 5,
+ "e*.546728": 5,
+ "e*.850467": 4,
+ "e*.537383": 2,
+ "e*.518691": 2,
+ "s.addColorStop": 4,
+ "e*.490654": 2,
+ "e*.53271": 2,
+ "e*.556074": 3,
+ "e*.495327": 4,
+ "f*.528037": 2,
+ "f*.471962": 2,
+ "e*.504672": 4,
+ ".480099": 1,
+ "f*.006": 2,
+ "ft.width": 1,
+ "ft.height": 1,
+ "ut.width": 1,
+ "ut.height": 1,
+ "it.width": 1,
+ "it.height": 1,
+ "ot.width": 1,
+ "ot.height": 1,
+ "et.width": 1,
+ "et.height": 1,
+ "Tween.elasticEaseOut": 1,
+ "r.repaint": 1,
+ "this.setPointSymbols": 1,
+ "p*st": 1,
+ "b.clearRect": 1,
+ "b.save": 1,
+ "b.translate": 2,
+ "b.rotate": 1,
+ "b.drawImage": 1,
+ "b.restore": 1,
+ "u.pointerTypeLatest": 2,
+ "u.pointerTypeAverage": 2,
+ "steelseries.PointerType.TYPE8": 1,
+ "u.pointerColorAverage": 2,
+ "steelseries.ColorDef.BLUE": 1,
+ "u.lcdColor": 2,
+ "u.lcdVisible": 2,
+ "u.digitalFont": 2,
+ "u.section": 2,
+ "u.area": 2,
+ "u.lcdTitleStrings": 2,
+ "u.titleString": 2,
+ "u.useColorLabels": 2,
+ "this.valueLatest": 1,
+ "this.valueAverage": 1,
+ "Math.PI*2": 1,
+ "e.save": 2,
+ "e.clearRect": 1,
+ "e.canvas.width": 2,
+ "e.canvas.height": 2,
+ "f/10": 1,
+ "f*.3": 4,
+ "s*.12": 1,
+ "s*.32": 1,
+ "s*.565": 1,
+ "bt.getContext": 1,
+ "at.getContext": 1,
+ "vt.getContext": 1,
+ "lt.getContext": 1,
+ "wt.getContext": 1,
+ "e.textAlign": 1,
+ "e.strokeStyle": 1,
+ "ht.textColor": 2,
+ "e.fillStyle": 1,
+ "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1,
+ "arc": 2,
+ "365": 2,
+ "lineWidth": 1,
+ "lr=": 1,
+ "35": 1,
+ "355": 1,
+ "36": 2,
+ "bold": 1,
+ "04": 2,
+ "ct*5": 1,
+ "k.symbolColor.getRgbaColor": 1,
+ "ct*2.5": 1,
+ "ti.length": 1,
+ "kt.medium.getRgbaColor": 1,
+ ".04*f": 1,
+ "s*.29": 1,
+ "ii.medium.getRgbaColor": 1,
+ "s*.71": 1,
+ "rr.length": 1,
+ ".0467*f": 1,
+ "s*.5": 1,
+ "et.length": 2,
+ "ft.length": 2,
+ "": 1,
+ "ci=": 1,
+ "li=": 1,
+ "ai=": 1,
+ "ki=": 1,
+ "yi=": 1,
+ "setValueLatest=": 1,
+ "getValueLatest=": 1,
+ "setValueAverage=": 1,
+ "getValueAverage=": 1,
+ "setValueAnimatedLatest=": 1,
+ "playing": 2,
+ "regularEaseInOut": 2,
+ "onMotionChanged=": 2,
+ "_pos": 2,
+ "onMotionFinished=": 2,
+ "setValueAnimatedAverage=": 1,
+ "setArea=": 1,
+ "setSection=": 1,
+ "setFrameDesign=": 1,
+ "pi=": 1,
+ "setBackgroundColor=": 1,
+ "setForegroundType=": 1,
+ "si=": 1,
+ "setPointerColor=": 1,
+ "setPointerColorAverage=": 1,
+ "setPointerType=": 1,
+ "setPointerTypeAverage=": 1,
+ "ri=": 1,
+ "setPointSymbols=": 1,
+ "setLcdTitleStrings=": 1,
+ "fi=": 1,
+ "006": 1,
+ "ei=": 1,
+ "ru=": 1,
+ "WHITE": 1,
+ "037383": 1,
+ "056074": 1,
+ "7fd5f0": 2,
+ "3c4439": 2,
+ "72": 1,
+ "Animal": 12,
+ "Horse": 12,
+ "Snake": 12,
+ "sam": 4,
+ "tom": 4,
+ "__hasProp": 2,
+ "__extends": 6,
+ "__hasProp.call": 2,
+ "this.constructor": 5,
+ "Animal.prototype.move": 2,
+ "meters": 4,
+ "Snake.__super__.constructor.apply": 2,
+ "Snake.prototype.move": 2,
+ "Snake.__super__.move.call": 2,
+ "Horse.__super__.constructor.apply": 2,
+ "Horse.prototype.move": 2,
+ "Horse.__super__.move.call": 2,
+ "sam.move": 2,
+ "tom.move": 2,
+ "ma": 3,
+ "c.isReady": 4,
+ "s.documentElement.doScroll": 2,
+ "c.ready": 7,
+ "Qa": 1,
+ "b.src": 4,
+ "c.ajax": 1,
+ "async": 5,
+ "c.globalEval": 1,
+ "b.text": 3,
+ "b.textContent": 2,
+ "b.innerHTML": 3,
+ "b.parentNode": 4,
+ "b.parentNode.removeChild": 2,
+ "X": 6,
+ "j": 265,
+ "a.length": 23,
+ "c.isFunction": 9,
+ "d.call": 3,
+ "J": 5,
+ "Y": 3,
+ "na": 1,
+ ".type": 2,
+ "c.event.handle.apply": 1,
+ "oa": 1,
+ "c.data": 12,
+ "a.liveFired": 4,
+ "i.live": 1,
+ "a.button": 2,
+ "a.type": 14,
+ "i.live.slice": 1,
+ "u.length": 3,
+ "i.origType.replace": 1,
+ "O": 6,
+ "f.push": 5,
+ "i.selector": 3,
+ "u.splice": 1,
+ "a.target": 5,
+ ".closest": 4,
+ "a.currentTarget": 4,
+ "j.length": 2,
+ ".selector": 1,
+ ".elem": 1,
+ "i.preType": 2,
+ "a.relatedTarget": 2,
+ "d.push": 1,
+ "handleObj": 2,
+ "d.length": 8,
+ "j.elem": 2,
+ "a.data": 2,
+ "j.handleObj.data": 1,
+ "a.handleObj": 2,
+ "j.handleObj": 1,
+ "j.handleObj.origHandler.apply": 1,
+ "pa": 1,
+ "b.replace": 3,
+ "./g": 2,
+ "qa": 1,
+ "a.parentNode": 6,
+ "a.parentNode.nodeType": 2,
+ "ra": 1,
+ "b.each": 1,
+ "this.nodeName": 4,
+ ".nodeName": 2,
+ "f.events": 1,
+ "e.handle": 2,
+ "e.events": 2,
+ "c.event.add": 1,
+ "sa": 2,
+ ".ownerDocument": 5,
+ ".length": 24,
+ "ta.test": 1,
+ "c.support.checkClone": 2,
+ "ua.test": 1,
+ "c.fragments": 2,
+ "b.createDocumentFragment": 1,
+ "c.clean": 1,
+ "cacheable": 2,
+ "K": 4,
+ "c.each": 2,
+ "va.concat.apply": 1,
+ "va.slice": 1,
+ "wa": 1,
+ "a.document": 3,
+ "a.nodeType": 27,
+ "a.defaultView": 2,
+ "a.parentWindow": 2,
+ "c.fn.init": 1,
+ "Ra": 2,
+ "A.jQuery": 3,
+ "Sa": 2,
+ "A.": 3,
+ "A.document": 1,
+ "T": 4,
+ "Ta": 1,
+ "Ua": 1,
+ "Va": 1,
+ "Wa": 2,
+ "u00A0": 2,
+ "Xa": 1,
+ "P": 4,
+ "xa": 3,
+ "Q": 6,
+ "L": 10,
+ "aa": 1,
+ "ba": 3,
+ "R": 2,
+ "ya": 2,
+ "c.fn": 2,
+ "c.prototype": 1,
+ "s.body": 2,
+ "Ta.exec": 1,
+ "b.ownerDocument": 6,
+ "Xa.exec": 1,
+ "c.isPlainObject": 3,
+ "s.createElement": 10,
+ "c.fn.attr.call": 1,
+ "f.createElement": 1,
+ "a.cacheable": 1,
+ "a.fragment.cloneNode": 1,
+ "a.fragment": 1,
+ ".childNodes": 2,
+ "c.merge": 4,
+ "s.getElementById": 1,
+ "b.id": 1,
+ "T.find": 1,
+ "s.getElementsByTagName": 2,
+ "b.jquery": 1,
+ ".find": 5,
+ "T.ready": 1,
+ "a.selector": 4,
+ "a.context": 2,
+ "c.makeArray": 3,
+ "jquery": 3,
+ "toArray": 2,
+ "R.call": 2,
+ "this.toArray": 3,
+ "this.slice": 5,
+ "pushStack": 4,
+ "c.isArray": 5,
+ "ba.apply": 1,
+ "f.prevObject": 1,
+ "f.context": 1,
+ "f.selector": 2,
+ "c.bindReady": 1,
+ "a.call": 17,
+ "Q.push": 1,
+ "eq": 2,
+ "this.eq": 4,
+ "this.pushStack": 12,
+ "R.apply": 1,
+ "c.map": 1,
+ "this.prevObject": 3,
+ "c.fn.init.prototype": 1,
+ "c.extend": 7,
+ "c.fn.extend": 4,
+ "c.fn.triggerHandler": 1,
+ ".triggerHandler": 1,
+ "s.readyState": 2,
+ "s.addEventListener": 3,
+ "A.addEventListener": 1,
+ "s.attachEvent": 3,
+ "A.attachEvent": 1,
+ "A.frameElement": 1,
+ "isFunction": 12,
+ "isArray": 10,
+ "isPlainObject": 4,
+ "a.setInterval": 2,
+ "a.constructor": 2,
+ "aa.call": 3,
+ "a.constructor.prototype": 2,
+ "c.trim": 3,
+ "a.replace": 7,
+ "@": 1,
+ "A.JSON": 1,
+ "A.JSON.parse": 2,
+ "c.error": 2,
+ "noop": 3,
+ "globalEval": 2,
+ "Va.test": 1,
+ "s.documentElement": 2,
+ "d.type": 2,
+ "c.support.scriptEval": 2,
+ "d.appendChild": 3,
+ "s.createTextNode": 2,
+ "d.text": 1,
+ "b.insertBefore": 3,
+ "b.firstChild": 5,
+ "b.removeChild": 3,
+ "a.nodeName": 12,
+ "a.nodeName.toUpperCase": 2,
+ "b.toUpperCase": 3,
+ "b.apply": 2,
+ "b.call": 4,
+ "makeArray": 3,
+ "ba.call": 1,
+ "inArray": 5,
+ "b.indexOf": 2,
+ "b.length": 12,
+ "merge": 2,
+ "grep": 6,
+ "f.concat.apply": 1,
+ "guid": 5,
+ "proxy": 4,
+ "a.apply": 2,
+ "b.guid": 2,
+ "a.guid": 7,
+ "c.guid": 1,
+ "a.toLowerCase": 4,
+ "/.exec": 4,
+ "/compatible/.test": 1,
+ "c.uaMatch": 1,
+ "P.browser": 2,
+ "c.browser": 1,
+ "c.browser.version": 1,
+ "P.version": 1,
+ "c.browser.webkit": 1,
+ "c.browser.safari": 1,
+ "c.inArray": 2,
+ "ya.call": 1,
+ "s.removeEventListener": 1,
+ "s.detachEvent": 1,
+ "c.support": 2,
+ "d.style.display": 5,
+ "d.innerHTML": 2,
+ "d.getElementsByTagName": 6,
+ "e.length": 9,
+ "d.firstChild.nodeType": 1,
+ "htmlSerialize": 3,
+ "/red/.test": 1,
+ "j.getAttribute": 2,
+ "j.style.opacity": 1,
+ "j.style.cssFloat": 1,
+ ".value": 1,
+ "optSelected": 3,
+ ".appendChild": 1,
+ ".selected": 1,
+ "parentNode": 10,
+ "d.removeChild": 1,
+ ".parentNode": 7,
+ "deleteExpando": 3,
+ "checkClone": 1,
+ "scriptEval": 1,
+ "noCloneEvent": 3,
+ "boxModel": 1,
+ "b.type": 4,
+ "b.appendChild": 1,
+ "a.insertBefore": 2,
+ "a.firstChild": 6,
+ "b.test": 1,
+ "c.support.deleteExpando": 2,
+ "a.removeChild": 2,
+ "d.attachEvent": 2,
+ "d.fireEvent": 1,
+ "c.support.noCloneEvent": 1,
+ "d.detachEvent": 1,
+ "d.cloneNode": 1,
+ "s.createDocumentFragment": 1,
+ "a.appendChild": 3,
+ "d.firstChild": 2,
+ "a.cloneNode": 3,
+ ".lastChild.checked": 2,
+ "k.style.width": 1,
+ "k.style.paddingLeft": 1,
+ "s.body.appendChild": 1,
+ "c.boxModel": 1,
+ "c.support.boxModel": 1,
+ "k.offsetWidth": 1,
+ "s.body.removeChild": 1,
+ "n.setAttribute": 1,
+ "c.support.submitBubbles": 1,
+ "c.support.changeBubbles": 1,
+ "c.props": 2,
+ "readonly": 3,
+ "maxlength": 2,
+ "cellspacing": 2,
+ "rowspan": 2,
+ "colspan": 2,
+ "usemap": 2,
+ "frameborder": 2,
+ "G": 11,
+ "Ya": 2,
+ "za": 3,
+ "embed": 3,
+ "applet": 2,
+ "c.noData": 2,
+ "a.nodeName.toLowerCase": 3,
+ "c.cache": 2,
+ "c.isEmptyObject": 1,
+ "c.removeData": 2,
+ "c.expando": 2,
+ "a.removeAttribute": 3,
+ "a.split": 4,
+ "this.trigger": 2,
+ ".each": 3,
+ "queue": 7,
+ "dequeue": 6,
+ "c.queue": 3,
+ "d.shift": 2,
+ "d.unshift": 2,
+ "f.call": 1,
+ "c.dequeue": 4,
+ "c.fx": 1,
+ "c.fx.speeds": 1,
+ "this.queue": 4,
+ "clearQueue": 2,
+ "Aa": 3,
+ "ca": 6,
+ "Za": 2,
+ "r/g": 2,
+ "/href": 1,
+ "style/": 1,
+ "ab": 1,
+ "bb": 2,
+ "cb": 16,
+ "area": 2,
+ "Ba": 3,
+ "/radio": 1,
+ "checkbox/": 1,
+ "c.attr": 4,
+ "this.nodeType": 4,
+ "this.removeAttribute": 1,
+ "addClass": 2,
+ "r.addClass": 1,
+ "r.attr": 1,
+ "e.nodeType": 7,
+ "e.className": 14,
+ "j.indexOf": 1,
+ "removeClass": 2,
+ "n.removeClass": 1,
+ "n.attr": 1,
+ "j.replace": 2,
+ "toggleClass": 2,
+ "j.toggleClass": 1,
+ "j.attr": 1,
+ "i.hasClass": 1,
+ "hasClass": 2,
+ "": 1,
+ "val": 13,
+ "c.nodeName": 4,
+ "b.attributes.value": 1,
+ ".specified": 1,
+ "b.value": 4,
+ "b.selectedIndex": 2,
+ "b.options": 1,
+ "": 1,
+ "getAttribute": 3,
+ "nodeType=": 6,
+ "call": 9,
+ "checked=": 1,
+ "this.selected": 1,
+ "this.selectedIndex": 1,
+ "attrFn": 2,
+ "css": 7,
+ "c.attrFn": 1,
+ "c.isXMLDoc": 1,
+ "a.test": 2,
+ "ab.test": 1,
+ "a.getAttributeNode": 7,
+ ".nodeValue": 1,
+ "b.specified": 2,
+ "bb.test": 2,
+ "cb.test": 1,
+ "a.href": 2,
+ "c.support.style": 1,
+ "a.style.cssText": 3,
+ "a.setAttribute": 7,
+ "c.support.hrefNormalized": 1,
+ "c.style": 1,
+ "db": 1,
+ "detail": 3,
+ "layerX": 3,
+ "layerY": 3,
+ "newValue": 3,
+ "originalTarget": 1,
+ "prevValue": 3,
+ "wheelDelta": 3,
+ "click.specialSubmit": 2,
+ "submit": 14,
+ "keypress.specialSubmit": 2,
+ "password": 5,
+ ".specialSubmit": 2,
+ "_change_data": 6,
+ "file": 5,
+ ".specialChange": 4,
+ "unload": 5,
+ "live": 8,
+ "lastToggle": 4,
+ "die": 3,
+ "hover": 3,
+ "load": 5,
+ "resize": 3,
+ "scroll": 6,
+ "dblclick": 3,
+ "mousedown": 3,
+ "mouseup": 3,
+ "mousemove": 3,
+ "keydown": 4,
+ "keypress": 4,
+ "keyup": 3,
+ "onunload": 1,
+ "m": 76,
+ "h.nodeType": 4,
+ "H": 8,
+ "M": 9,
+ "I": 7,
+ "f.exec": 2,
+ "p.push": 2,
+ "p.length": 10,
+ "r.exec": 1,
+ "n.relative": 5,
+ "ga": 2,
+ "p.shift": 4,
+ "n.match.ID.test": 2,
+ "k.find": 6,
+ "v.expr": 4,
+ "k.filter": 5,
+ "v.set": 5,
+ "expr": 2,
+ "p.pop": 4,
+ "h.parentNode": 3,
+ "D": 9,
+ "k.error": 2,
+ "j.call": 2,
+ ".nodeType": 9,
+ "E": 11,
+ "l.push": 2,
+ "l.push.apply": 1,
+ "k.uniqueSort": 5,
+ "B": 5,
+ "g.sort": 1,
+ "g.length": 2,
+ "g.splice": 2,
+ "k.matches": 1,
+ "n.order.length": 1,
+ "n.order": 1,
+ "n.leftMatch": 1,
+ ".exec": 2,
+ "q.splice": 1,
+ "y.substr": 1,
+ "y.length": 1,
+ "Syntax": 3,
+ "unrecognized": 3,
+ "expression": 4,
+ "NAME": 2,
+ "TAG": 2,
+ "u00c0": 2,
+ "uFFFF": 2,
+ "leftMatch": 2,
+ "attrMap": 2,
+ "attrHandle": 2,
+ "g.getAttribute": 1,
+ "relative": 4,
+ "W/.test": 1,
+ "h.toLowerCase": 2,
+ "": 1,
+ "previousSibling": 5,
+ "nth": 5,
+ "even": 3,
+ "odd": 2,
+ "reset": 2,
+ "sourceIndex": 1,
+ "": 4,
+ "name=": 2,
+ "href=": 2,
+ "": 2,
+ "": 2,
+ "class=": 5,
+ " ": 2,
+ ".TEST": 2,
+ "": 4,
+ " ": 3,
+ "CLASS": 1,
+ "nextSibling": 3,
+ "\"+d+\">": 1,
+ "": 1,
+ "": 1,
+ "": 5,
+ "": 3,
+ "": 3,
+ "": 2,
+ " ": 2,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "position": 7,
+ "absolute": 2,
+ "solid": 2,
+ "#000": 2,
+ "padding": 4,
+ "": 1,
+ " | ": 1,
+ "fixed": 1,
+ "marginLeft": 2,
+ "borderTopWidth": 1,
+ "borderLeftWidth": 1,
+ "static": 2,
+ "Left": 1,
+ "Top": 1,
+ "pageXOffset": 2,
+ "pageYOffset": 1,
+ "Height": 1,
+ "Width": 1,
+ "scrollTo": 1,
+ "CSS1Compat": 1,
+ "client": 3,
+ "cy": 4,
+ "f.isWindow": 2,
+ "cv": 2,
+ "cj": 4,
+ "b.css": 1,
+ "b.remove": 1,
+ "ck": 5,
+ "c.createElement": 12,
+ "ck.frameBorder": 1,
+ "ck.width": 1,
+ "ck.height": 1,
+ "c.body.appendChild": 1,
+ "cl": 3,
+ "ck.createElement": 1,
+ "ck.contentWindow": 1,
+ "ck.contentDocument": 1,
+ ".document": 1,
+ "cl.write": 1,
+ "cl.createElement": 1,
+ "cl.body.appendChild": 1,
+ "f.css": 24,
+ "c.body.removeChild": 1,
+ "f.each": 21,
+ "cp.concat.apply": 1,
+ "cp.slice": 1,
+ "cq": 3,
+ "cs": 3,
+ "f.now": 2,
+ "a.ActiveXObject": 3,
+ "a.XMLHttpRequest": 1,
+ "a.dataFilter": 2,
+ "a.dataType": 1,
+ "a.dataTypes": 2,
+ "a.converters": 3,
+ "o.split": 1,
+ "f.error": 4,
+ "m.replace": 1,
+ "a.contents": 1,
+ "a.responseFields": 1,
+ "f.shift": 1,
+ "a.mimeType": 1,
+ "c.getResponseHeader": 1,
+ ".test": 1,
+ "f.unshift": 2,
+ "b_": 4,
+ "f.isArray": 8,
+ "bF.test": 1,
+ "c.dataTypes": 1,
+ "h.length": 3,
+ "bU": 4,
+ "c.dataTypes.unshift": 1,
+ "bZ": 3,
+ "f.isFunction": 21,
+ "b.toLowerCase": 3,
+ "bQ": 3,
+ "h.substr": 1,
+ "bD": 3,
+ "bx": 2,
+ "a.offsetWidth": 6,
+ "a.offsetHeight": 2,
+ "bn": 2,
+ "f.ajax": 3,
+ "f.globalEval": 2,
+ "bm": 3,
+ "f.nodeName": 16,
+ "bl": 3,
+ "a.getElementsByTagName": 9,
+ "f.grep": 3,
+ "a.defaultChecked": 1,
+ "a.checked": 4,
+ "bk": 5,
+ "a.querySelectorAll": 1,
+ "bj": 3,
+ "b.nodeType": 6,
+ "b.clearAttributes": 2,
+ "b.mergeAttributes": 2,
+ "b.nodeName.toLowerCase": 1,
+ "b.outerHTML": 1,
+ "a.outerHTML": 1,
+ "b.selected": 1,
+ "a.defaultSelected": 1,
+ "b.defaultValue": 1,
+ "a.defaultValue": 1,
+ "b.defaultChecked": 1,
+ "b.checked": 1,
+ "a.value": 8,
+ "b.removeAttribute": 3,
+ "f.expando": 23,
+ "f.hasData": 2,
+ "f.data": 25,
+ "d.events": 1,
+ "f.extend": 23,
+ "": 1,
+ "bh": 1,
+ "getElementsByTagName": 1,
+ "appendChild": 1,
+ "nodeType": 1,
+ "W": 3,
+ "N": 2,
+ "f._data": 15,
+ "r.live": 1,
+ "a.target.disabled": 1,
+ "a.namespace": 1,
+ "a.namespace.split": 1,
+ "r.live.slice": 1,
+ "s.length": 2,
+ "g.origType.replace": 1,
+ "q.push": 1,
+ "g.selector": 3,
+ "s.splice": 1,
+ "m.selector": 1,
+ "n.test": 2,
+ "g.namespace": 1,
+ "m.elem.disabled": 1,
+ "m.elem": 1,
+ "g.preType": 3,
+ "f.contains": 5,
+ "m.level": 1,
+ "": 1,
+ "e.elem": 2,
+ "e.handleObj.data": 1,
+ "e.handleObj": 1,
+ "e.handleObj.origHandler.apply": 1,
+ "a.isPropagationStopped": 1,
+ "e.level": 1,
+ "a.isImmediatePropagationStopped": 1,
+ "e.type": 6,
+ "e.originalEvent": 1,
+ "e.liveFired": 1,
+ "f.event.handle.call": 1,
+ "e.isDefaultPrevented": 2,
+ ".preventDefault": 1,
+ "f.removeData": 4,
+ "i.resolve": 1,
+ "c.replace": 4,
+ "f.isNaN": 3,
+ "i.test": 1,
+ "f.parseJSON": 2,
+ "a.navigator": 1,
+ "a.location": 1,
+ "e.isReady": 1,
+ "c.documentElement.doScroll": 2,
+ "e.ready": 6,
+ "e.fn.init": 1,
+ "a.jQuery": 2,
+ "a.": 2,
+ "d/": 3,
+ "d.userAgent": 1,
+ "C": 4,
+ "e.fn": 2,
+ "e.prototype": 1,
+ "c.body": 4,
+ "a.charAt": 2,
+ "i.exec": 1,
+ "d.ownerDocument": 1,
+ "n.exec": 1,
+ "e.isPlainObject": 1,
+ "e.fn.attr.call": 1,
+ "k.createElement": 1,
+ "e.buildFragment": 1,
+ "j.cacheable": 1,
+ "e.clone": 1,
+ "j.fragment": 2,
+ "e.merge": 3,
+ "c.getElementById": 1,
+ "h.id": 1,
+ "f.find": 2,
+ "d.jquery": 1,
+ "e.isFunction": 5,
+ "f.ready": 1,
+ "e.makeArray": 1,
+ "D.call": 4,
+ "e.isArray": 2,
+ "C.apply": 1,
+ "d.prevObject": 1,
+ "d.context": 2,
+ "d.selector": 2,
+ "e.each": 2,
+ "e.bindReady": 1,
+ "y.done": 1,
+ "D.apply": 1,
+ "e.map": 1,
+ "e.fn.init.prototype": 1,
+ "e.extend": 2,
+ "e.fn.extend": 1,
+ "": 1,
+ "jQuery=": 2,
+ "isReady=": 1,
+ "y.resolveWith": 1,
+ "e.fn.trigger": 1,
+ "e._Deferred": 1,
+ "c.readyState": 2,
+ "c.addEventListener": 4,
+ "a.addEventListener": 4,
+ "c.attachEvent": 3,
+ "a.attachEvent": 6,
+ "a.frameElement": 1,
+ "Array.isArray": 7,
+ "isWindow": 2,
+ "isNaN": 6,
+ "m.test": 1,
+ "A.call": 1,
+ "e.isWindow": 2,
+ "B.call": 3,
+ "e.trim": 1,
+ "a.JSON": 1,
+ "a.JSON.parse": 2,
+ "o.test": 1,
+ "e.error": 2,
+ "parseXML": 1,
+ "a.DOMParser": 1,
+ "DOMParser": 1,
+ "d.parseFromString": 1,
+ "ActiveXObject": 1,
+ "c.async": 4,
+ "c.loadXML": 1,
+ "c.documentElement": 4,
+ "d.nodeName": 4,
+ "j.test": 3,
+ "a.execScript": 1,
+ "a.eval.call": 1,
+ "c.apply": 2,
+ "c.call": 3,
+ "E.call": 1,
+ "C.call": 1,
+ "F.call": 1,
+ "c.length": 8,
+ "": 1,
+ "j=": 14,
+ "h.concat.apply": 1,
+ "f.concat": 1,
+ "g.guid": 3,
+ "e.guid": 3,
+ "e.access": 1,
+ "s.exec": 1,
+ "t.exec": 1,
+ "u.exec": 1,
+ "a.indexOf": 2,
+ "v.exec": 1,
+ "a.fn.init": 2,
+ "a.superclass": 1,
+ "a.fn": 2,
+ "a.prototype": 1,
+ "a.fn.constructor": 1,
+ "a.sub": 1,
+ "e.fn.init.call": 1,
+ "a.fn.init.prototype": 1,
+ "e.uaMatch": 1,
+ "x.browser": 2,
+ "e.browser": 1,
+ "e.browser.version": 1,
+ "x.version": 1,
+ "e.browser.webkit": 1,
+ "e.browser.safari": 1,
+ "c.removeEventListener": 2,
+ "c.detachEvent": 1,
+ "_Deferred": 4,
+ "done": 10,
+ "": 1,
+ "resolveWith": 4,
+ "shift": 1,
+ "apply": 8,
+ "finally": 3,
+ "resolve": 7,
+ "isResolved": 3,
+ "cancel": 6,
+ "Deferred": 5,
+ "rejectWith": 2,
+ "reject": 4,
+ "isRejected": 2,
+ "pipe": 2,
+ "promise": 14,
+ "h.call": 2,
+ "g.resolveWith": 3,
+ "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1,
+ ".promise": 5,
+ ".then": 3,
+ "g.reject": 1,
+ "g.promise": 1,
+ "f.support": 2,
+ "f.appendChild": 1,
+ "a.firstChild.nodeType": 2,
+ "/top/.test": 2,
+ "e.getAttribute": 2,
+ "e.style.opacity": 1,
+ "e.style.cssFloat": 1,
+ "h.value": 3,
+ "g.selected": 1,
+ "a.className": 1,
+ "submitBubbles": 3,
+ "changeBubbles": 3,
+ "focusinBubbles": 2,
+ "inlineBlockNeedsLayout": 3,
+ "shrinkWrapBlocks": 2,
+ "reliableMarginRight": 2,
+ "h.checked": 2,
+ "j.noCloneChecked": 1,
+ "h.cloneNode": 1,
+ ".checked": 2,
+ "f.disabled": 1,
+ "j.optDisabled": 1,
+ "g.disabled": 1,
+ "j.deleteExpando": 1,
+ "a.fireEvent": 1,
+ "j.noCloneEvent": 1,
+ "a.detachEvent": 1,
+ "h.setAttribute": 2,
+ "j.radioValue": 1,
+ "c.createDocumentFragment": 1,
+ "k.appendChild": 1,
+ "j.checkClone": 1,
+ "k.cloneNode": 1,
+ "a.style.width": 1,
+ "a.style.paddingLeft": 1,
+ "visibility": 3,
+ "l.style": 1,
+ "l.appendChild": 1,
+ "j.appendChecked": 1,
+ "j.boxModel": 1,
+ "a.style": 8,
+ "a.style.display": 3,
+ "a.style.zoom": 1,
+ "j.inlineBlockNeedsLayout": 1,
+ "j.shrinkWrapBlocks": 1,
+ "j.reliableHiddenOffsets": 1,
+ "c.defaultView": 2,
+ "c.defaultView.getComputedStyle": 3,
+ "i.style.width": 1,
+ "i.style.marginRight": 1,
+ "j.reliableMarginRight": 1,
+ "l.innerHTML": 1,
+ "f.boxModel": 1,
+ "f.support.boxModel": 4,
+ "f.fn.jquery": 1,
+ "f.cache": 5,
+ "f.acceptData": 4,
+ "f.uuid": 1,
+ ".toJSON": 4,
+ "f.noop": 4,
+ "f.camelCase": 5,
+ ".events": 1,
+ "f.support.deleteExpando": 3,
+ "f.noData": 2,
+ "f.fn.extend": 9,
+ ".attributes": 2,
+ "g.indexOf": 2,
+ "g.substring": 1,
+ "b.triggerHandler": 2,
+ "_mark": 2,
+ "_unmark": 3,
+ "f.makeArray": 5,
+ "e.push": 3,
+ "f.queue": 3,
+ "c.shift": 2,
+ "c.unshift": 1,
+ "f.dequeue": 4,
+ "f.fx": 2,
+ "f.fx.speeds": 1,
+ "d.resolveWith": 1,
+ "f.Deferred": 2,
+ "f._Deferred": 2,
+ "l.done": 1,
+ "d.promise": 1,
+ "rea": 1,
+ "autofocus": 1,
+ "autoplay": 1,
+ "controls": 1,
+ "defer": 1,
+ "open": 2,
+ "required": 1,
+ "scoped": 1,
+ "f.access": 3,
+ "f.attr": 2,
+ "f.removeAttr": 3,
+ "f.prop": 2,
+ "removeProp": 1,
+ "f.propFix": 6,
+ "c.addClass": 1,
+ "f.trim": 2,
+ "c.removeClass": 1,
+ "g.nodeType": 6,
+ "g.className": 4,
+ "h.replace": 2,
+ "d.toggleClass": 1,
+ "d.attr": 1,
+ "h.hasClass": 1,
+ "": 1,
+ "f.valHooks": 7,
+ "e.nodeName.toLowerCase": 1,
+ "c.get": 1,
+ "e.value": 1,
+ "e.val": 1,
+ "f.map": 5,
+ "this.nodeName.toLowerCase": 1,
+ "this.type": 3,
+ "c.set": 1,
+ "valHooks": 1,
+ "a.attributes.value": 1,
+ "a.text": 1,
+ "a.selectedIndex": 3,
+ "a.options": 2,
+ "": 3,
+ "optDisabled": 1,
+ "selected=": 1,
+ "attrFix": 1,
+ "f.attrFn": 3,
+ "f.isXMLDoc": 4,
+ "f.attrFix": 3,
+ "f.attrHooks": 5,
+ "t.test": 2,
+ "d.toLowerCase": 1,
+ "c.toLowerCase": 4,
+ "u.test": 1,
+ "i.set": 1,
+ "i.get": 1,
+ "f.support.getSetAttribute": 2,
+ "a.removeAttributeNode": 1,
+ "q.test": 1,
+ "f.support.radioValue": 1,
+ "c.specified": 1,
+ "c.value": 1,
+ "r.test": 1,
+ "s.test": 1,
+ "propFix": 1,
+ "cellpadding": 1,
+ "contenteditable": 1,
+ "f.propHooks": 1,
+ "h.set": 1,
+ "h.get": 1,
+ "propHooks": 1,
+ "f.attrHooks.value": 1,
+ "v.get": 1,
+ "f.attrHooks.name": 1,
+ "f.valHooks.button": 1,
+ "d.nodeValue": 3,
+ "f.support.hrefNormalized": 1,
+ "f.support.style": 1,
+ "f.attrHooks.style": 1,
+ "a.style.cssText.toLowerCase": 1,
+ "f.support.optSelected": 1,
+ "f.propHooks.selected": 2,
+ "b.parentNode.selectedIndex": 1,
+ "f.support.checkOn": 1,
+ "f.inArray": 4,
+ "s.": 1,
+ "f.event": 2,
+ "d.handler": 1,
+ "g.handler": 1,
+ "d.guid": 4,
+ "f.guid": 3,
+ "i.events": 2,
+ "i.handle": 2,
+ "f.event.triggered": 3,
+ "f.event.handle.apply": 1,
+ "k.elem": 2,
+ "c.split": 2,
+ "l.indexOf": 1,
+ "l.split": 1,
+ "n.shift": 1,
+ "h.namespace": 2,
+ "n.slice": 1,
+ "h.type": 1,
+ "h.guid": 2,
+ "f.event.special": 5,
+ "p.setup": 1,
+ "p.setup.call": 1,
+ "p.add": 1,
+ "p.add.call": 1,
+ "h.handler.guid": 2,
+ "o.push": 1,
+ "f.event.global": 2,
+ "global": 5,
+ "s.events": 1,
+ "c.type": 9,
+ "c.handler": 1,
+ "c.charAt": 1,
+ "f.event.remove": 5,
+ "h.indexOf": 3,
+ "h.split": 2,
+ "m.shift": 1,
+ "m.slice": 1,
+ "q.namespace": 1,
+ "q.handler": 1,
+ "p.splice": 1,
+ "": 1,
+ "elem=": 4,
+ "customEvent": 1,
+ "trigger": 4,
+ "h.slice": 1,
+ "i.shift": 1,
+ "i.sort": 1,
+ "f.event.customEvent": 1,
+ "f.Event": 2,
+ "c.exclusive": 2,
+ "c.namespace": 2,
+ "i.join": 2,
+ "c.namespace_re": 1,
+ "c.preventDefault": 3,
+ "c.stopPropagation": 1,
+ "b.events": 4,
+ "f.event.trigger": 6,
+ "b.handle.elem": 2,
+ "c.result": 3,
+ "c.target": 3,
+ "c.currentTarget": 2,
+ "m.apply": 1,
+ "k.parentNode": 1,
+ "k.ownerDocument": 1,
+ "c.target.ownerDocument": 1,
+ "c.isPropagationStopped": 1,
+ "c.isDefaultPrevented": 2,
+ "o._default": 1,
+ "o._default.call": 1,
+ "e.ownerDocument": 1,
+ "f.event.fix": 2,
+ "a.event": 1,
+ "Array.prototype.slice.call": 1,
+ "namespace_re": 1,
+ "namespace": 1,
+ "handler=": 1,
+ "data=": 2,
+ "handleObj=": 1,
+ "result=": 1,
+ "preventDefault": 4,
+ "stopPropagation": 5,
+ "isImmediatePropagationStopped": 2,
+ "fix": 1,
+ "Event": 3,
+ "target=": 2,
+ "relatedTarget=": 1,
+ "fromElement=": 1,
+ "pageX=": 2,
+ "documentElement": 2,
+ "scrollLeft": 2,
+ "clientLeft": 2,
+ "pageY=": 1,
+ "scrollTop": 2,
+ "clientTop": 2,
+ "which=": 3,
+ "metaKey=": 1,
+ "1e8": 1,
+ "special": 3,
+ "setup": 5,
+ "teardown": 6,
+ "origType": 2,
+ "beforeunload": 1,
+ "onbeforeunload=": 3,
+ "removeEvent=": 1,
+ "removeEventListener": 3,
+ "detachEvent": 2,
+ "Event=": 1,
+ "originalEvent=": 1,
+ "type=": 5,
+ "isDefaultPrevented=": 2,
+ "defaultPrevented": 1,
+ "returnValue=": 2,
+ "getPreventDefault": 2,
+ "timeStamp=": 1,
+ "prototype=": 2,
+ "originalEvent": 2,
+ "isPropagationStopped=": 1,
+ "cancelBubble=": 1,
+ "stopImmediatePropagation": 1,
+ "isImmediatePropagationStopped=": 1,
+ "isDefaultPrevented": 1,
+ "isPropagationStopped": 1,
+ "G=": 1,
+ "H=": 1,
+ "submit=": 1,
+ "specialSubmit": 3,
+ "closest": 3,
+ "keyCode=": 1,
+ "J=": 1,
+ "selectedIndex": 1,
+ "a.selected": 1,
+ "z.test": 3,
+ "d.readOnly": 1,
+ "c.liveFired": 1,
+ "f.event.special.change": 1,
+ "filters": 1,
+ "beforedeactivate": 1,
+ "K.call": 2,
+ "a.keyCode": 2,
+ "beforeactivate": 1,
+ "f.event.add": 2,
+ "f.event.special.change.filters": 1,
+ "I.focus": 1,
+ "I.beforeactivate": 1,
+ "f.support.focusinBubbles": 1,
+ "c.originalEvent": 1,
+ "a.preventDefault": 3,
+ "f.fn": 9,
+ "e.apply": 1,
+ "this.one": 1,
+ "unbind": 2,
+ "this.unbind": 2,
+ "delegate": 1,
+ "this.live": 1,
+ "undelegate": 1,
+ "this.die": 1,
+ "triggerHandler": 1,
+ "toggle": 10,
+ ".guid": 1,
+ "this.click": 1,
+ "this.mouseenter": 1,
+ ".mouseleave": 1,
+ "g.charAt": 1,
+ "n.unbind": 1,
+ "y.exec": 1,
+ "a.push": 2,
+ "n.length": 1,
+ "": 1,
+ "this.bind": 2,
+ "": 2,
+ "sizcache=": 4,
+ "sizset": 2,
+ "sizset=": 2,
+ "toLowerCase": 3,
+ "W/": 2,
+ "d.nodeType": 5,
+ "k.isXML": 4,
+ "a.exec": 2,
+ "x.push": 1,
+ "x.length": 8,
+ "m.exec": 1,
+ "l.relative": 6,
+ "x.shift": 4,
+ "l.match.ID.test": 2,
+ "q.expr": 4,
+ "q.set": 4,
+ "x.pop": 4,
+ "d.parentNode": 4,
+ "e.call": 1,
+ "f.push.apply": 1,
+ "k.contains": 5,
+ "a.sort": 1,
+ "": 1,
+ "matches=": 1,
+ "matchesSelector=": 1,
+ "l.order.length": 1,
+ "l.order": 1,
+ "l.leftMatch": 1,
+ "j.substr": 1,
+ "": 1,
+ "__sizzle__": 1,
+ "sizzle": 1,
+ "l.match.PSEUDO.test": 1,
+ "a.document.nodeType": 1,
+ "a.getElementsByClassName": 3,
+ "a.lastChild.className": 1,
+ "l.order.splice": 1,
+ "l.find.CLASS": 1,
+ "b.getElementsByClassName": 2,
+ "c.documentElement.contains": 1,
+ "a.contains": 2,
+ "c.documentElement.compareDocumentPosition": 1,
+ "a.compareDocumentPosition": 1,
+ "a.ownerDocument": 1,
+ ".documentElement": 1,
+ "b.nodeName": 2,
+ "l.match.PSEUDO.exec": 1,
+ "l.match.PSEUDO": 1,
+ "f.expr": 4,
+ "k.selectors": 1,
+ "f.expr.filters": 3,
+ "f.unique": 4,
+ "f.text": 2,
+ "k.getText": 1,
+ "/Until": 1,
+ "parents": 2,
+ "prevUntil": 2,
+ "prevAll": 2,
+ "U": 1,
+ "f.expr.match.POS": 1,
+ "V": 2,
+ "contents": 4,
+ "next": 9,
+ "prev": 2,
+ ".filter": 2,
+ "": 1,
+ "e.splice": 1,
+ "this.filter": 2,
+ "": 1,
+ "": 1,
+ "index": 5,
+ ".is": 2,
+ "c.push": 3,
+ "g.parentNode": 2,
+ "U.test": 1,
+ "": 1,
+ "f.find.matchesSelector": 2,
+ "g.ownerDocument": 1,
+ "this.parent": 2,
+ ".children": 1,
+ "a.jquery": 2,
+ "f.merge": 2,
+ "this.get": 1,
+ "andSelf": 1,
+ "this.add": 1,
+ "f.dir": 6,
+ "parentsUntil": 1,
+ "f.nth": 2,
+ "nextAll": 1,
+ "nextUntil": 1,
+ "siblings": 1,
+ "f.sibling": 2,
+ "a.parentNode.firstChild": 1,
+ "a.contentDocument": 1,
+ "a.contentWindow.document": 1,
+ "a.childNodes": 1,
+ "T.call": 1,
+ "P.test": 1,
+ "f.filter": 2,
+ "R.test": 1,
+ "Q.test": 1,
+ "e.reverse": 1,
+ "g.join": 1,
+ "f.find.matches": 1,
+ "dir": 1,
+ "sibling": 1,
+ "a.nextSibling": 1,
+ "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1,
+ "tbody/i": 1,
+ "bc": 1,
+ "bd": 1,
+ "/checked": 1,
+ "s*.checked.": 1,
+ "java": 1,
+ "ecma": 1,
+ "script/i": 1,
+ "CDATA": 1,
+ "bg": 3,
+ "legend": 1,
+ "col": 7,
+ "_default": 5,
+ "bg.optgroup": 1,
+ "bg.option": 1,
+ "bg.tbody": 1,
+ "bg.tfoot": 1,
+ "bg.colgroup": 1,
+ "bg.caption": 1,
+ "bg.thead": 1,
+ "bg.th": 1,
+ "bg.td": 1,
+ "f.support.htmlSerialize": 1,
+ "bg._default": 2,
+ "c.text": 2,
+ "this.empty": 3,
+ ".append": 6,
+ ".createTextNode": 1,
+ "wrapAll": 1,
+ ".wrapAll": 2,
+ ".eq": 1,
+ ".clone": 1,
+ "b.map": 1,
+ "wrapInner": 1,
+ ".wrapInner": 1,
+ "b.contents": 1,
+ "c.wrapAll": 1,
+ "b.append": 1,
+ "unwrap": 1,
+ ".replaceWith": 1,
+ "this.childNodes": 1,
+ ".end": 1,
+ "append": 1,
+ "this.domManip": 4,
+ "this.appendChild": 1,
+ "prepend": 1,
+ "this.insertBefore": 1,
+ "this.firstChild": 1,
+ "this.parentNode.insertBefore": 2,
+ "a.push.apply": 2,
+ "this.nextSibling": 2,
+ ".toArray": 1,
+ "f.cleanData": 4,
+ "d.parentNode.removeChild": 1,
+ "b.getElementsByTagName": 1,
+ "this.map": 3,
+ "f.clone": 2,
+ ".innerHTML.replace": 1,
+ "bc.test": 2,
+ "f.support.leadingWhitespace": 2,
+ "Z.test": 2,
+ "_.exec": 2,
+ ".getElementsByTagName": 2,
+ "c.html": 3,
+ "replaceWith": 1,
+ "c.replaceWith": 1,
+ ".detach": 1,
+ "this.parentNode": 1,
+ ".before": 1,
+ "detach": 1,
+ "this.remove": 1,
+ "domManip": 1,
+ "f.support.checkClone": 2,
+ "bd.test": 2,
+ ".domManip": 1,
+ "g.html": 1,
+ "g.domManip": 1,
+ "j.parentNode": 1,
+ "f.support.parentNode": 1,
+ "i.nodeType": 1,
+ "i.childNodes.length": 1,
+ "f.buildFragment": 2,
+ "e.fragment": 1,
+ "h.childNodes.length": 1,
+ "h.firstChild": 2,
+ "": 1,
+ "k.length": 2,
+ ".charAt": 1,
+ "f.fragments": 3,
+ "i.createDocumentFragment": 1,
+ "f.clean": 1,
+ "appendTo": 1,
+ "prependTo": 1,
+ "insertBefore": 1,
+ "insertAfter": 1,
+ "replaceAll": 1,
+ "g.childNodes.length": 1,
+ "this.clone": 1,
+ "d.concat": 1,
+ "e.selector": 1,
+ "f.support.noCloneEvent": 1,
+ "f.support.noCloneChecked": 1,
+ "b.createElement": 2,
+ "b.createTextNode": 2,
+ "k.replace": 2,
+ "o.innerHTML": 1,
+ "o.lastChild": 1,
+ "f.support.tbody": 1,
+ "ba.test": 1,
+ "o.firstChild": 2,
+ "o.firstChild.childNodes": 1,
+ "o.childNodes": 2,
+ "q.length": 1,
+ ".childNodes.length": 1,
+ ".parentNode.removeChild": 2,
+ "o.insertBefore": 1,
+ "Z.exec": 1,
+ "f.support.appendChecked": 1,
+ "k.nodeType": 1,
+ "h.push": 1,
+ "be.test": 1,
+ ".type.toLowerCase": 1,
+ "h.splice.apply": 1,
+ "cleanData": 1,
+ "j.nodeName": 1,
+ "j.nodeName.toLowerCase": 1,
+ "f.removeEvent": 1,
+ "b.handle": 2,
+ "j.removeAttribute": 2,
+ "bo": 2,
+ "/alpha": 1,
+ "bp": 1,
+ "/opacity": 1,
+ "bq": 2,
+ "bs": 2,
+ "bv": 2,
+ "de": 1,
+ "bw": 2,
+ "bz": 7,
+ "bA": 3,
+ "bB": 5,
+ "bC": 2,
+ "f.fn.css": 1,
+ "f.style": 4,
+ "cssHooks": 1,
+ "cssNumber": 3,
+ "zIndex": 1,
+ "fontWeight": 1,
+ "zoom": 1,
+ "lineHeight": 1,
+ "widows": 1,
+ "orphans": 1,
+ "cssProps": 1,
+ "f.support.cssFloat": 1,
+ "f.cssHooks": 3,
+ "f.cssProps": 2,
+ "k.get": 1,
+ "bu.test": 1,
+ "d.replace": 1,
+ "f.cssNumber": 1,
+ "k.set": 1,
+ "g.get": 1,
+ "swap": 1,
+ "camelCase": 3,
+ "f.curCSS": 1,
+ "f.swap": 2,
+ "<0||e==null){e=a.style[b];return>": 1,
+ "0px": 1,
+ "f.support.opacity": 1,
+ "f.cssHooks.opacity": 1,
+ "bp.test": 1,
+ "a.currentStyle": 4,
+ "a.currentStyle.filter": 1,
+ "a.style.filter": 1,
+ "RegExp.": 1,
+ "/100": 2,
+ "c.zoom": 1,
+ "b*100": 1,
+ "d.filter": 1,
+ "c.filter": 2,
+ "bo.test": 1,
+ "g.replace": 1,
+ "f.support.reliableMarginRight": 1,
+ "f.cssHooks.marginRight": 1,
+ "a.style.marginRight": 1,
+ "a.ownerDocument.defaultView": 1,
+ "e.getComputedStyle": 1,
+ "g.getPropertyValue": 1,
+ "a.ownerDocument.documentElement": 1,
+ "c.documentElement.currentStyle": 1,
+ "a.runtimeStyle": 2,
+ "bs.test": 1,
+ "bt.test": 1,
+ "f.left": 3,
+ "a.runtimeStyle.left": 2,
+ "a.currentStyle.left": 1,
+ "f.pixelLeft": 1,
+ "f.expr.filters.hidden": 2,
+ "f.support.reliableHiddenOffsets": 1,
+ "f.expr.filters.visible": 1,
+ "bE": 2,
+ "bF": 1,
+ "bG": 3,
+ "n/g": 1,
+ "bH": 2,
+ "/#.*": 1,
+ "bI": 1,
+ "/mg": 1,
+ "bJ": 1,
+ "date": 1,
+ "datetime": 1,
+ "month": 1,
+ "time": 1,
+ "week": 1,
+ "bK": 1,
+ "about": 1,
+ "storage": 1,
+ "extension": 1,
+ "widget": 1,
+ "bL": 1,
+ "GET": 1,
+ "HEAD": 3,
+ "bM": 2,
+ "bN": 2,
+ "bO": 2,
+ "<\\/script>": 2,
+ "bP": 1,
+ "bR": 2,
+ "*/": 2,
+ "bS": 1,
+ "bT": 2,
+ "f.fn.load": 1,
+ "bV": 3,
+ "bW": 5,
+ "bX": 8,
+ "e.href": 1,
+ "bY": 1,
+ "bW.href": 2,
+ "bS.exec": 1,
+ "bW.toLowerCase": 1,
+ "bT.apply": 1,
+ "a.slice": 2,
+ "f.param": 2,
+ "f.ajaxSettings.traditional": 2,
+ "complete": 6,
+ "a.responseText": 1,
+ "a.isResolved": 1,
+ "a.done": 1,
+ "i.html": 1,
+ "i.each": 1,
+ "serialize": 1,
+ "this.serializeArray": 1,
+ "serializeArray": 1,
+ "this.elements": 2,
+ "this.disabled": 1,
+ "this.checked": 1,
+ "bP.test": 1,
+ "bJ.test": 1,
+ ".map": 1,
+ "b.name": 2,
+ "success": 2,
+ "getScript": 1,
+ "f.get": 2,
+ "getJSON": 1,
+ "ajaxSetup": 1,
+ "f.ajaxSettings": 4,
+ "ajaxSettings": 1,
+ "isLocal": 1,
+ "bK.test": 1,
+ "contentType": 4,
+ "accepts": 5,
+ "xml": 3,
+ "json": 2,
+ "/xml/": 1,
+ "/html/": 1,
+ "/json/": 1,
+ "responseFields": 1,
+ "converters": 2,
+ "a.String": 1,
+ "f.parseXML": 1,
+ "ajaxPrefilter": 1,
+ "ajaxTransport": 1,
+ "ajax": 2,
+ "v.readyState": 1,
+ "d.ifModified": 1,
+ "v.getResponseHeader": 2,
+ "f.lastModified": 1,
+ "f.etag": 1,
+ "v.status": 1,
+ "v.statusText": 1,
+ "h.resolveWith": 1,
+ "h.rejectWith": 1,
+ "v.statusCode": 2,
+ "g.trigger": 2,
+ "i.resolveWith": 1,
+ "f.active": 1,
+ "f.ajaxSetup": 3,
+ "d.statusCode": 1,
+ "readyState": 1,
+ "setRequestHeader": 6,
+ "getAllResponseHeaders": 1,
+ "getResponseHeader": 1,
+ "bI.exec": 1,
+ "overrideMimeType": 1,
+ "d.mimeType": 1,
+ "abort": 4,
+ "p.abort": 1,
+ "h.promise": 1,
+ "v.success": 1,
+ "v.done": 1,
+ "v.error": 1,
+ "v.fail": 1,
+ "v.complete": 1,
+ "i.done": 1,
+ "<2)for(b>": 1,
+ "status": 3,
+ "url=": 1,
+ "dataTypes=": 1,
+ "crossDomain=": 2,
+ "80": 2,
+ "443": 2,
+ "traditional": 1,
+ "toUpperCase": 1,
+ "hasContent=": 1,
+ "active": 2,
+ "ajaxStart": 1,
+ "hasContent": 2,
+ "cache=": 1,
+ "x=": 1,
+ "1_=": 1,
+ "_=": 1,
+ "Content": 1,
+ "Type": 1,
+ "ifModified": 1,
+ "lastModified": 3,
+ "Modified": 1,
+ "etag": 3,
+ "None": 1,
+ "Accept": 1,
+ "dataTypes": 4,
+ "q=": 1,
+ "01": 1,
+ "headers": 41,
+ "beforeSend": 2,
+ "No": 1,
+ "Transport": 1,
+ "readyState=": 1,
+ "ajaxSend": 1,
+ "timeout": 2,
+ "v.abort": 1,
+ "d.timeout": 1,
+ "p.send": 1,
+ "encodeURIComponent": 2,
+ "f.isPlainObject": 1,
+ "d.join": 1,
+ "cc": 2,
+ "cd": 3,
+ "jsonp": 1,
+ "jsonpCallback": 1,
+ "f.ajaxPrefilter": 2,
+ "b.contentType": 1,
+ "b.data": 5,
+ "b.dataTypes": 2,
+ "b.jsonp": 3,
+ "cd.test": 2,
+ "b.url": 4,
+ "b.jsonpCallback": 4,
+ "d.always": 1,
+ "b.converters": 1,
+ "/javascript": 1,
+ "ecmascript/": 1,
+ "a.cache": 2,
+ "a.crossDomain": 2,
+ "a.global": 1,
+ "f.ajaxTransport": 2,
+ "c.head": 1,
+ "c.getElementsByTagName": 1,
+ "send": 2,
+ "d.async": 1,
+ "a.scriptCharset": 2,
+ "d.charset": 1,
+ "d.src": 1,
+ "a.url": 1,
+ "d.onload": 3,
+ "d.onreadystatechange": 2,
+ "d.readyState": 2,
+ "/loaded": 1,
+ "complete/.test": 1,
+ "e.removeChild": 1,
+ "e.insertBefore": 1,
+ "e.firstChild": 1,
+ "cg": 7,
+ "f.ajaxSettings.xhr": 2,
+ "this.isLocal": 1,
+ "cors": 1,
+ "f.support.ajax": 1,
+ "c.crossDomain": 3,
+ "f.support.cors": 1,
+ "c.xhr": 1,
+ "c.username": 2,
+ "h.open": 2,
+ "c.url": 2,
+ "c.password": 1,
+ "c.xhrFields": 3,
+ "c.mimeType": 2,
+ "h.overrideMimeType": 2,
+ "h.setRequestHeader": 1,
+ "h.send": 1,
+ "c.hasContent": 1,
+ "h.readyState": 3,
+ "h.onreadystatechange": 2,
+ "h.abort": 1,
+ "h.status": 1,
+ "h.getAllResponseHeaders": 1,
+ "h.responseXML": 1,
+ "n.documentElement": 1,
+ "m.xml": 1,
+ "m.text": 2,
+ "h.responseText": 1,
+ "h.statusText": 1,
+ "c.isLocal": 1,
+ ".unload": 1,
+ "cm": 2,
+ "show": 10,
+ "hide": 8,
+ "cn": 1,
+ "co": 5,
+ "cp": 1,
+ "a.webkitRequestAnimationFrame": 1,
+ "a.mozRequestAnimationFrame": 1,
+ "a.oRequestAnimationFrame": 1,
+ "this.animate": 2,
+ "d.style": 3,
+ ".style": 1,
+ "": 1,
+ "_toggle": 2,
+ "animate": 4,
+ "fadeTo": 1,
+ "queue=": 2,
+ "animatedProperties=": 1,
+ "animatedProperties": 2,
+ "specialEasing": 2,
+ "easing": 3,
+ "swing": 2,
+ "overflow=": 2,
+ "overflow": 2,
+ "overflowX": 1,
+ "overflowY": 1,
+ "display=": 3,
+ "zoom=": 1,
+ "fx": 10,
+ "m=": 2,
+ "cur": 6,
+ "custom": 5,
+ "timers": 3,
+ "slideDown": 1,
+ "slideUp": 1,
+ "slideToggle": 1,
+ "fadeIn": 1,
+ "fadeOut": 1,
+ "fadeToggle": 1,
+ "duration": 4,
+ "duration=": 2,
+ "off": 1,
+ "speeds": 4,
+ "old=": 1,
+ "complete=": 1,
+ "old": 2,
+ "linear": 1,
+ "cos": 1,
+ "options=": 1,
+ "prop=": 3,
+ "orig=": 1,
+ "orig": 3,
+ "step": 7,
+ "startTime=": 1,
+ "start=": 1,
+ "end=": 1,
+ "unit=": 1,
+ "unit": 1,
+ "now=": 1,
+ "pos=": 1,
+ "state=": 1,
+ "co=": 2,
+ "tick": 3,
+ "show=": 1,
+ "hide=": 1,
+ "e.duration": 3,
+ "this.startTime": 2,
+ "this.now": 3,
+ "this.end": 2,
+ "this.pos": 4,
+ "this.state": 3,
+ "this.update": 2,
+ "e.animatedProperties": 5,
+ "this.prop": 2,
+ "e.overflow": 2,
+ "f.support.shrinkWrapBlocks": 1,
+ "e.hide": 2,
+ "e.show": 1,
+ "e.orig": 1,
+ "e.complete.call": 1,
+ "Infinity": 1,
+ "h/e.duration": 1,
+ "f.easing": 1,
+ "this.start": 2,
+ "*this.pos": 1,
+ "f.timers": 2,
+ "a.splice": 1,
+ "f.fx.stop": 1,
+ "slow": 1,
+ "fast": 1,
+ "a.elem": 2,
+ "a.now": 4,
+ "a.elem.style": 3,
+ "a.prop": 5,
+ "a.unit": 1,
+ "f.expr.filters.animated": 1,
+ "b.elem": 1,
+ "cw": 1,
+ "able": 1,
+ "f.fn.offset": 2,
+ "f.offset.setOffset": 2,
+ "b.ownerDocument.body": 2,
+ "f.offset.bodyOffset": 2,
+ "b.getBoundingClientRect": 1,
+ "e.documentElement": 4,
+ "c.top": 4,
+ "c.left": 4,
+ "e.body": 3,
+ "g.clientTop": 1,
+ "h.clientTop": 1,
+ "g.clientLeft": 1,
+ "h.clientLeft": 1,
+ "i.pageYOffset": 1,
+ "g.scrollTop": 1,
+ "h.scrollTop": 2,
+ "i.pageXOffset": 1,
+ "g.scrollLeft": 1,
+ "h.scrollLeft": 2,
+ "f.offset.initialize": 3,
+ "b.offsetParent": 2,
+ "g.documentElement": 1,
+ "g.body": 1,
+ "g.defaultView": 1,
+ "j.getComputedStyle": 2,
+ "b.currentStyle": 2,
+ "b.offsetTop": 2,
+ "b.offsetLeft": 2,
+ "f.offset.supportsFixedPosition": 2,
+ "k.position": 4,
+ "b.scrollTop": 1,
+ "b.scrollLeft": 1,
+ "f.offset.doesNotAddBorder": 1,
+ "f.offset.doesAddBorderForTableAndCells": 1,
+ "cw.test": 1,
+ "c.borderTopWidth": 2,
+ "c.borderLeftWidth": 2,
+ "f.offset.subtractsBorderForOverflowNotVisible": 1,
+ "c.overflow": 1,
+ "i.offsetTop": 1,
+ "i.offsetLeft": 1,
+ "i.scrollTop": 1,
+ "i.scrollLeft": 1,
+ "f.offset": 1,
+ "b.style": 1,
+ "d.nextSibling.firstChild.firstChild": 1,
+ "this.doesNotAddBorder": 1,
+ "e.offsetTop": 4,
+ "this.doesAddBorderForTableAndCells": 1,
+ "h.offsetTop": 1,
+ "e.style.position": 2,
+ "e.style.top": 2,
+ "this.supportsFixedPosition": 1,
+ "d.style.overflow": 1,
+ "d.style.position": 1,
+ "this.subtractsBorderForOverflowNotVisible": 1,
+ "this.doesNotIncludeMarginInBodyOffset": 1,
+ "a.offsetTop": 2,
+ "bodyOffset": 1,
+ "a.offsetLeft": 1,
+ "f.offset.doesNotIncludeMarginInBodyOffset": 1,
+ "setOffset": 1,
+ "a.style.position": 1,
+ "e.offset": 1,
+ "e.position": 1,
+ "l.top": 1,
+ "l.left": 1,
+ "b.top": 2,
+ "k.top": 1,
+ "g.top": 1,
+ "b.left": 2,
+ "k.left": 1,
+ "g.left": 1,
+ "b.using.call": 1,
+ "e.css": 1,
+ "this.offsetParent": 2,
+ "cx.test": 2,
+ "b.offset": 1,
+ "d.top": 2,
+ "d.left": 2,
+ "offsetParent": 1,
+ "a.offsetParent": 1,
+ "g.document.documentElement": 1,
+ "g.document.body": 1,
+ "g.scrollTo": 1,
+ ".scrollLeft": 1,
+ ".scrollTop": 1,
+ "e.document.documentElement": 1,
+ "e.document.compatMode": 1,
+ "e.document.body": 1,
+ "this.css": 1,
+ "cubes": 4,
+ "math": 4,
+ "num": 23,
+ "opposite": 6,
+ "race": 4,
+ "square": 10,
+ "__slice": 2,
+ "Math.sqrt": 2,
+ "cube": 2,
+ "runners": 6,
+ "winner": 6,
+ "__slice.call": 2,
+ "print": 2,
+ "elvis": 4,
+ "_i": 10,
+ "_len": 6,
+ "_results": 6,
+ "_results.push": 2,
+ "math.cube": 2,
+ "console.log": 3,
+ "KEYWORDS": 2,
+ "array_to_hash": 11,
+ "RESERVED_WORDS": 2,
+ "KEYWORDS_BEFORE_EXPRESSION": 2,
+ "KEYWORDS_ATOM": 2,
+ "OPERATOR_CHARS": 1,
+ "characters": 6,
+ "RE_HEX_NUMBER": 1,
+ "RE_OCT_NUMBER": 1,
+ "RE_DEC_NUMBER": 1,
+ "OPERATORS": 2,
+ "WHITESPACE_CHARS": 2,
+ "PUNC_BEFORE_EXPRESSION": 2,
+ "PUNC_CHARS": 1,
+ "REGEXP_MODIFIERS": 1,
+ "UNICODE": 1,
+ "non_spacing_mark": 1,
+ "space_combining_mark": 1,
+ "connector_punctuation": 1,
+ "is_letter": 3,
+ "UNICODE.letter.test": 1,
+ "is_digit": 3,
+ "ch.charCodeAt": 1,
+ "//XXX": 1,
+ "out": 1,
+ "means": 1,
+ "than": 3,
+ "is_alphanumeric_char": 3,
+ "is_unicode_combining_mark": 2,
+ "UNICODE.non_spacing_mark.test": 1,
+ "UNICODE.space_combining_mark.test": 1,
+ "is_unicode_connector_punctuation": 2,
+ "UNICODE.connector_punctuation.test": 1,
+ "is_identifier_start": 2,
+ "is_identifier_char": 1,
+ "zero": 2,
+ "joiner": 2,
+ "": 1,
+ "": 1,
+ "my": 1,
+ "ECMA": 1,
+ "PDF": 1,
+ "parse_js_number": 2,
+ "RE_HEX_NUMBER.test": 1,
+ "num.substr": 2,
+ "RE_OCT_NUMBER.test": 1,
+ "RE_DEC_NUMBER.test": 1,
+ "JS_Parse_Error": 2,
+ "message": 5,
+ "this.col": 2,
+ "ex": 3,
+ "ex.name": 1,
+ "this.stack": 2,
+ "ex.stack": 1,
+ "JS_Parse_Error.prototype.toString": 1,
+ "js_error": 2,
+ "is_token": 1,
+ "token": 5,
+ "token.type": 1,
+ "token.value": 1,
+ "EX_EOF": 3,
+ "tokenizer": 2,
+ "TEXT": 1,
+ "TEXT.replace": 1,
+ "uFEFF/": 1,
+ "tokpos": 1,
+ "tokline": 1,
+ "tokcol": 1,
+ "newline_before": 1,
+ "regex_allowed": 1,
+ "comments_before": 1,
+ "peek": 5,
+ "S.text.charAt": 2,
+ "S.pos": 4,
+ "signal_eof": 4,
+ "S.newline_before": 3,
+ "S.line": 2,
+ "S.col": 3,
+ "eof": 6,
+ "S.peek": 1,
+ "what": 2,
+ "S.text.indexOf": 1,
+ "start_token": 1,
+ "S.tokline": 3,
+ "S.tokcol": 3,
+ "S.tokpos": 3,
+ "is_comment": 2,
+ "S.regex_allowed": 1,
+ "HOP": 5,
+ "UNARY_POSTFIX": 1,
+ "nlb": 1,
+ "ret.comments_before": 1,
+ "S.comments_before": 2,
+ "skip_whitespace": 1,
+ "read_while": 2,
+ "pred": 2,
+ "parse_error": 3,
+ "err": 5,
+ "read_num": 1,
+ "prefix": 6,
+ "has_e": 3,
+ "after_e": 5,
+ "has_x": 5,
+ "has_dot": 3,
+ "valid": 4,
+ "read_escaped_char": 1,
+ "hex_bytes": 3,
+ "digit": 3,
+ "<<": 4,
+ "read_string": 1,
+ "with_eof_error": 1,
+ "comment1": 1,
+ "Unterminated": 2,
+ "multiline": 1,
+ "comment2": 1,
+ "WARNING": 1,
+ "***": 1,
+ "Found": 1,
+ "warn": 3,
+ "tok": 1,
+ "read_name": 1,
+ "backslash": 2,
+ "Expecting": 1,
+ "UnicodeEscapeSequence": 1,
+ "uXXXX": 1,
+ "Unicode": 1,
+ "identifier": 1,
+ "regular": 1,
+ "regexp": 5,
+ "operator": 14,
+ "punc": 27,
+ "atom": 5,
+ "keyword": 11,
+ "Unexpected": 3,
+ "void": 1,
+ "<\",>": 1,
+ "<=\",>": 1,
+ "debugger": 2,
+ "outside": 2,
+ "const": 2,
+ "stat": 1,
+ "Label": 1,
+ "without": 1,
+ "statement": 1,
+ "inside": 3,
+ "defun": 1,
+ "Name": 1,
+ "Missing": 1,
+ "catch/finally": 1,
+ "blocks": 1,
+ "unary": 2,
+ "dot": 2,
+ "postfix": 1,
+ "Invalid": 2,
+ "binary": 1,
+ "conditional": 1,
+ "assign": 1,
+ "assignment": 1,
+ "seq": 1,
+ "member": 2,
+ "array.length": 1,
+ "Object.prototype.hasOwnProperty.call": 1,
+ "exports.tokenizer": 1,
+ "exports.parse": 1,
+ "parse": 1,
+ "exports.slice": 1,
+ "exports.curry": 1,
+ "curry": 1,
+ "exports.member": 1,
+ "exports.array_to_hash": 1,
+ "exports.PRECEDENCE": 1,
+ "PRECEDENCE": 1,
+ "exports.KEYWORDS_ATOM": 1,
+ "exports.RESERVED_WORDS": 1,
+ "exports.KEYWORDS": 1,
+ "exports.ATOMIC_START_TOKEN": 1,
+ "ATOMIC_START_TOKEN": 1,
+ "exports.OPERATORS": 1,
+ "exports.is_alphanumeric_char": 1,
+ "exports.set_logger": 1,
+ "logger": 2,
+ "rdigit": 1,
+ "readyList.resolveWith": 1,
+ "jQuery._Deferred": 3,
+ "breaking": 1,
+ "Promise": 1,
+ "promiseMethods": 3,
+ "Static": 1,
+ "sliceDeferred": 1,
+ "Create": 1,
+ "doing": 3,
+ "flag": 1,
+ "cancelled": 5,
+ "f1": 1,
+ "f2": 1,
+ "...": 1,
+ "_fired": 5,
+ "deferred.done.apply": 2,
+ "callbacks.push": 1,
+ "deferred.resolveWith": 5,
+ "given": 3,
+ "available": 1,
+ "#8421": 1,
+ "callbacks.shift": 1,
+ "Has": 1,
+ "resolved": 1,
+ "Cancel": 1,
+ "Full": 1,
+ "fledged": 1,
+ "two": 1,
+ "func": 3,
+ "failDeferred": 1,
+ "errorDeferred": 1,
+ "doneCallbacks": 2,
+ "failCallbacks": 2,
+ "deferred.done": 2,
+ ".fail": 2,
+ ".fail.apply": 1,
+ "failDeferred.done": 1,
+ "failDeferred.resolveWith": 1,
+ "failDeferred.resolve": 1,
+ "failDeferred.isResolved": 1,
+ "fnDone": 2,
+ "fnFail": 2,
+ "jQuery.Deferred": 1,
+ "newDefer": 3,
+ "action": 3,
+ "returned": 4,
+ "fn.apply": 1,
+ "returned.promise": 2,
+ "newDefer.resolve": 1,
+ "newDefer.reject": 1,
+ "provided": 1,
+ "aspect": 1,
+ "added": 1,
+ "promiseMethods.length": 1,
+ "failDeferred.cancel": 1,
+ "deferred.cancel": 2,
+ "Unexpose": 1,
+ "Call": 1,
+ "func.call": 1,
+ "helper": 1,
+ "firstParam": 6,
+ "count": 4,
+ "<=>": 1,
+ "resolveFunc": 2,
+ "sliceDeferred.call": 2,
+ "Strange": 1,
+ "FF4": 1,
+ "Values": 1,
+ "onto": 2,
+ "sometimes": 1,
+ ".when": 1,
+ "Cloning": 2,
+ "into": 2,
+ "fresh": 1,
+ "solves": 1,
+ "issue": 1,
+ "deferred.reject": 1,
+ "deferred.promise": 1,
+ "jQuery.support": 1,
+ "bodyStyle": 1,
+ "Preliminary": 1,
+ "div.setAttribute": 1,
+ "automatically": 2,
+ "inserted": 1,
+ "insert": 1,
+ "tables": 1,
+ "serialized": 3,
+ "correctly": 1,
+ "innerHTML": 1,
+ "This": 3,
+ "requires": 1,
+ "wrapper": 1,
+ "URLs": 1,
+ "opt.selected": 1,
+ "setAttribute": 1,
+ "class.": 1,
+ "works": 1,
+ "attrFixes": 1,
+ "get/setAttribute": 1,
+ "ie6/7": 1,
+ "div.className": 1,
+ "later": 1,
+ "properly": 2,
+ "cloned": 1,
+ "input.checked": 1,
+ "support.noCloneChecked": 1,
+ "input.cloneNode": 1,
+ "selects": 1,
+ "Internet": 1,
+ "Explorer": 1,
+ "div.test": 1,
+ "support.deleteExpando": 1,
+ "div.addEventListener": 1,
+ "div.attachEvent": 2,
+ "div.fireEvent": 1,
+ "shouldn": 2,
+ "GC": 2,
+ "references": 1,
+ "across": 1,
+ "boundary": 1,
+ "attached": 1,
+ "occur": 1,
+ "defining": 1,
+ "allows": 1,
+ "shortcut": 1,
+ "same": 1,
+ "path": 5,
+ "Avoid": 1,
+ "trying": 1,
+ "since": 1,
+ "ends": 1,
+ "jQuery.uuid": 1,
+ "TODO": 2,
+ "hack": 2,
+ "ONLY.": 2,
+ "Avoids": 2,
+ "exposing": 2,
+ "metadata": 2,
+ "plain": 2,
+ "jQuery.noop": 2,
+ "An": 1,
+ "key/value": 1,
+ "pair": 1,
+ "shallow": 1,
+ "copied": 1,
+ "existing": 1,
+ "Internal": 1,
+ "separate": 1,
+ "destroy": 1,
+ "had": 1,
+ "thing": 2,
+ "internalCache": 3,
+ "Browsers": 1,
+ "deletion": 1,
+ "refuse": 1,
+ "browsers": 2,
+ "faster": 1,
+ "iterating": 1,
+ "persist": 1,
+ "existed": 1,
+ "jQuery.isNaN": 1,
+ "Normalize": 1,
+ "jQuery.attrFix": 2,
+ "formHook": 3,
+ "forms": 1,
+ "rinvalidChar.test": 1,
+ "jQuery.support.getSetAttribute": 1,
+ "elem.removeAttributeNode": 1,
+ "elem.getAttributeNode": 1,
+ "bubbling": 1,
+ "live.": 2,
+ "hasDuplicate": 1,
+ "baseHasDuplicate": 2,
+ "rBackslash": 1,
+ "rNonWord": 1,
+ "Sizzle": 1,
+ "results": 4,
+ "seed": 1,
+ "origContext": 1,
+ "context.nodeType": 2,
+ "checkSet": 1,
+ "extra": 1,
+ "pop": 1,
+ "prune": 1,
+ "contextXML": 1,
+ "Sizzle.isXML": 1,
+ "soFar": 1,
+ "Reset": 1,
+ "util": 1,
+ "require": 9,
+ "net": 1,
+ "stream": 1,
+ "EventEmitter": 3,
+ ".EventEmitter": 1,
+ "FreeList": 2,
+ ".FreeList": 1,
+ "HTTPParser": 2,
+ "process.binding": 1,
+ ".HTTPParser": 1,
+ "assert": 8,
+ ".ok": 1,
+ "END_OF_FILE": 3,
+ "debug": 15,
+ "process.env.NODE_DEBUG": 2,
+ "/http/.test": 1,
+ "console.error": 3,
+ "parserOnHeaders": 2,
+ "this.maxHeaderPairs": 2,
+ "this._headers.length": 1,
+ "this._headers": 13,
+ "this._headers.concat": 1,
+ "this._url": 1,
+ "parserOnHeadersComplete": 2,
+ "parser": 27,
+ "info.headers": 1,
+ "info.url": 1,
+ "parser._headers": 6,
+ "parser._url": 4,
+ "parser.incoming": 9,
+ "IncomingMessage": 4,
+ "parser.socket": 4,
+ "parser.incoming.httpVersionMajor": 1,
+ "info.versionMajor": 2,
+ "parser.incoming.httpVersionMinor": 1,
+ "info.versionMinor": 2,
+ "parser.incoming.httpVersion": 1,
+ "parser.incoming.url": 1,
+ "headers.length": 2,
+ "parser.maxHeaderPairs": 4,
+ "parser.incoming._addHeaderLine": 2,
+ "info.method": 2,
+ "parser.incoming.method": 1,
+ "parser.incoming.statusCode": 2,
+ "info.statusCode": 1,
+ "parser.incoming.upgrade": 4,
+ "info.upgrade": 2,
+ "skipBody": 3,
+ "response": 3,
+ "CONNECT": 1,
+ "parser.onIncoming": 3,
+ "info.shouldKeepAlive": 1,
+ "parserOnBody": 2,
+ "b.slice": 1,
+ "parser.incoming._paused": 2,
+ "parser.incoming._pendings.length": 2,
+ "parser.incoming._pendings.push": 2,
+ "parser.incoming._emitData": 1,
+ "parserOnMessageComplete": 2,
+ "parser.incoming.complete": 2,
+ "parser.incoming.readable": 1,
+ "parser.incoming._emitEnd": 1,
+ "parser.socket.readable": 1,
+ "parser.socket.resume": 1,
+ "parsers": 2,
+ "HTTPParser.REQUEST": 2,
+ "parser.onHeaders": 1,
+ "parser.onHeadersComplete": 1,
+ "parser.onBody": 1,
+ "parser.onMessageComplete": 1,
+ "exports.parsers": 1,
+ "CRLF": 13,
+ "STATUS_CODES": 2,
+ "exports.STATUS_CODES": 1,
+ "RFC": 16,
+ "obsoleted": 1,
+ "connectionExpression": 1,
+ "/Connection/i": 1,
+ "transferEncodingExpression": 1,
+ "/Transfer": 1,
+ "Encoding/i": 1,
+ "closeExpression": 1,
+ "/close/i": 1,
+ "chunkExpression": 1,
+ "/chunk/i": 1,
+ "contentLengthExpression": 1,
+ "/Content": 1,
+ "Length/i": 1,
+ "dateExpression": 1,
+ "/Date/i": 1,
+ "expectExpression": 1,
+ "/Expect/i": 1,
+ "continueExpression": 1,
+ "continue/i": 1,
+ "dateCache": 5,
+ "utcDate": 2,
+ "d.toUTCString": 1,
+ "d.getMilliseconds": 1,
+ "socket": 26,
+ "stream.Stream.call": 2,
+ "this.socket": 10,
+ "this.connection": 8,
+ "this.httpVersion": 1,
+ "this.complete": 2,
+ "this.headers": 2,
+ "this.trailers": 2,
+ "this.readable": 1,
+ "this._paused": 3,
+ "this._pendings": 1,
+ "this._endEmitted": 3,
+ "this.url": 1,
+ "this.method": 2,
+ "this.statusCode": 3,
+ "this.client": 1,
+ "util.inherits": 7,
+ "stream.Stream": 2,
+ "exports.IncomingMessage": 1,
+ "IncomingMessage.prototype.destroy": 1,
+ "this.socket.destroy": 3,
+ "IncomingMessage.prototype.setEncoding": 1,
+ "StringDecoder": 2,
+ ".StringDecoder": 1,
+ "lazy": 1,
+ "this._decoder": 2,
+ "IncomingMessage.prototype.pause": 1,
+ "this.socket.pause": 1,
+ "IncomingMessage.prototype.resume": 1,
+ "this.socket.resume": 1,
+ "this._emitPending": 1,
+ "IncomingMessage.prototype._emitPending": 1,
+ "this._pendings.length": 1,
+ "process.nextTick": 1,
+ "self._paused": 1,
+ "self._pendings.length": 2,
+ "chunk": 14,
+ "self._pendings.shift": 1,
+ "Buffer.isBuffer": 2,
+ "self._emitData": 1,
+ "self.readable": 1,
+ "self._emitEnd": 1,
+ "IncomingMessage.prototype._emitData": 1,
+ "this._decoder.write": 1,
+ "string.length": 1,
+ "this.emit": 5,
+ "IncomingMessage.prototype._emitEnd": 1,
+ "IncomingMessage.prototype._addHeaderLine": 1,
+ "field": 36,
+ "dest": 12,
+ "field.toLowerCase": 1,
+ ".push": 3,
+ "field.slice": 1,
+ "OutgoingMessage": 5,
+ "this.output": 3,
+ "this.outputEncodings": 2,
+ "this.writable": 1,
+ "this._last": 3,
+ "this.chunkedEncoding": 6,
+ "this.shouldKeepAlive": 4,
+ "this.useChunkedEncodingByDefault": 4,
+ "this.sendDate": 3,
+ "this._hasBody": 6,
+ "this._trailer": 5,
+ "this.finished": 4,
+ "exports.OutgoingMessage": 1,
+ "OutgoingMessage.prototype.destroy": 1,
+ "OutgoingMessage.prototype._send": 1,
+ "this._headerSent": 5,
+ "this._header": 10,
+ "this.output.unshift": 1,
+ "this.outputEncodings.unshift": 1,
+ "this._writeRaw": 2,
+ "OutgoingMessage.prototype._writeRaw": 1,
+ "data.length": 3,
+ "this.connection._httpMessage": 3,
+ "this.connection.writable": 3,
+ "this.output.length": 5,
+ "this._buffer": 2,
+ "this.output.shift": 2,
+ "this.outputEncodings.shift": 2,
+ "this.connection.write": 4,
+ "OutgoingMessage.prototype._buffer": 1,
+ "this.output.push": 2,
+ "this.outputEncodings.push": 2,
+ "lastEncoding": 2,
+ "lastData": 2,
+ "data.constructor": 1,
+ "lastData.constructor": 1,
+ "OutgoingMessage.prototype._storeHeader": 1,
+ "firstLine": 2,
+ "sentConnectionHeader": 3,
+ "sentContentLengthHeader": 4,
+ "sentTransferEncodingHeader": 3,
+ "sentDateHeader": 3,
+ "sentExpect": 3,
+ "messageHeader": 7,
+ "store": 3,
+ "connectionExpression.test": 1,
+ "closeExpression.test": 1,
+ "self._last": 4,
+ "self.shouldKeepAlive": 4,
+ "transferEncodingExpression.test": 1,
+ "chunkExpression.test": 1,
+ "self.chunkedEncoding": 1,
+ "contentLengthExpression.test": 1,
+ "dateExpression.test": 1,
+ "expectExpression.test": 1,
+ "Object.keys": 5,
+ "keys.length": 5,
+ "value.length": 1,
+ "shouldSendKeepAlive": 2,
+ "this.agent": 2,
+ "this._send": 8,
+ "OutgoingMessage.prototype.setHeader": 1,
+ "this._headerNames": 5,
+ "OutgoingMessage.prototype.getHeader": 1,
+ "OutgoingMessage.prototype.removeHeader": 1,
+ "OutgoingMessage.prototype._renderHeaders": 1,
+ "OutgoingMessage.prototype.write": 1,
+ "this._implicitHeader": 2,
+ "chunk.length": 2,
+ "Buffer.byteLength": 2,
+ "len.toString": 2,
+ "OutgoingMessage.prototype.addTrailers": 1,
+ "OutgoingMessage.prototype.end": 1,
+ "hot": 3,
+ "this.write": 1,
+ "chunk.": 1,
+ "this._finish": 2,
+ "OutgoingMessage.prototype._finish": 1,
+ "ServerResponse": 5,
+ "DTRACE_HTTP_SERVER_RESPONSE": 1,
+ "ClientRequest": 6,
+ "DTRACE_HTTP_CLIENT_REQUEST": 1,
+ "OutgoingMessage.prototype._flush": 1,
+ "this.socket.writable": 2,
+ "XXX": 1,
+ "Necessary": 1,
+ "this.socket.write": 1,
+ "req": 32,
+ "OutgoingMessage.call": 2,
+ "req.method": 5,
+ "req.httpVersionMajor": 2,
+ "req.httpVersionMinor": 2,
+ "exports.ServerResponse": 1,
+ "ServerResponse.prototype.statusCode": 1,
+ "onServerResponseClose": 3,
+ "this._httpMessage.emit": 2,
+ "ServerResponse.prototype.assignSocket": 1,
+ "socket._httpMessage": 9,
+ "socket.on": 2,
+ "this._flush": 1,
+ "ServerResponse.prototype.detachSocket": 1,
+ "socket.removeListener": 5,
+ "ServerResponse.prototype.writeContinue": 1,
+ "this._sent100": 2,
+ "ServerResponse.prototype._implicitHeader": 1,
+ "this.writeHead": 1,
+ "ServerResponse.prototype.writeHead": 1,
+ "statusCode": 7,
+ "reasonPhrase": 4,
+ "headerIndex": 4,
+ "this._renderHeaders": 3,
+ "obj.length": 1,
+ "obj.push": 1,
+ "statusLine": 2,
+ "statusCode.toString": 1,
+ "this._expect_continue": 1,
+ "this._storeHeader": 2,
+ "ServerResponse.prototype.writeHeader": 1,
+ "this.writeHead.apply": 1,
+ "Agent": 5,
+ "self.options": 2,
+ "self.requests": 6,
+ "self.sockets": 3,
+ "self.maxSockets": 1,
+ "self.options.maxSockets": 1,
+ "Agent.defaultMaxSockets": 2,
+ "self.on": 1,
+ "port": 29,
+ "localAddress": 15,
+ ".shift": 1,
+ ".onSocket": 1,
+ "socket.destroy": 10,
+ "self.createConnection": 2,
+ "net.createConnection": 3,
+ "exports.Agent": 1,
+ "Agent.prototype.defaultPort": 1,
+ "Agent.prototype.addRequest": 1,
+ "this.sockets": 9,
+ "this.maxSockets": 1,
+ "req.onSocket": 1,
+ "this.createSocket": 2,
+ "this.requests": 5,
+ "Agent.prototype.createSocket": 1,
+ "util._extend": 1,
+ "options.port": 4,
+ "options.host": 4,
+ "options.localAddress": 3,
+ "onFree": 3,
+ "self.emit": 9,
+ "s.on": 4,
+ "onClose": 3,
+ "self.removeSocket": 2,
+ "onRemove": 3,
+ "s.removeListener": 3,
+ "Agent.prototype.removeSocket": 1,
+ ".emit": 1,
+ "globalAgent": 3,
+ "exports.globalAgent": 1,
+ "self.agent": 3,
+ "options.agent": 3,
+ "defaultPort": 3,
+ "options.defaultPort": 1,
+ "options.hostname": 1,
+ "options.setHost": 1,
+ "setHost": 2,
+ "self.socketPath": 4,
+ "options.socketPath": 1,
+ "self.method": 3,
+ "options.method": 2,
+ "self.path": 3,
+ "options.path": 2,
+ "self.once": 2,
+ "options.headers": 7,
+ "self.setHeader": 1,
+ "this.getHeader": 2,
+ "hostHeader": 3,
+ "this.setHeader": 2,
+ "options.auth": 2,
+ "//basic": 1,
+ "auth": 1,
+ "Buffer": 1,
+ "self.useChunkedEncodingByDefault": 2,
+ "self._storeHeader": 2,
+ "self.getHeader": 1,
+ "self._renderHeaders": 1,
+ "options.createConnection": 4,
+ "self.onSocket": 3,
+ "self.agent.addRequest": 1,
+ "conn": 3,
+ "self._deferToConnect": 1,
+ "self._flush": 1,
+ "exports.ClientRequest": 1,
+ "ClientRequest.prototype._implicitHeader": 1,
+ "this.path": 1,
+ "ClientRequest.prototype.abort": 1,
+ "this._deferToConnect": 3,
+ "createHangUpError": 3,
+ "error.code": 1,
+ "freeParser": 9,
+ "parser.socket.onend": 1,
+ "parser.socket.ondata": 1,
+ "parser.socket.parser": 1,
+ "parsers.free": 1,
+ "req.parser": 1,
+ "socketCloseListener": 2,
+ "socket.parser": 3,
+ "req.emit": 8,
+ "req.res": 8,
+ "req.res.readable": 1,
+ "req.res.emit": 1,
+ "res": 14,
+ "req.res._emitPending": 1,
+ "res._emitEnd": 1,
+ "res.emit": 1,
+ "req._hadError": 3,
+ "parser.finish": 6,
+ "socketErrorListener": 2,
+ "err.message": 1,
+ "err.stack": 1,
+ "socketOnEnd": 1,
+ "this._httpMessage": 3,
+ "this.parser": 2,
+ "socketOnData": 1,
+ "parser.execute": 2,
+ "bytesParsed": 4,
+ "socket.ondata": 3,
+ "socket.onend": 3,
+ "bodyHead": 4,
+ "d.slice": 2,
+ "req.listeners": 1,
+ "req.upgradeOrConnect": 1,
+ "socket.emit": 1,
+ "parserOnIncomingClient": 1,
+ "shouldKeepAlive": 4,
+ "res.upgrade": 1,
+ "isHeadResponse": 2,
+ "res.statusCode": 1,
+ "Clear": 1,
+ "upgraded": 1,
+ "WebSockets": 1,
+ "AGENT": 2,
+ "socket.destroySoon": 2,
+ "keep": 1,
+ "alive": 1,
+ "close": 2,
+ "free": 1,
+ "important": 1,
+ "promisy": 1,
+ "onSocket": 3,
+ "self.socket.writable": 1,
+ "self.socket": 5,
+ "arguments_": 2,
+ "self.socket.once": 1,
+ "ClientRequest.prototype.setTimeout": 1,
+ "msecs": 4,
+ "this.once": 2,
+ "emitTimeout": 4,
+ "this.socket.setTimeout": 1,
+ "this.socket.once": 1,
+ "this.setTimeout": 3,
+ "sock": 1,
+ "ClientRequest.prototype.setNoDelay": 1,
+ "ClientRequest.prototype.setSocketKeepAlive": 1,
+ "ClientRequest.prototype.clearTimeout": 1,
+ "exports.request": 2,
+ "url.parse": 1,
+ "options.protocol": 3,
+ "exports.get": 1,
+ "req.end": 1,
+ "ondrain": 3,
+ "httpSocketSetup": 2,
+ "Server": 6,
+ "requestListener": 6,
+ "net.Server.call": 1,
+ "allowHalfOpen": 1,
+ "this.addListener": 2,
+ "this.httpAllowHalfOpen": 1,
+ "connectionListener": 3,
+ "net.Server": 1,
+ "exports.Server": 1,
+ "exports.createServer": 1,
+ "outgoing": 2,
+ "incoming": 2,
+ "abortIncoming": 3,
+ "incoming.length": 2,
+ "incoming.shift": 2,
+ "serverSocketCloseListener": 3,
+ "socket.setTimeout": 1,
+ "minute": 1,
+ "socket.once": 1,
+ "parsers.alloc": 1,
+ "parser.reinitialize": 1,
+ "this.maxHeadersCount": 2,
+ "socket.addListener": 2,
+ "self.listeners": 2,
+ "req.socket": 1,
+ "self.httpAllowHalfOpen": 1,
+ "socket.writable": 2,
+ "socket.end": 2,
+ "outgoing.length": 2,
+ "._last": 1,
+ "socket._httpMessage._last": 1,
+ "incoming.push": 1,
+ "res.shouldKeepAlive": 1,
+ "DTRACE_HTTP_SERVER_REQUEST": 1,
+ "outgoing.push": 1,
+ "res.assignSocket": 1,
+ "res.on": 1,
+ "res.detachSocket": 1,
+ "res._last": 1,
+ "outgoing.shift": 1,
+ "m.assignSocket": 1,
+ "req.headers": 2,
+ "continueExpression.test": 1,
+ "res._expect_continue": 1,
+ "res.writeContinue": 1,
+ "response.": 1,
+ "exports._connectionListener": 1,
+ "Client": 6,
+ "this.host": 1,
+ "this.port": 1,
+ "maxSockets": 1,
+ "Client.prototype.request": 1,
+ "self.host": 1,
+ "self.port": 1,
+ "c.on": 2,
+ "exports.Client": 1,
+ "module.deprecate": 2,
+ "exports.createClient": 1,
+ "SHEBANG#!node": 2,
+ "http.createServer": 1,
+ "res.writeHead": 1,
+ "res.end": 1,
+ ".listen": 1,
+ "window.angular": 1,
+ "Animal.name": 1,
+ "_super": 4,
+ "Snake.name": 1,
+ "Horse.name": 1,
+ "jshint": 1,
+ "Modal": 2,
+ "this.": 2,
+ ".proxy": 1,
+ "this.hide": 1,
+ "Modal.prototype": 1,
+ "this.isShown": 3,
+ ".Event": 1,
+ "element.trigger": 1,
+ ".addClass": 1,
+ "escape.call": 1,
+ "backdrop.call": 1,
+ "transition": 1,
+ ".support.transition": 1,
+ "that.": 3,
+ "element.hasClass": 1,
+ "element.parent": 1,
+ "element.appendTo": 1,
+ "//don": 1,
+ "shown": 2,
+ "modal": 4,
+ "fade": 4,
+ "keyup.dismiss.modal": 2,
+ "click.modal.data": 1,
+ "api": 1,
+ ".extend": 1,
+ "target.data": 1,
+ "e.preventDefault": 1,
+ "target.modal": 1
+ },
+ "Visual Basic": {
+ "VERSION": 1,
+ "CLASS": 1,
+ "BEGIN": 1,
+ "MultiUse": 1,
+ "-": 9,
+ "NotPersistable": 1,
+ "DataBindingBehavior": 1,
+ "vbNone": 1,
+ "MTSTransactionMode": 1,
+ "*************************************************************************************************************************************************************************************************************************************************": 2,
+ "Copyright": 1,
+ "(": 20,
+ "c": 1,
+ ")": 20,
+ "David": 1,
+ "Briant": 1,
+ "All": 1,
+ "rights": 1,
+ "reserved": 1,
+ "Option": 1,
+ "Explicit": 1,
+ "Private": 25,
+ "Declare": 3,
+ "Function": 5,
+ "apiSetProp": 4,
+ "Lib": 3,
+ "Alias": 3,
+ "ByVal": 6,
+ "hwnd": 2,
+ "As": 34,
+ "Long": 10,
+ "lpString": 2,
+ "String": 13,
+ "hData": 1,
+ "apiGlobalAddAtom": 3,
+ "apiSetForegroundWindow": 1,
+ "myMouseEventsForm": 5,
+ "fMouseEventsForm": 2,
+ "WithEvents": 3,
+ "myAST": 3,
+ "cTP_AdvSysTray": 2,
+ "Attribute": 3,
+ "myAST.VB_VarHelpID": 1,
+ "myClassName": 2,
+ "myWindowName": 2,
+ "Const": 9,
+ "TEN_MILLION": 1,
+ "Single": 1,
+ "myListener": 1,
+ "VLMessaging.VLMMMFileListener": 1,
+ "myListener.VB_VarHelpID": 1,
+ "myMMFileTransports": 2,
+ "VLMessaging.VLMMMFileTransports": 1,
+ "myMMFileTransports.VB_VarHelpID": 1,
+ "myMachineID": 1,
+ "myRouterSeed": 1,
+ "myRouterIDsByMMTransportID": 1,
+ "New": 6,
+ "Dictionary": 3,
+ "myMMTransportIDsByRouterID": 2,
+ "myDirectoryEntriesByIDString": 1,
+ "GET_ROUTER_ID": 1,
+ "GET_ROUTER_ID_REPLY": 1,
+ "REGISTER_SERVICE": 1,
+ "REGISTER_SERVICE_REPLY": 1,
+ "UNREGISTER_SERVICE": 1,
+ "UNREGISTER_SERVICE_REPLY": 1,
+ "GET_SERVICES": 1,
+ "GET_SERVICES_REPLY": 1,
+ "Initialize": 1,
+ "/": 1,
+ "Release": 1,
+ "hide": 1,
+ "us": 1,
+ "from": 2,
+ "the": 7,
+ "Applications": 1,
+ "list": 1,
+ "in": 1,
+ "Windows": 1,
+ "Task": 1,
+ "Manager": 1,
+ "App.TaskVisible": 1,
+ "False": 1,
+ "create": 1,
+ "tray": 1,
+ "icon": 1,
+ "Set": 5,
+ "myAST.create": 1,
+ "myMouseEventsForm.icon": 1,
+ "make": 1,
+ "myself": 1,
+ "easily": 2,
+ "found": 1,
+ "myMouseEventsForm.hwnd": 3,
+ "End": 11,
+ "Sub": 9,
+ "shutdown": 1,
+ "myAST.destroy": 1,
+ "Nothing": 2,
+ "Unload": 1,
+ "myAST_RButtonUp": 1,
+ "Dim": 1,
+ "epm": 1,
+ "cTP_EasyPopupMenu": 1,
+ "menuItemSelected": 1,
+ "epm.addMenuItem": 3,
+ "MF_STRING": 3,
+ "epm.addSubmenuItem": 2,
+ "MF_SEPARATOR": 1,
+ "MF_CHECKED": 1,
+ "route": 2,
+ "to": 4,
+ "a": 4,
+ "remote": 1,
+ "machine": 1,
+ "Else": 1,
+ "for": 4,
+ "moment": 1,
+ "just": 1,
+ "between": 1,
+ "MMFileTransports": 1,
+ "If": 4,
+ "myMMTransportIDsByRouterID.Exists": 1,
+ "message.toAddress.RouterID": 2,
+ "Then": 1,
+ "transport": 1,
+ "transport.send": 1,
+ "messageToBytes": 1,
+ "message": 1,
+ "directoryEntryIDString": 2,
+ "serviceType": 2,
+ "address": 1,
+ "VLMAddress": 1,
+ "&": 7,
+ "address.MachineID": 1,
+ "address.RouterID": 1,
+ "address.AgentID": 1,
+ "myMMFileTransports_disconnecting": 1,
+ "id": 1,
+ "oReceived": 2,
+ "Boolean": 1,
+ "True": 1,
+ "@Code": 1,
+ "ViewData": 1,
+ "Code": 1,
+ "@section": 1,
+ "featured": 1,
+ "": 1,
+ "class=": 7,
+ "": 1,
+ " ": 1,
+ "": 1,
+ "@ViewData": 2,
+ ".": 3,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ " ": 1,
+ "To": 1,
+ "learn": 1,
+ "more": 4,
+ "about": 2,
+ "ASP.NET": 5,
+ "MVC": 4,
+ "visit": 2,
+ "": 5,
+ "href=": 5,
+ "title=": 2,
+ "http": 1,
+ "//asp.net/mvc": 1,
+ "": 5,
+ "The": 1,
+ "page": 1,
+ "features": 3,
+ "": 1,
+ "videos": 1,
+ "tutorials": 1,
+ "and": 6,
+ "samples": 1,
+ "": 1,
+ "help": 1,
+ "you": 4,
+ "get": 1,
+ "most": 1,
+ "MVC.": 1,
+ "have": 1,
+ "any": 1,
+ "questions": 1,
+ "our": 1,
+ "forums": 1,
+ " ": 1,
+ " ": 1,
+ "": 1,
+ "Section": 1,
+ "": 1,
+ "We": 1,
+ "suggest": 1,
+ "following": 1,
+ "": 1,
+ "": 1,
+ "- ": 3,
+ "
": 3,
+ "Getting": 1,
+ "Started": 1,
+ "": 3,
+ "gives": 2,
+ "powerful": 1,
+ "patterns": 1,
+ "based": 1,
+ "way": 1,
+ "build": 1,
+ "dynamic": 1,
+ "websites": 1,
+ "that": 5,
+ "enables": 1,
+ "clean": 1,
+ "separation": 1,
+ "of": 2,
+ "concerns": 1,
+ "full": 1,
+ "control": 1,
+ "over": 1,
+ "markup": 1,
+ "enjoyable": 1,
+ "agile": 1,
+ "development.": 1,
+ "includes": 1,
+ "many": 1,
+ "enable": 1,
+ "fast": 1,
+ "TDD": 1,
+ "friendly": 1,
+ "development": 1,
+ "creating": 1,
+ "sophisticated": 1,
+ "applications": 1,
+ "use": 1,
+ "latest": 1,
+ "web": 2,
+ "standards.": 1,
+ "Learn": 3,
+ " ": 3,
+ "Add": 1,
+ "NuGet": 2,
+ "packages": 1,
+ "jump": 1,
+ "start": 1,
+ "your": 2,
+ "coding": 1,
+ "makes": 1,
+ "it": 1,
+ "easy": 1,
+ "install": 1,
+ "update": 1,
+ "free": 1,
+ "libraries": 1,
+ "tools.": 1,
+ "Find": 1,
+ "Web": 1,
+ "Hosting": 1,
+ "You": 1,
+ "can": 1,
+ "find": 1,
+ "hosting": 1,
+ "company": 1,
+ "offers": 1,
+ "right": 1,
+ "mix": 1,
+ "price": 1,
+ "applications.": 1,
+ " ": 1,
+ "Module": 2,
+ "Module1": 1,
+ "Main": 1,
+ "Console.Out.WriteLine": 2
+ },
+ "GAP": {
+ "#############################################################################": 63,
+ "##": 766,
+ "Magic.gi": 1,
+ "AutoDoc": 4,
+ "package": 10,
+ "Copyright": 6,
+ "Max": 2,
+ "Horn": 2,
+ "JLU": 2,
+ "Giessen": 2,
+ "Sebastian": 2,
+ "Gutsche": 2,
+ "University": 4,
+ "of": 114,
+ "Kaiserslautern": 2,
+ "BindGlobal": 7,
+ "(": 721,
+ "function": 37,
+ "str": 8,
+ "suffix": 3,
+ ")": 722,
+ "local": 16,
+ "n": 31,
+ "m": 8,
+ ";": 569,
+ "Length": 14,
+ "return": 41,
+ "and": 102,
+ "{": 21,
+ "[": 145,
+ "-": 67,
+ "+": 9,
+ "]": 169,
+ "}": 21,
+ "end": 34,
+ "i": 25,
+ "while": 5,
+ "<": 17,
+ "do": 18,
+ "od": 15,
+ "if": 103,
+ "then": 128,
+ "fi": 91,
+ "d": 16,
+ "tmp": 20,
+ "not": 49,
+ "IsDirectoryPath": 1,
+ "CreateDir": 2,
+ "#": 73,
+ "Note": 3,
+ "is": 72,
+ "currently": 1,
+ "undocumented": 1,
+ "fail": 18,
+ "Error": 7,
+ "LastSystemError": 1,
+ ".message": 1,
+ "false": 7,
+ "true": 21,
+ "pkg": 32,
+ "subdirs": 2,
+ "extensions": 1,
+ "d_rel": 6,
+ "files": 4,
+ "result": 9,
+ "for": 53,
+ "in": 64,
+ "DirectoriesPackageLibrary": 2,
+ "IsEmpty": 6,
+ "continue": 3,
+ "Directory": 5,
+ "DirectoryContents": 1,
+ "Sort": 1,
+ "AUTODOC_GetSuffix": 2,
+ "IsReadableFile": 2,
+ "Filename": 8,
+ "Add": 4,
+ "Make": 1,
+ "this": 15,
+ "callable": 1,
+ "with": 24,
+ "the": 136,
+ "package_name": 1,
+ "AutoDocWorksheet.": 1,
+ "Which": 1,
+ "will": 5,
+ "create": 1,
+ "a": 113,
+ "worksheet": 1,
+ "InstallGlobalFunction": 5,
+ "arg": 16,
+ "package_info": 3,
+ "opt": 3,
+ "scaffold": 12,
+ "gapdoc": 7,
+ "maketest": 12,
+ "autodoc": 8,
+ "pkg_dir": 5,
+ "doc_dir": 18,
+ "doc_dir_rel": 3,
+ "title_page": 7,
+ "tree": 8,
+ "is_worksheet": 13,
+ "position_document_class": 7,
+ "gapdoc_latex_option_record": 4,
+ "LowercaseString": 3,
+ "rec": 20,
+ "DirectoryCurrent": 1,
+ "else": 25,
+ "PackageInfo": 1,
+ "key": 3,
+ "val": 4,
+ "ValueOption": 1,
+ "opt.": 1,
+ "IsBound": 39,
+ "opt.dir": 4,
+ "elif": 21,
+ "IsString": 7,
+ "or": 13,
+ "IsDirectory": 1,
+ "AUTODOC_CreateDirIfMissing": 1,
+ "Print": 24,
+ "opt.scaffold": 5,
+ "package_info.AutoDoc": 3,
+ "IsRecord": 7,
+ "IsBool": 4,
+ "AUTODOC_APPEND_RECORD_WRITEONCE": 3,
+ "AUTODOC_WriteOnce": 10,
+ "opt.autodoc": 5,
+ "Concatenation": 15,
+ "package_info.Dependencies.NeededOtherPackages": 1,
+ "package_info.Dependencies.SuggestedOtherPackages": 1,
+ "ForAny": 1,
+ "x": 14,
+ "autodoc.files": 7,
+ "autodoc.scan_dirs": 5,
+ "autodoc.level": 3,
+ "PushOptions": 1,
+ "level_value": 1,
+ "Append": 2,
+ "AUTODOC_FindMatchingFiles": 2,
+ "opt.gapdoc": 5,
+ "opt.maketest": 4,
+ "gapdoc.main": 8,
+ "package_info.PackageDoc": 3,
+ ".BookName": 2,
+ "gapdoc.bookname": 4,
+ "#Print": 1,
+ "gapdoc.files": 9,
+ "gapdoc.scan_dirs": 3,
+ "Set": 1,
+ "Number": 1,
+ "ListWithIdenticalEntries": 1,
+ "List": 6,
+ "f": 11,
+ "DocumentationTree": 1,
+ "autodoc.section_intros": 2,
+ "AUTODOC_PROCESS_INTRO_STRINGS": 1,
+ "Tree": 2,
+ "AutoDocScanFiles": 1,
+ "PackageName": 2,
+ "scaffold.TitlePage": 4,
+ "scaffold.TitlePage.Title": 2,
+ ".TitlePage.Title": 2,
+ "Position": 2,
+ "Remove": 2,
+ "JoinStringsWithSeparator": 1,
+ "ReplacedString": 2,
+ "Syntax": 1,
+ "scaffold.document_class": 7,
+ "PositionSublist": 5,
+ "GAPDoc2LaTeXProcs.Head": 14,
+ "..": 6,
+ "scaffold.latex_header_file": 2,
+ "StringFile": 2,
+ "scaffold.gapdoc_latex_options": 4,
+ "RecNames": 1,
+ "scaffold.gapdoc_latex_options.": 5,
+ "IsList": 1,
+ "scaffold.includes": 4,
+ "scaffold.bib": 7,
+ "Unbind": 1,
+ "scaffold.main_xml_file": 2,
+ ".TitlePage": 1,
+ "ExtractTitleInfoFromPackageInfo": 1,
+ "CreateTitlePage": 1,
+ "scaffold.MainPage": 2,
+ "scaffold.dir": 1,
+ "scaffold.book_name": 1,
+ "CreateMainPage": 1,
+ "WriteDocumentation": 1,
+ "SetGapDocLaTeXOptions": 1,
+ "MakeGAPDocDoc": 1,
+ "CopyHTMLStyleFiles": 1,
+ "GAPDocManualLab": 1,
+ "maketest.folder": 3,
+ "maketest.scan_dir": 3,
+ "CreateMakeTest": 1,
+ "#W": 4,
+ "example.gd": 2,
+ "This": 10,
+ "file": 7,
+ "contains": 7,
+ "sample": 2,
+ "GAP": 15,
+ "declaration": 1,
+ "file.": 3,
+ "DeclareProperty": 2,
+ "IsLeftModule": 6,
+ "DeclareGlobalFunction": 5,
+ "#C": 7,
+ "IsQuuxFrobnicator": 1,
+ "": 3,
+ "": 28,
+ "": 7,
+ "Name=": 33,
+ "Arg=": 33,
+ "Type=": 7,
+ "": 28,
+ "Tests": 1,
+ "whether": 5,
+ "R": 5,
+ "quux": 1,
+ "frobnicator.": 1,
+ "": 28,
+ "": 28,
+ "DeclareSynonym": 17,
+ "IsField": 1,
+ "IsGroup": 1,
+ "Magic.gd": 1,
+ "SHEBANG#!#! @Description": 1,
+ "SHEBANG#!#! This": 1,
+ "SHEBANG#!#! any": 1,
+ "SHEBANG#!#! ": 1,
+ "SHEBANG#!#! - ": 5,
+ "SHEBANG#!#! It": 3,
+ "SHEBANG#!#! That": 1,
+ "SHEBANG#!#! of": 1,
+ "SHEBANG#!#! (with": 1,
+ "SHEBANG#!#! main": 1,
+ "SHEBANG#!#! XML": 1,
+ "SHEBANG#!#! other": 1,
+ "SHEBANG#!#! as": 1,
+ "SHEBANG#!#! to": 2,
+ "SHEBANG#!#! Secondly,": 1,
+ "SHEBANG#!#! page": 1,
+ "SHEBANG#!#! (name,": 1,
+ "SHEBANG#!#! on": 1,
+ "SHEBANG#!Item>": 25,
+ "SHEBANG#!#! tags": 1,
+ "SHEBANG#!#! This": 1,
+ "SHEBANG#!#! produce": 1,
+ "SHEBANG#!#! MathJaX": 1,
+ "SHEBANG#!#! generated": 1,
+ "SHEBANG#!#! this,": 1,
+ "SHEBANG#!#! supplementary": 1,
+ "SHEBANG#!#! (see": 1,
+ "SHEBANG#!Enum>": 1,
+ "SHEBANG#!#! For": 1,
+ "SHEBANG#!>": 11,
+ "SHEBANG#!#! The": 1,
+ "SHEBANG#!#!
": 1,
+ "SHEBANG#!Mark>": 22,
+ "SHEBANG#!#! The": 2,
+ "SHEBANG#!A>": 1,
+ "SHEBANG#!#! ": 1,
+ "SHEBANG#!#! - ": 4,
+ "SHEBANG#!#! This": 4,
+ "SHEBANG#!#! Directory()": 1,
+ "SHEBANG#!#! (i.e.": 1,
+ "SHEBANG#!#! Default": 1,
+ "SHEBANG#!#! for": 1,
+ "SHEBANG#!#! The": 3,
+ "SHEBANG#!#! record.": 3,
+ "SHEBANG#!#! equivalent": 3,
+ "SHEBANG#!#! enabled.": 3,
+ "SHEBANG#!#! package's": 1,
+ "SHEBANG#!#! In": 3,
+ "SHEBANG#!K>),": 3,
+ "SHEBANG#!#! If": 3,
+ "####": 34,
+ "TODO": 3,
+ "mention": 1,
+ "merging": 1,
+ "PackageInfo.AutoDoc": 1,
+ "SHEBANG#!#!
": 3,
+ "SHEBANG#!#! - ": 13,
+ "SHEBANG#!#! A": 6,
+ "SHEBANG#!#! If": 2,
+ "SHEBANG#!#! your": 1,
+ "SHEBANG#!#! you": 1,
+ "SHEBANG#!#! to": 4,
+ "SHEBANG#!#! is": 1,
+ "SHEBANG#!#! of": 2,
+ "SHEBANG#!#! This": 3,
+ "SHEBANG#!#! i.e.": 1,
+ "SHEBANG#!#! The": 2,
+ "SHEBANG#!#! then": 1,
+ "The": 21,
+ "param": 1,
+ "bit": 2,
+ "strange.": 1,
+ "We": 4,
+ "should": 2,
+ "probably": 2,
+ "change": 1,
+ "it": 8,
+ "to": 37,
+ "be": 24,
+ "more": 3,
+ "general": 1,
+ "as": 23,
+ "one": 11,
+ "might": 1,
+ "want": 1,
+ "define": 2,
+ "other": 4,
+ "entities...": 1,
+ "For": 10,
+ "now": 1,
+ "we": 3,
+ "document": 1,
+ "leave": 1,
+ "us": 1,
+ "choice": 1,
+ "revising": 1,
+ "how": 1,
+ "works.": 1,
+ "": 2,
+ "": 117,
+ "entities": 2,
+ "": 117,
+ "": 2,
+ "
- ": 2,
+ "A": 9,
+ "list": 16,
+ "names": 1,
+ "which": 8,
+ "are": 14,
+ "used": 10,
+ "corresponding": 1,
+ "XML": 4,
+ "entities.": 1,
+ "example": 3,
+ "set": 6,
+ "containing": 1,
+ "string": 6,
+ "
": 2,
+ "SomePackage": 3,
+ " ": 2,
+ "following": 4,
+ "added": 1,
+ "preamble": 1,
+ "": 2,
+ "CDATA": 2,
+ "ENTITY": 2,
+ "": 2,
+ "allows": 1,
+ "you": 3,
+ "write": 3,
+ "&": 37,
+ "amp": 1,
+ "your": 1,
+ "documentation": 2,
+ "reference": 1,
+ "that": 39,
+ "package.": 2,
+ "If": 11,
+ "another": 1,
+ "type": 2,
+ "entity": 1,
+ "desired": 1,
+ "can": 12,
+ "simply": 2,
+ "add": 2,
+ "instead": 1,
+ "two": 13,
+ "entry": 2,
+ "list.": 2,
+ "It": 1,
+ "handled": 3,
+ "so": 3,
+ "please": 1,
+ "careful.": 1,
+ " ": 2,
+ "SHEBANG#!#! for": 1,
+ "SHEBANG#!#! statement": 1,
+ "SHEBANG#!#! components": 2,
+ "SHEBANG#!#! example,": 1,
+ "SHEBANG#!#! acknowledgements": 1,
+ "SHEBANG#!#! ": 6,
+ "SHEBANG#!#! by": 1,
+ "SHEBANG#!#! package": 1,
+ "SHEBANG#!#! Usually": 2,
+ "SHEBANG#!#! are": 2,
+ "SHEBANG#!#! Default": 3,
+ "SHEBANG#!#! When": 1,
+ "SHEBANG#!#! they": 1,
+ "Document": 1,
+ "section_intros": 2,
+ "later": 1,
+ "on.": 1,
+ "However": 2,
+ "note": 2,
+ "thanks": 1,
+ "new": 2,
+ "comment": 1,
+ "syntax": 1,
+ "only": 5,
+ "remaining": 1,
+ "use": 5,
+ "seems": 1,
+ "ability": 1,
+ "specify": 3,
+ "order": 1,
+ "chapters": 1,
+ "sections.": 1,
+ "TODO.": 1,
+ "SHEBANG#!#! files": 1,
+ "strictly": 1,
+ "speaking": 1,
+ "also": 3,
+ "scaffold.": 1,
+ "uses": 2,
+ "scaffolding": 2,
+ "mechanism": 4,
+ "really": 4,
+ "necessary": 2,
+ "custom": 1,
+ "name": 2,
+ "main": 1,
+ "Thus": 3,
+ "purpose": 1,
+ "parameter": 1,
+ "cater": 1,
+ "packages": 5,
+ "have": 3,
+ "existing": 1,
+ "using": 2,
+ "different": 2,
+ "wish": 1,
+ "scaffolding.": 1,
+ "explain": 1,
+ "why": 2,
+ "allow": 1,
+ "specifying": 1,
+ "gapdoc.main.": 1,
+ "code": 1,
+ "still": 1,
+ "honor": 1,
+ "though": 1,
+ "just": 1,
+ "case.": 1,
+ "SHEBANG#!#! In": 1,
+ "part.": 1,
+ "Still": 1,
+ "under": 1,
+ "construction.": 1,
+ "SHEBANG#!#! - ": 1,
+ "SHEBANG#!#! The": 1,
+ "SHEBANG#!#! a": 1,
+ "SHEBANG#!#! which": 1,
+ "SHEBANG#!#! the": 1,
+ "SHEBANG#!#!
": 1,
+ "SHEBANG#!#! - ": 2,
+ "SHEBANG#!#! Sets": 1,
+ "SHEBANG#!#! A": 1,
+ "SHEBANG#!#! will": 1,
+ "SHEBANG#!#! @Returns": 1,
+ "SHEBANG#!#! @Arguments": 1,
+ "SHEBANG#!#! @ChapterInfo": 1,
+ "vspc.gd": 1,
+ "library": 2,
+ "Thomas": 2,
+ "Breuer": 2,
+ "#Y": 6,
+ "C": 11,
+ "Lehrstuhl": 2,
+ "D": 36,
+ "r": 2,
+ "Mathematik": 2,
+ "RWTH": 2,
+ "Aachen": 2,
+ "Germany": 2,
+ "School": 2,
+ "Math": 2,
+ "Comp.": 2,
+ "Sci.": 2,
+ "St": 2,
+ "Andrews": 2,
+ "Scotland": 2,
+ "Group": 3,
+ "declares": 1,
+ "operations": 2,
+ "vector": 67,
+ "spaces.": 4,
+ "bases": 5,
+ "free": 3,
+ "left": 15,
+ "modules": 1,
+ "found": 1,
+ "": 10,
+ "lib/basis.gd": 1,
+ ".": 257,
+ "IsLeftOperatorRing": 1,
+ "IsLeftOperatorAdditiveGroup": 2,
+ "IsRing": 1,
+ "IsAssociativeLOpDProd": 2,
+ "#T": 6,
+ "IsLeftOperatorRingWithOne": 2,
+ "IsRingWithOne": 1,
+ "IsLeftVectorSpace": 3,
+ "": 38,
+ "IsVectorSpace": 26,
+ "<#GAPDoc>": 17,
+ "Label=": 19,
+ "": 12,
+ "space": 74,
+ "": 12,
+ "module": 2,
+ "see": 30,
+ "nbsp": 30,
+ "
[": 71,
+ "Func=": 40,
+ "over": 24,
+ "division": 15,
+ "ring": 14,
+ "Chapter": 3,
+ "Chap=": 3,
+ "": 23,
+ "Whenever": 1,
+ "talk": 1,
+ "about": 3,
+ "an": 17,
+ "": 42,
+ "F": 61,
+ "": 41,
+ "V": 152,
+ "additive": 1,
+ "group": 2,
+ "on": 5,
+ "acts": 1,
+ "via": 6,
+ "multiplication": 1,
+ "from": 5,
+ "such": 4,
+ "action": 4,
+ "addition": 1,
+ "right": 2,
+ "distributive.": 1,
+ "accessed": 1,
+ "value": 9,
+ "attribute": 2,
+ "Vector": 1,
+ "spaces": 15,
+ "always": 1,
+ "Filt=": 4,
+ "synonyms.": 1,
+ "<#/GAPDoc>": 17,
+ "IsLeftActedOnByDivisionRing": 4,
+ "InstallTrueMethod": 4,
+ "IsFreeLeftModule": 3,
+ "#F": 17,
+ "IsGaussianSpace": 10,
+ "": 14,
+ "filter": 3,
+ "Sect=": 6,
+ "row": 17,
+ "matrix": 5,
+ "field": 12,
+ "say": 1,
+ "indicates": 3,
+ "entries": 8,
+ "all": 18,
+ "vectors": 16,
+ "matrices": 5,
+ "respectively": 1,
+ "contained": 4,
+ "In": 3,
+ "case": 2,
+ "called": 1,
+ "Gaussian": 19,
+ "space.": 5,
+ "Bases": 1,
+ "computed": 2,
+ "elimination": 5,
+ "given": 4,
+ "generators.": 1,
+ "": 12,
+ "": 12,
+ "gap": 41,
+ "mats": 5,
+ "VectorSpace": 13,
+ "Rationals": 13,
+ "E": 2,
+ "element": 2,
+ "extension": 3,
+ "Field": 1,
+ "": 12,
+ "DeclareFilter": 1,
+ "IsFullMatrixModule": 1,
+ "IsFullRowModule": 1,
+ "IsDivisionRing": 5,
+ "": 12,
+ "nontrivial": 1,
+ "associative": 1,
+ "algebra": 2,
+ "multiplicative": 1,
+ "inverse": 1,
+ "each": 2,
+ "nonzero": 3,
+ "element.": 1,
+ "every": 1,
+ "possibly": 1,
+ "itself": 1,
+ "being": 2,
+ "thus": 1,
+ "property": 2,
+ "get": 1,
+ "because": 2,
+ "usually": 1,
+ "represented": 1,
+ "coefficients": 3,
+ "stored": 1,
+ "DeclareSynonymAttr": 4,
+ "IsMagmaWithInversesIfNonzero": 1,
+ "IsNonTrivial": 1,
+ "IsAssociative": 1,
+ "IsEuclideanRing": 1,
+ "#A": 7,
+ "GeneratorsOfLeftVectorSpace": 1,
+ "GeneratorsOfVectorSpace": 2,
+ "": 7,
+ "Attr=": 10,
+ "returns": 14,
+ "generate": 1,
+ "FullRowSpace": 5,
+ "GeneratorsOfLeftOperatorAdditiveGroup": 2,
+ "CanonicalBasis": 3,
+ "supports": 1,
+ "canonical": 6,
+ "basis": 14,
+ "otherwise": 2,
+ "": 3,
+ "": 3,
+ "returned.": 4,
+ "defining": 1,
+ "its": 2,
+ "uniquely": 1,
+ "determined": 1,
+ "by": 14,
+ "exist": 1,
+ "same": 6,
+ "acting": 8,
+ "domain": 17,
+ "equality": 1,
+ "these": 5,
+ "decided": 1,
+ "comparing": 1,
+ "bases.": 1,
+ "exact": 1,
+ "meaning": 1,
+ "depends": 1,
+ "Canonical": 1,
+ "defined": 3,
+ "designs": 1,
+ "kind": 1,
+ "defines": 1,
+ "method": 4,
+ "installs": 1,
+ "must": 6,
+ "call": 1,
+ "On": 1,
+ "hand": 1,
+ "install": 1,
+ "calls": 1,
+ "": 10,
+ "CANONICAL_BASIS_FLAGS": 1,
+ "": 9,
+ "vecs": 4,
+ "B": 16,
+ "": 8,
+ "3": 5,
+ "generators": 16,
+ "BasisVectors": 4,
+ "DeclareAttribute": 4,
+ "IsRowSpace": 2,
+ "consists": 7,
+ "IsRowModule": 1,
+ "IsGaussianRowSpace": 1,
+ "scalars": 2,
+ "occur": 2,
+ "vectors.": 2,
+ "calculations.": 2,
+ "Otherwise": 3,
+ "non": 4,
+ "Gaussian.": 2,
+ "need": 3,
+ "flag": 2,
+ "down": 2,
+ "methods": 4,
+ "delegate": 2,
+ "ones.": 2,
+ "IsNonGaussianRowSpace": 1,
+ "expresses": 2,
+ "cannot": 2,
+ "compute": 3,
+ "nice": 4,
+ "way.": 2,
+ "Let": 4,
+ "K": 4,
+ "spanned": 4,
+ "Then": 1,
+ "/": 12,
+ "cap": 1,
+ "v": 5,
+ "replacing": 1,
+ "forming": 1,
+ "concatenation.": 1,
+ "So": 2,
+ "associated": 3,
+ "DeclareHandlingByNiceBasis": 2,
+ "IsMatrixSpace": 2,
+ "IsMatrixModule": 1,
+ "IsGaussianMatrixSpace": 1,
+ "IsNonGaussianMatrixSpace": 1,
+ "irrelevant": 1,
+ "concatenation": 1,
+ "rows": 1,
+ "necessarily": 1,
+ "NormedRowVectors": 2,
+ "normed": 1,
+ "finite": 5,
+ "those": 1,
+ "first": 1,
+ "component.": 1,
+ "yields": 1,
+ "natural": 1,
+ "dimensional": 5,
+ "subspaces": 17,
+ "GF": 22,
+ "*Z": 5,
+ "Z": 6,
+ "Action": 1,
+ "GL": 1,
+ "OnLines": 1,
+ "TrivialSubspace": 2,
+ "subspace": 7,
+ "zero": 4,
+ "triv": 2,
+ "0": 2,
+ "AsSet": 1,
+ "TrivialSubmodule": 1,
+ "": 5,
+ "": 2,
+ "collection": 3,
+ "gens": 16,
+ "elements": 7,
+ "optional": 3,
+ "argument": 1,
+ "empty.": 1,
+ "known": 5,
+ "linearly": 3,
+ "independent": 3,
+ "particular": 1,
+ "dimension": 9,
+ "immediately": 2,
+ "formed": 1,
+ "argument.": 1,
+ "2": 1,
+ "Subspace": 4,
+ "generated": 1,
+ "SubspaceNC": 2,
+ "subset": 4,
+ "empty": 1,
+ "trivial": 1,
+ "parent": 3,
+ "returned": 3,
+ "does": 1,
+ "except": 1,
+ "omits": 1,
+ "check": 5,
+ "both": 2,
+ "W": 32,
+ "1": 3,
+ "Submodule": 1,
+ "SubmoduleNC": 1,
+ "#O": 2,
+ "AsVectorSpace": 4,
+ "view": 4,
+ "": 2,
+ "domain.": 1,
+ "form": 2,
+ "Oper=": 6,
+ "smaller": 1,
+ "larger": 1,
+ "ring.": 3,
+ "Dimension": 6,
+ "LeftActingDomain": 29,
+ "9": 1,
+ "AsLeftModule": 6,
+ "AsSubspace": 5,
+ "": 6,
+ "U": 12,
+ "collection.": 1,
+ "/2": 4,
+ "Parent": 4,
+ "DeclareOperation": 2,
+ "IsCollection": 3,
+ "Intersection2Spaces": 4,
+ "": 2,
+ "": 2,
+ "": 2,
+ "takes": 1,
+ "arguments": 1,
+ "intersection": 5,
+ "domains": 3,
+ "let": 1,
+ "their": 1,
+ "intersection.": 1,
+ "AsStruct": 2,
+ "equal": 1,
+ "either": 2,
+ "Substruct": 1,
+ "common": 1,
+ "Struct": 1,
+ "cases": 2,
+ "basis.": 1,
+ "handle": 1,
+ "intersections": 1,
+ "algebras": 2,
+ "ideals": 2,
+ "sided": 1,
+ "ideals.": 1,
+ "": 2,
+ "": 2,
+ "nonnegative": 2,
+ "integer": 2,
+ "length": 1,
+ "An": 2,
+ "alternative": 2,
+ "construct": 2,
+ "above": 2,
+ "FullRowModule": 2,
+ "FullMatrixSpace": 2,
+ "": 1,
+ "positive": 1,
+ "integers": 1,
+ "fact": 1,
+ "FullMatrixModule": 3,
+ "IsSubspacesVectorSpace": 9,
+ "fixed": 1,
+ "lies": 1,
+ "category": 1,
+ "Subspaces": 8,
+ "Size": 5,
+ "iter": 17,
+ "Iterator": 5,
+ "NextIterator": 5,
+ "DeclareCategory": 1,
+ "IsDomain": 1,
+ "#M": 20,
+ "IsFinite": 4,
+ "Returns": 1,
+ "": 1,
+ "Called": 2,
+ "k": 17,
+ "Special": 1,
+ "provided": 1,
+ "domains.": 1,
+ "IsInt": 3,
+ "IsSubspace": 3,
+ "OrthogonalSpaceInFullRowSpace": 1,
+ "complement": 1,
+ "full": 2,
+ "#P": 1,
+ "IsVectorSpaceHomomorphism": 3,
+ "": 2,
+ "": 1,
+ "mapping": 2,
+ "homomorphism": 1,
+ "linear": 1,
+ "source": 2,
+ "range": 1,
+ "b": 8,
+ "s": 4,
+ "*": 12,
+ "hold": 1,
+ "IsGeneralMapping": 2,
+ "#E": 2,
+ "PackageInfo.g": 2,
+ "cvec": 1,
+ "template": 1,
+ "SetPackageInfo": 1,
+ "Subtitle": 1,
+ "Version": 1,
+ "Date": 1,
+ "dd/mm/yyyy": 1,
+ "format": 2,
+ "Information": 1,
+ "authors": 1,
+ "maintainers.": 1,
+ "Persons": 1,
+ "LastName": 1,
+ "FirstNames": 1,
+ "IsAuthor": 1,
+ "IsMaintainer": 1,
+ "Email": 1,
+ "WWWHome": 1,
+ "PostalAddress": 1,
+ "Place": 1,
+ "Institution": 1,
+ "Status": 2,
+ "information.": 1,
+ "Currently": 1,
+ "recognized": 1,
+ "successfully": 2,
+ "refereed": 2,
+ "developers": 1,
+ "agreed": 1,
+ "distribute": 1,
+ "them": 1,
+ "core": 1,
+ "system": 1,
+ "development": 1,
+ "versions": 1,
+ "You": 1,
+ "provide": 2,
+ "next": 6,
+ "status": 1,
+ "was": 1,
+ "#CommunicatedBy": 1,
+ "#AcceptDate": 1,
+ "PackageWWWHome": 1,
+ "README_URL": 1,
+ ".PackageWWWHome": 2,
+ "PackageInfoURL": 1,
+ "ArchiveURL": 1,
+ ".Version": 2,
+ "ArchiveFormats": 1,
+ "Here": 2,
+ "short": 1,
+ "abstract": 1,
+ "explaining": 1,
+ "content": 1,
+ "HTML": 1,
+ "overview": 1,
+ "Web": 1,
+ "page": 1,
+ "URL": 1,
+ "Webpage": 1,
+ "detailed": 1,
+ "information": 1,
+ "than": 1,
+ "few": 1,
+ "lines": 1,
+ "less": 1,
+ "ok": 1,
+ "Please": 1,
+ "specifing": 1,
+ "names.": 1,
+ "AbstractHTML": 1,
+ "PackageDoc": 1,
+ "BookName": 1,
+ "ArchiveURLSubset": 1,
+ "HTMLStart": 1,
+ "PDFFile": 1,
+ "SixFile": 1,
+ "LongTitle": 1,
+ "Dependencies": 1,
+ "NeededOtherPackages": 1,
+ "SuggestedOtherPackages": 1,
+ "ExternalConditions": 1,
+ "AvailabilityTest": 1,
+ "SHOW_STAT": 1,
+ "DirectoriesPackagePrograms": 1,
+ "#Info": 1,
+ "InfoWarning": 1,
+ "*Optional*": 2,
+ "but": 1,
+ "recommended": 1,
+ "path": 1,
+ "relative": 1,
+ "root": 1,
+ "many": 1,
+ "tests": 1,
+ "functionality": 1,
+ "sensible.": 1,
+ "#TestFile": 1,
+ "some": 2,
+ "keyword": 1,
+ "related": 1,
+ "topic": 1,
+ "Keywords": 1,
+ "implementation": 1,
+ "SomeOperation": 1,
+ "": 2,
+ "performs": 1,
+ "operation": 1,
+ "InstallMethod": 18,
+ "SomeProperty": 1,
+ "M": 7,
+ "IsTrivial": 1,
+ "TryNextMethod": 7,
+ "SomeGlobalFunction": 2,
+ "global": 1,
+ "variadic": 1,
+ "funfion.": 1,
+ "SomeFunc": 1,
+ "y": 8,
+ "z": 3,
+ "func": 3,
+ "j": 3,
+ "mod": 2,
+ "repeat": 1,
+ "until": 1,
+ "vspc.gi": 1,
+ "generic": 1,
+ "SetLeftActingDomain": 2,
+ "": 2,
+ "external": 1,
+ "knows": 1,
+ "e.g.": 1,
+ "tell": 1,
+ "InstallOtherMethod": 3,
+ "IsAttributeStoringRep": 2,
+ "IsLeftActedOnByRing": 2,
+ "IsObject": 1,
+ "extL": 2,
+ "HasIsDivisionRing": 1,
+ "SetIsLeftActedOnByDivisionRing": 1,
+ "IsExtLSet": 1,
+ "IsIdenticalObj": 5,
+ "difference": 1,
+ "between": 1,
+ "shall": 1,
+ "CallFuncList": 1,
+ "FreeLeftModule": 1,
+ "newC": 7,
+ "IsSubset": 4,
+ "SetParent": 1,
+ "UseIsomorphismRelation": 2,
+ "UseSubsetRelation": 4,
+ "View": 1,
+ "base": 5,
+ "gen": 5,
+ "loop": 2,
+ "newgens": 4,
+ "extended": 1,
+ "Characteristic": 2,
+ "Basis": 5,
+ "AsField": 2,
+ "GeneratorsOfLeftModule": 9,
+ "LeftModuleByGenerators": 5,
+ "Zero": 5,
+ "Intersection": 1,
+ "ViewObj": 4,
+ "print": 1,
+ "no.": 1,
+ "HasGeneratorsOfLeftModule": 2,
+ "HasDimension": 1,
+ "override": 1,
+ "PrintObj": 5,
+ "HasZero": 1,
+ "": 2,
+ "factor": 2,
+ "": 1,
+ "ImagesSource": 1,
+ "NaturalHomomorphismBySubspace": 1,
+ "AsStructure": 3,
+ "Substructure": 3,
+ "Structure": 2,
+ "inters": 17,
+ "gensV": 7,
+ "gensW": 7,
+ "VW": 3,
+ "sum": 1,
+ "Intersection2": 4,
+ "IsFiniteDimensional": 2,
+ "Coefficients": 3,
+ "SumIntersectionMat": 1,
+ "LinearCombination": 2,
+ "HasParent": 2,
+ "SetIsTrivial": 1,
+ "ClosureLeftModule": 2,
+ "": 1,
+ "closure": 1,
+ "IsCollsElms": 1,
+ "HasBasis": 1,
+ "IsVector": 1,
+ "w": 3,
+ "easily": 1,
+ "UseBasis": 1,
+ "Methods": 1,
+ "collections": 1,
+ "#R": 1,
+ "IsSubspacesVectorSpaceDefaultRep": 7,
+ "representation": 1,
+ "components": 1,
+ "means": 1,
+ "DeclareRepresentation": 1,
+ "IsComponentObjectRep": 1,
+ ".dimension": 9,
+ ".structure": 9,
+ "number": 2,
+ "q": 20,
+ "prod_": 2,
+ "frac": 3,
+ "recursion": 1,
+ "sum_": 1,
+ "size": 12,
+ "qn": 10,
+ "qd": 10,
+ "ank": 6,
+ "Int": 1,
+ "Enumerator": 2,
+ "Use": 1,
+ "iterator": 3,
+ "allowed": 1,
+ "elms": 4,
+ "IsDoneIterator": 3,
+ ".associatedIterator": 3,
+ ".basis": 2,
+ "structure": 4,
+ "associatedIterator": 2,
+ "ShallowCopy": 2,
+ "IteratorByFunctions": 1,
+ "IsDoneIterator_Subspaces": 1,
+ "NextIterator_Subspaces": 1,
+ "ShallowCopy_Subspaces": 1,
+ "": 1,
+ "dim": 2,
+ "Objectify": 2,
+ "NewType": 2,
+ "CollectionsFamily": 2,
+ "FamilyObj": 2,
+ "map": 4,
+ "S": 4,
+ "Source": 1,
+ "Range": 1,
+ "IsLinearMapping": 1
+ },
+ "Logtalk": {
+ "-": 3,
+ "object": 2,
+ "(": 4,
+ "hello_world": 1,
+ ")": 4,
+ ".": 2,
+ "%": 2,
+ "the": 2,
+ "initialization/1": 1,
+ "directive": 1,
+ "argument": 1,
+ "is": 2,
+ "automatically": 1,
+ "executed": 1,
+ "when": 1,
+ "loaded": 1,
+ "into": 1,
+ "memory": 1,
+ "initialization": 1,
+ "nl": 2,
+ "write": 1,
+ "end_object.": 1
+ },
+ "Scheme": {
+ "(": 366,
+ "import": 1,
+ "rnrs": 1,
+ ")": 380,
+ "only": 1,
+ "surfage": 4,
+ "s1": 1,
+ "lists": 1,
+ "filter": 4,
+ "-": 192,
+ "map": 4,
+ "gl": 12,
+ "glut": 2,
+ "dharmalab": 2,
+ "records": 1,
+ "define": 30,
+ "record": 5,
+ "type": 5,
+ "math": 1,
+ "basic": 2,
+ "agave": 4,
+ "glu": 1,
+ "compat": 1,
+ "geometry": 1,
+ "pt": 49,
+ "glamour": 2,
+ "window": 2,
+ "misc": 1,
+ "s19": 1,
+ "time": 24,
+ "s27": 1,
+ "random": 27,
+ "bits": 1,
+ "s42": 1,
+ "eager": 1,
+ "comprehensions": 1,
+ ";": 1684,
+ "utilities": 1,
+ "say": 9,
+ ".": 2,
+ "args": 2,
+ "for": 7,
+ "each": 7,
+ "display": 4,
+ "newline": 2,
+ "translate": 6,
+ "p": 6,
+ "glTranslated": 1,
+ "x": 10,
+ "y": 3,
+ "radians": 8,
+ "/": 7,
+ "pi": 2,
+ "degrees": 2,
+ "angle": 6,
+ "a": 19,
+ "cos": 1,
+ "sin": 1,
+ "current": 15,
+ "in": 14,
+ "nanoseconds": 2,
+ "let": 2,
+ "val": 3,
+ "+": 28,
+ "second": 1,
+ "nanosecond": 1,
+ "seconds": 12,
+ "micro": 1,
+ "milli": 1,
+ "base": 2,
+ "step": 1,
+ "score": 5,
+ "level": 5,
+ "ships": 1,
+ "spaceship": 5,
+ "fields": 4,
+ "mutable": 14,
+ "pos": 16,
+ "vel": 4,
+ "theta": 1,
+ "force": 1,
+ "particle": 8,
+ "birth": 2,
+ "lifetime": 1,
+ "color": 2,
+ "particles": 11,
+ "asteroid": 14,
+ "radius": 6,
+ "number": 3,
+ "of": 3,
+ "starting": 3,
+ "asteroids": 15,
+ "#f": 5,
+ "bullet": 16,
+ "pack": 12,
+ "is": 8,
+ "initialize": 1,
+ "size": 1,
+ "title": 1,
+ "reshape": 1,
+ "width": 8,
+ "height": 8,
+ "source": 2,
+ "randomize": 1,
+ "default": 1,
+ "wrap": 4,
+ "mod": 2,
+ "ship": 8,
+ "make": 11,
+ "ammo": 9,
+ "set": 19,
+ "list": 6,
+ "ec": 6,
+ "i": 6,
+ "inexact": 16,
+ "integer": 25,
+ "buffered": 1,
+ "procedure": 1,
+ "lambda": 12,
+ "background": 1,
+ "glColor3f": 5,
+ "matrix": 5,
+ "excursion": 5,
+ "ship.pos": 5,
+ "glRotated": 2,
+ "ship.theta": 10,
+ "glutWireCone": 1,
+ "par": 6,
+ "c": 4,
+ "vector": 6,
+ "ref": 3,
+ "glutWireSphere": 3,
+ "bullets": 7,
+ "pack.pos": 3,
+ "glutWireCube": 1,
+ "last": 3,
+ "dt": 7,
+ "update": 2,
+ "system": 2,
+ "pt*n": 8,
+ "ship.vel": 5,
+ "pack.vel": 1,
+ "cond": 2,
+ "par.birth": 1,
+ "par.lifetime": 1,
+ "else": 2,
+ "par.pos": 2,
+ "par.vel": 1,
+ "bullet.birth": 1,
+ "bullet.pos": 2,
+ "bullet.vel": 1,
+ "a.pos": 2,
+ "a.vel": 1,
+ "if": 1,
+ "<": 1,
+ "a.radius": 1,
+ "contact": 2,
+ "b": 4,
+ "when": 5,
+ "<=>": 3,
+ "distance": 3,
+ "begin": 2,
+ "1": 2,
+ "f": 1,
+ "append": 4,
+ "4": 1,
+ "50": 4,
+ "0": 7,
+ "100": 6,
+ "2": 1,
+ "n": 2,
+ "null": 1,
+ "10": 1,
+ "5": 1,
+ "glutIdleFunc": 1,
+ "glutPostRedisplay": 1,
+ "glutKeyboardFunc": 1,
+ "key": 2,
+ "case": 1,
+ "char": 1,
+ "#": 6,
+ "w": 1,
+ "d": 1,
+ "s": 1,
+ "space": 1,
+ "cons": 1,
+ "glutMainLoop": 1,
+ "library": 1,
+ "libs": 1,
+ "export": 1,
+ "list2": 2,
+ "objs": 2,
+ "should": 1,
+ "not": 1,
+ "be": 1,
+ "exported": 1
+ },
+ "C++": {
+ "//": 315,
+ "#ifndef": 29,
+ "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3,
+ "#define": 343,
+ "#if": 63,
+ "defined": 49,
+ "(": 3102,
+ "_MSC_VER": 7,
+ ")": 3105,
+ "&&": 29,
+ "#endif": 110,
+ "#include": 129,
+ "": 1,
+ "BOOST_ASIO_HAS_EPOLL": 2,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "BOOST_ASIO_HAS_TIMERFD": 19,
+ "": 1,
+ "namespace": 38,
+ "boost": 18,
+ "{": 726,
+ "asio": 14,
+ "detail": 5,
+ "epoll_reactor": 40,
+ "io_service": 6,
+ "&": 203,
+ "service_base": 1,
+ "": 1,
+ "io_service_": 1,
+ "use_service": 1,
+ "": 1,
+ "mutex_": 13,
+ "interrupter_": 5,
+ "epoll_fd_": 20,
+ "do_epoll_create": 3,
+ "timer_fd_": 21,
+ "do_timerfd_create": 3,
+ "shutdown_": 10,
+ "false": 48,
+ "epoll_event": 10,
+ "ev": 21,
+ "}": 726,
+ ";": 2783,
+ "ev.events": 13,
+ "EPOLLIN": 8,
+ "|": 40,
+ "EPOLLERR": 8,
+ "EPOLLET": 5,
+ "ev.data.ptr": 10,
+ "epoll_ctl": 12,
+ "EPOLL_CTL_ADD": 7,
+ "interrupter_.read_descriptor": 3,
+ "interrupter_.interrupt": 2,
+ "if": 359,
+ "-": 438,
+ "close": 7,
+ "void": 241,
+ "shutdown_service": 1,
+ "mutex": 16,
+ "scoped_lock": 16,
+ "lock": 5,
+ "true": 49,
+ "lock.unlock": 1,
+ "op_queue": 6,
+ "": 6,
+ "ops": 10,
+ "while": 17,
+ "descriptor_state*": 6,
+ "state": 33,
+ "registered_descriptors_.first": 2,
+ "for": 105,
+ "int": 218,
+ "i": 106,
+ "<": 255,
+ "max_ops": 6,
+ "+": 80,
+ "ops.push": 5,
+ "op_queue_": 12,
+ "[": 293,
+ "]": 292,
+ "registered_descriptors_.free": 2,
+ "timer_queues_.get_all_timers": 1,
+ "io_service_.abandon_operations": 1,
+ "fork_service": 1,
+ "fork_event": 1,
+ "fork_ev": 2,
+ "fork_child": 1,
+ "interrupter_.recreate": 1,
+ "update_timeout": 2,
+ "descriptors_lock": 3,
+ "registered_descriptors_mutex_": 3,
+ "next_": 3,
+ "registered_events_": 8,
+ "result": 8,
+ "descriptor_": 5,
+ "system": 13,
+ "error_code": 4,
+ "ec": 6,
+ "errno": 10,
+ "error": 8,
+ "get_system_category": 3,
+ "throw_error": 2,
+ "init_task": 1,
+ "io_service_.init_task": 1,
+ "register_descriptor": 1,
+ "socket_type": 7,
+ "descriptor": 15,
+ "per_descriptor_data": 8,
+ "descriptor_data": 60,
+ "allocate_descriptor_state": 3,
+ "descriptor_lock": 7,
+ "reactor_": 7,
+ "this": 57,
+ "EPOLLHUP": 3,
+ "EPOLLPRI": 3,
+ "return": 240,
+ "register_internal_descriptor": 1,
+ "op_type": 8,
+ "reactor_op*": 5,
+ "op": 28,
+ ".push": 2,
+ "move_descriptor": 1,
+ "target_descriptor_data": 2,
+ "source_descriptor_data": 3,
+ "start_op": 1,
+ "bool": 111,
+ "is_continuation": 5,
+ "allow_speculative": 2,
+ "ec_": 4,
+ "bad_descriptor": 1,
+ "post_immediate_completion": 2,
+ ".empty": 5,
+ "read_op": 1,
+ "||": 19,
+ "except_op": 1,
+ "perform": 2,
+ "descriptor_lock.unlock": 4,
+ "io_service_.post_immediate_completion": 2,
+ "write_op": 2,
+ "EPOLLOUT": 4,
+ "EPOLL_CTL_MOD": 3,
+ "else": 58,
+ "io_service_.work_started": 2,
+ "cancel_ops": 1,
+ ".front": 3,
+ "operation_aborted": 2,
+ ".pop": 3,
+ "io_service_.post_deferred_completions": 3,
+ "deregister_descriptor": 1,
+ "closing": 3,
+ "EPOLL_CTL_DEL": 2,
+ "free_descriptor_state": 3,
+ "deregister_internal_descriptor": 1,
+ "run": 2,
+ "block": 7,
+ "timeout": 5,
+ "get_timeout": 5,
+ "events": 8,
+ "num_events": 2,
+ "epoll_wait": 1,
+ "check_timers": 6,
+ "#else": 35,
+ "void*": 2,
+ "ptr": 6,
+ ".data.ptr": 1,
+ "static_cast": 14,
+ "": 2,
+ "set_ready_events": 1,
+ ".events": 1,
+ "common_lock": 1,
+ "timer_queues_.get_ready_timers": 1,
+ "itimerspec": 5,
+ "new_timeout": 6,
+ "old_timeout": 4,
+ "flags": 4,
+ "timerfd_settime": 2,
+ "interrupt": 3,
+ "EPOLL_CLOEXEC": 4,
+ "fd": 15,
+ "epoll_create1": 1,
+ "EINVAL": 4,
+ "ENOSYS": 1,
+ "epoll_create": 1,
+ "epoll_size": 1,
+ "fcntl": 2,
+ "F_SETFD": 2,
+ "FD_CLOEXEC": 2,
+ "timerfd_create": 2,
+ "CLOCK_MONOTONIC": 3,
+ "TFD_CLOEXEC": 1,
+ "registered_descriptors_.alloc": 1,
+ "s": 26,
+ "do_add_timer_queue": 1,
+ "timer_queue_base": 2,
+ "queue": 4,
+ "timer_queues_.insert": 1,
+ "do_remove_timer_queue": 1,
+ "timer_queues_.erase": 1,
+ "timer_queues_.wait_duration_msec": 1,
+ "*": 183,
+ "ts": 1,
+ "ts.it_interval.tv_sec": 1,
+ "ts.it_interval.tv_nsec": 1,
+ "long": 15,
+ "usec": 5,
+ "timer_queues_.wait_duration_usec": 1,
+ "ts.it_value.tv_sec": 1,
+ "/": 16,
+ "ts.it_value.tv_nsec": 1,
+ "%": 7,
+ "TFD_TIMER_ABSTIME": 1,
+ "struct": 13,
+ "perform_io_cleanup_on_block_exit": 4,
+ "explicit": 5,
+ "epoll_reactor*": 2,
+ "r": 38,
+ "first_op_": 3,
+ "ops_.empty": 1,
+ "ops_": 2,
+ "operation*": 4,
+ "descriptor_state": 5,
+ "operation": 2,
+ "do_complete": 2,
+ "perform_io": 2,
+ "uint32_t": 39,
+ "mutex_.lock": 1,
+ "io_cleanup": 1,
+ "adopt_lock": 1,
+ "static": 263,
+ "const": 172,
+ "flag": 3,
+ "j": 10,
+ "io_cleanup.ops_.push": 1,
+ "break": 35,
+ "io_cleanup.first_op_": 2,
+ "io_cleanup.ops_.front": 1,
+ "io_cleanup.ops_.pop": 1,
+ "io_service_impl*": 1,
+ "owner": 3,
+ "base": 8,
+ "std": 53,
+ "size_t": 6,
+ "bytes_transferred": 2,
+ "": 1,
+ "complete": 3,
+ "": 1,
+ "#pragma": 3,
+ "once": 5,
+ "": 2,
+ "typedef": 50,
+ "smallPrime_t": 1,
+ "class": 40,
+ "Bar": 2,
+ "protected": 4,
+ "char": 127,
+ "*name": 6,
+ "public": 33,
+ "hello": 2,
+ "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1,
+ "": 1,
+ "": 2,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "persons": 4,
+ "google": 72,
+ "protobuf": 72,
+ "Descriptor*": 3,
+ "Person_descriptor_": 6,
+ "NULL": 109,
+ "internal": 47,
+ "GeneratedMessageReflection*": 1,
+ "Person_reflection_": 4,
+ "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4,
+ "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6,
+ "FileDescriptor*": 1,
+ "file": 31,
+ "DescriptorPool": 3,
+ "generated_pool": 2,
+ "FindFileByName": 1,
+ "GOOGLE_CHECK": 1,
+ "message_type": 1,
+ "Person_offsets_": 2,
+ "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3,
+ "Person": 65,
+ "name_": 30,
+ "new": 13,
+ "GeneratedMessageReflection": 1,
+ "default_instance_": 8,
+ "_has_bits_": 14,
+ "_unknown_fields_": 5,
+ "MessageFactory": 3,
+ "generated_factory": 1,
+ "sizeof": 15,
+ "GOOGLE_PROTOBUF_DECLARE_ONCE": 1,
+ "protobuf_AssignDescriptors_once_": 2,
+ "inline": 39,
+ "protobuf_AssignDescriptorsOnce": 4,
+ "GoogleOnceInit": 1,
+ "protobuf_RegisterTypes": 2,
+ "string": 24,
+ "InternalRegisterGeneratedMessage": 1,
+ "default_instance": 3,
+ "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4,
+ "delete": 6,
+ "already_here": 3,
+ "GOOGLE_PROTOBUF_VERIFY_VERSION": 1,
+ "InternalAddGeneratedFile": 1,
+ "InternalRegisterGeneratedFile": 1,
+ "InitAsDefaultInstance": 3,
+ "OnShutdown": 1,
+ "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2,
+ "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1,
+ "kNameFieldNumber": 2,
+ "Message": 7,
+ "SharedCtor": 4,
+ "from": 91,
+ "MergeFrom": 9,
+ "_cached_size_": 7,
+ "const_cast": 3,
+ "string*": 11,
+ "kEmptyString": 12,
+ "memset": 3,
+ "SharedDtor": 3,
+ "SetCachedSize": 2,
+ "size": 13,
+ "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2,
+ "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2,
+ "*default_instance_": 1,
+ "Person*": 7,
+ "New": 6,
+ "Clear": 18,
+ "xffu": 3,
+ "<<": 29,
+ "has_name": 6,
+ "clear": 3,
+ "mutable_unknown_fields": 4,
+ "MergePartialFromCodedStream": 2,
+ "io": 4,
+ "CodedInputStream*": 2,
+ "input": 12,
+ "DO_": 4,
+ "EXPRESSION": 2,
+ "uint32": 2,
+ "tag": 6,
+ "ReadTag": 1,
+ "switch": 3,
+ "WireFormatLite": 9,
+ "GetTagFieldNumber": 1,
+ "case": 34,
+ "GetTagWireType": 2,
+ "WIRETYPE_LENGTH_DELIMITED": 1,
+ "ReadString": 1,
+ "mutable_name": 3,
+ "WireFormat": 10,
+ "VerifyUTF8String": 3,
+ "name": 25,
+ ".data": 3,
+ ".length": 3,
+ "PARSE": 1,
+ "goto": 156,
+ "handle_uninterpreted": 2,
+ "ExpectAtEnd": 1,
+ "default": 14,
+ "WIRETYPE_END_GROUP": 1,
+ "SkipField": 1,
+ "#undef": 3,
+ "SerializeWithCachedSizes": 2,
+ "CodedOutputStream*": 2,
+ "output": 21,
+ "SERIALIZE": 2,
+ "WriteString": 1,
+ "unknown_fields": 7,
+ "SerializeUnknownFields": 1,
+ "uint8*": 4,
+ "SerializeWithCachedSizesToArray": 2,
+ "target": 6,
+ "WriteStringToArray": 1,
+ "SerializeUnknownFieldsToArray": 1,
+ "ByteSize": 2,
+ "total_size": 5,
+ "StringSize": 1,
+ "ComputeUnknownFieldsSize": 1,
+ "GOOGLE_CHECK_NE": 2,
+ "source": 12,
+ "dynamic_cast_if_available": 1,
+ "": 12,
+ "ReflectionOps": 1,
+ "Merge": 1,
+ "from._has_bits_": 1,
+ "from.has_name": 1,
+ "set_name": 7,
+ "from.name": 1,
+ "from.unknown_fields": 1,
+ "CopyFrom": 5,
+ "IsInitialized": 3,
+ "Swap": 2,
+ "other": 17,
+ "swap": 3,
+ "_unknown_fields_.Swap": 1,
+ "Metadata": 3,
+ "GetMetadata": 2,
+ "metadata": 2,
+ "metadata.descriptor": 1,
+ "metadata.reflection": 1,
+ "QSCIPRINTER_H": 2,
+ "#ifdef": 19,
+ "__APPLE__": 4,
+ "extern": 72,
+ "": 1,
+ "": 2,
+ "": 1,
+ "QT_BEGIN_NAMESPACE": 1,
+ "QRect": 2,
+ "QPainter": 2,
+ "QT_END_NAMESPACE": 1,
+ "QsciScintillaBase": 100,
+ "brief": 12,
+ "The": 50,
+ "QsciPrinter": 9,
+ "is": 102,
+ "a": 157,
+ "sub": 2,
+ "of": 215,
+ "the": 541,
+ "Qt": 1,
+ "QPrinter": 3,
+ "that": 36,
+ "able": 2,
+ "to": 254,
+ "print": 5,
+ "text": 5,
+ "Scintilla": 2,
+ "document.": 8,
+ "can": 21,
+ "be": 35,
+ "further": 1,
+ "classed": 1,
+ "alter": 2,
+ "layout": 1,
+ "adding": 2,
+ "headers": 3,
+ "and": 118,
+ "footers": 2,
+ "example.": 1,
+ "QSCINTILLA_EXPORT": 2,
+ "Constructs": 1,
+ "printer": 1,
+ "paint": 1,
+ "device": 7,
+ "with": 33,
+ "mode": 24,
+ "mode.": 4,
+ "PrinterMode": 1,
+ "ScreenResolution": 1,
+ "Destroys": 1,
+ "instance.": 2,
+ "virtual": 10,
+ "Format": 1,
+ "page": 5,
+ "by": 53,
+ "example": 3,
+ "before": 7,
+ "document": 16,
+ "drawn": 2,
+ "on": 55,
+ "it.": 3,
+ "painter": 4,
+ "used": 17,
+ "add": 3,
+ "customised": 2,
+ "graphics.": 2,
+ "drawing": 4,
+ "actually": 1,
+ "being": 4,
+ "rather": 2,
+ "than": 6,
+ "sized.": 1,
+ "methods": 2,
+ "must": 6,
+ "only": 6,
+ "called": 13,
+ "when": 22,
+ "true.": 2,
+ "area": 5,
+ "will": 15,
+ "draw": 1,
+ "text.": 3,
+ "This": 19,
+ "should": 10,
+ "modified": 3,
+ "it": 19,
+ "necessary": 1,
+ "reserve": 1,
+ "space": 2,
+ "any": 23,
+ "or": 44,
+ "By": 1,
+ "relative": 2,
+ "printable": 1,
+ "page.": 13,
+ "Use": 8,
+ "setFullPage": 1,
+ "because": 2,
+ "calling": 9,
+ "printRange": 2,
+ "you": 29,
+ "want": 5,
+ "try": 1,
+ "over": 1,
+ "whole": 2,
+ "pagenr": 2,
+ "number": 52,
+ "first": 13,
+ "numbered": 1,
+ "formatPage": 1,
+ "Return": 3,
+ "points": 2,
+ "each": 7,
+ "font": 2,
+ "printing.": 2,
+ "sa": 30,
+ "setMagnification": 2,
+ "magnification": 3,
+ "mag": 2,
+ "Sets": 24,
+ "printing": 2,
+ "magnification.": 1,
+ "Print": 2,
+ "range": 3,
+ "lines": 3,
+ "instance": 4,
+ "qsb.": 1,
+ "line": 11,
+ "negative": 2,
+ "value": 50,
+ "signifies": 2,
+ "last": 6,
+ "returned": 5,
+ "there": 4,
+ "was": 6,
+ "no": 7,
+ "error.": 1,
+ "*qsb": 1,
+ "wrap": 4,
+ "QsciScintilla": 7,
+ "WrapWord.": 1,
+ "setWrapMode": 2,
+ "WrapMode": 3,
+ "wrapMode": 2,
+ "wmode.": 1,
+ "wmode": 1,
+ "private": 16,
+ "operator": 10,
+ "V8_V8_H_": 3,
+ "GOOGLE3": 2,
+ "DEBUG": 5,
+ "NDEBUG": 4,
+ "#error": 9,
+ "both": 1,
+ "are": 36,
+ "set": 18,
+ "v8": 9,
+ "Deserializer": 1,
+ "V8": 21,
+ "AllStatic": 1,
+ "Initialize": 4,
+ "Deserializer*": 2,
+ "des": 3,
+ "TearDown": 5,
+ "IsRunning": 1,
+ "is_running_": 6,
+ "UseCrankshaft": 1,
+ "use_crankshaft_": 6,
+ "IsDead": 2,
+ "has_fatal_error_": 5,
+ "has_been_disposed_": 6,
+ "SetFatalError": 2,
+ "FatalProcessOutOfMemory": 1,
+ "char*": 24,
+ "location": 6,
+ "take_snapshot": 1,
+ "SetEntropySource": 2,
+ "EntropySource": 3,
+ "SetReturnAddressLocationResolver": 3,
+ "ReturnAddressLocationResolver": 2,
+ "resolver": 3,
+ "Random": 3,
+ "Context*": 4,
+ "context": 8,
+ "RandomPrivate": 2,
+ "Isolate*": 6,
+ "isolate": 15,
+ "Object*": 4,
+ "FillHeapNumberWithRandom": 2,
+ "heap_number": 4,
+ "IdleNotification": 3,
+ "hint": 3,
+ "AddCallCompletedCallback": 2,
+ "CallCompletedCallback": 4,
+ "callback": 7,
+ "RemoveCallCompletedCallback": 2,
+ "FireCallCompletedCallback": 2,
+ "InitializeOncePerProcessImpl": 3,
+ "InitializeOncePerProcess": 4,
+ "has_been_set_up_": 4,
+ "List": 3,
+ "": 3,
+ "call_completed_callbacks_": 16,
+ "enum": 17,
+ "NilValue": 1,
+ "kNullValue": 1,
+ "kUndefinedValue": 1,
+ "EqualityKind": 1,
+ "kStrictEquality": 1,
+ "kNonStrictEquality": 1,
+ "__OG_MATH_INL__": 2,
+ "og": 1,
+ "OG_INLINE": 41,
+ "Math": 41,
+ "Abs": 1,
+ "MASK_SIGNED": 2,
+ "y": 16,
+ "x": 86,
+ "float": 74,
+ "Fabs": 1,
+ "f": 104,
+ "uInt": 1,
+ "*pf": 1,
+ "reinterpret_cast": 8,
+ "": 1,
+ "pf": 1,
+ "fabsf": 1,
+ "Round": 1,
+ "floorf": 2,
+ "Floor": 1,
+ "Ceil": 1,
+ "ceilf": 1,
+ "Ftoi": 1,
+ "@todo": 1,
+ "needs": 4,
+ "testing": 2,
+ "note": 1,
+ "sse": 1,
+ "function": 19,
+ "cvttss2si": 2,
+ "OG_ASM_MSVC": 4,
+ "OG_FTOI_USE_SSE": 2,
+ "SysInfo": 2,
+ "cpu.general.SSE": 2,
+ "__asm": 8,
+ "eax": 5,
+ "mov": 6,
+ "fld": 4,
+ "fistp": 3,
+ "//__asm": 3,
+ "do": 13,
+ "we": 10,
+ "need": 6,
+ "O_o": 3,
+ "#elif": 7,
+ "OG_ASM_GNU": 4,
+ "__asm__": 4,
+ "__volatile__": 4,
+ "use": 37,
+ "c": 72,
+ "cast": 7,
+ "instead": 4,
+ "not": 29,
+ "sure": 6,
+ "why": 3,
+ "id": 4,
+ "did": 3,
+ "": 3,
+ "FtoiFast": 2,
+ "Ftol": 1,
+ "": 1,
+ "Sign": 2,
+ "Fmod": 1,
+ "numerator": 2,
+ "denominator": 2,
+ "fmodf": 1,
+ "Modf": 2,
+ "modff": 2,
+ "Sqrt": 2,
+ "sqrtf": 2,
+ "InvSqrt": 1,
+ "OG_ASSERT": 4,
+ "RSqrt": 1,
+ "g": 2,
+ "*reinterpret_cast": 3,
+ "guess": 1,
+ "f375a86": 1,
+ "": 1,
+ "Newtons": 1,
+ "calculation": 1,
+ "Log": 1,
+ "logf": 3,
+ "Log2": 1,
+ "INV_LN_2": 1,
+ "Log10": 1,
+ "INV_LN_10": 1,
+ "Pow": 1,
+ "exp": 2,
+ "powf": 1,
+ "Exp": 1,
+ "expf": 1,
+ "IsPowerOfTwo": 4,
+ "faster": 3,
+ "two": 2,
+ "known": 1,
+ "check": 4,
+ "moved": 1,
+ "beginning": 1,
+ "HigherPowerOfTwo": 4,
+ "LowerPowerOfTwo": 2,
+ "FloorPowerOfTwo": 1,
+ "CeilPowerOfTwo": 1,
+ "ClosestPowerOfTwo": 1,
+ "high": 5,
+ "low": 5,
+ "Digits": 1,
+ "digits": 6,
+ "step": 3,
+ "Sin": 2,
+ "sinf": 1,
+ "ASin": 1,
+ "<=>": 2,
+ "1": 4,
+ "0f": 2,
+ "HALF_PI": 2,
+ "asinf": 1,
+ "Cos": 2,
+ "cosf": 1,
+ "ACos": 1,
+ "PI": 1,
+ "acosf": 1,
+ "Tan": 1,
+ "tanf": 1,
+ "ATan": 2,
+ "atanf": 1,
+ "f1": 2,
+ "f2": 2,
+ "atan2f": 1,
+ "SinCos": 1,
+ "sometimes": 1,
+ "assembler": 1,
+ "just": 2,
+ "waaayy": 1,
+ "_asm": 1,
+ "fsincos": 1,
+ "ecx": 2,
+ "edx": 2,
+ "fstp": 2,
+ "dword": 2,
+ "asm": 1,
+ "Deg2Rad": 1,
+ "DEG_TO_RAD": 1,
+ "Rad2Deg": 1,
+ "RAD_TO_DEG": 1,
+ "Square": 1,
+ "v": 10,
+ "Cube": 1,
+ "Sec2Ms": 1,
+ "sec": 2,
+ "Ms2Sec": 1,
+ "ms": 2,
+ "Q_OS_LINUX": 2,
+ "": 1,
+ "QT_VERSION": 1,
+ "QT_VERSION_CHECK": 1,
+ "Something": 1,
+ "wrong": 1,
+ "setup.": 1,
+ "Please": 4,
+ "report": 3,
+ "mailing": 1,
+ "list": 3,
+ "main": 2,
+ "argc": 2,
+ "char**": 2,
+ "argv": 2,
+ "envp": 4,
+ "google_breakpad": 1,
+ "ExceptionHandler": 1,
+ "eh": 2,
+ "Utils": 4,
+ "exceptionHandler": 2,
+ "qInstallMsgHandler": 1,
+ "messageHandler": 2,
+ "QApplication": 1,
+ "app": 1,
+ "STATIC_BUILD": 1,
+ "Q_INIT_RESOURCE": 2,
+ "WebKit": 1,
+ "InspectorBackendStub": 1,
+ "app.setWindowIcon": 1,
+ "QIcon": 1,
+ "app.setApplicationName": 1,
+ "app.setOrganizationName": 1,
+ "app.setOrganizationDomain": 1,
+ "app.setApplicationVersion": 1,
+ "PHANTOMJS_VERSION_STRING": 1,
+ "Env": 13,
+ "parse": 3,
+ "Phantom": 1,
+ "phantom": 1,
+ "phantom.execute": 1,
+ "app.exec": 1,
+ "phantom.returnValue": 1,
+ "PY_SSIZE_T_CLEAN": 1,
+ "Py_PYTHON_H": 1,
+ "Python": 1,
+ "needed": 3,
+ "compile": 1,
+ "C": 6,
+ "extensions": 1,
+ "please": 2,
+ "install": 3,
+ "development": 1,
+ "version": 38,
+ "Python.": 1,
+ "": 1,
+ "offsetof": 2,
+ "type": 7,
+ "member": 2,
+ "type*": 1,
+ "WIN32": 2,
+ "MS_WINDOWS": 2,
+ "__stdcall": 2,
+ "__cdecl": 2,
+ "__fastcall": 2,
+ "DL_IMPORT": 2,
+ "t": 15,
+ "DL_EXPORT": 2,
+ "PY_LONG_LONG": 5,
+ "LONG_LONG": 1,
+ "PY_VERSION_HEX": 9,
+ "METH_COEXIST": 1,
+ "PyDict_CheckExact": 1,
+ "Py_TYPE": 4,
+ "PyDict_Type": 1,
+ "PyDict_Contains": 1,
+ "d": 8,
+ "o": 20,
+ "PySequence_Contains": 1,
+ "Py_ssize_t": 17,
+ "PY_SSIZE_T_MAX": 1,
+ "INT_MAX": 1,
+ "PY_SSIZE_T_MIN": 1,
+ "INT_MIN": 1,
+ "PY_FORMAT_SIZE_T": 1,
+ "PyInt_FromSsize_t": 2,
+ "z": 46,
+ "PyInt_FromLong": 13,
+ "PyInt_AsSsize_t": 2,
+ "PyInt_AsLong": 2,
+ "PyNumber_Index": 1,
+ "PyNumber_Int": 1,
+ "PyIndex_Check": 1,
+ "PyNumber_Check": 1,
+ "PyErr_WarnEx": 1,
+ "category": 2,
+ "message": 2,
+ "stacklevel": 1,
+ "PyErr_Warn": 1,
+ "Py_REFCNT": 1,
+ "ob": 6,
+ "PyObject*": 16,
+ "ob_refcnt": 1,
+ "ob_type": 7,
+ "Py_SIZE": 1,
+ "PyVarObject*": 1,
+ "ob_size": 1,
+ "PyVarObject_HEAD_INIT": 1,
+ "PyObject_HEAD_INIT": 1,
+ "PyType_Modified": 1,
+ "*buf": 1,
+ "PyObject": 221,
+ "*obj": 2,
+ "len": 15,
+ "itemsize": 2,
+ "readonly": 3,
+ "ndim": 2,
+ "*format": 1,
+ "*shape": 1,
+ "*strides": 1,
+ "*suboffsets": 1,
+ "*internal": 1,
+ "Py_buffer": 5,
+ "PyBUF_SIMPLE": 1,
+ "PyBUF_WRITABLE": 1,
+ "PyBUF_FORMAT": 1,
+ "PyBUF_ND": 2,
+ "PyBUF_STRIDES": 5,
+ "PyBUF_C_CONTIGUOUS": 3,
+ "PyBUF_F_CONTIGUOUS": 3,
+ "PyBUF_ANY_CONTIGUOUS": 1,
+ "PyBUF_INDIRECT": 1,
+ "PY_MAJOR_VERSION": 10,
+ "__Pyx_BUILTIN_MODULE_NAME": 2,
+ "Py_TPFLAGS_CHECKTYPES": 1,
+ "Py_TPFLAGS_HAVE_INDEX": 1,
+ "Py_TPFLAGS_HAVE_NEWBUFFER": 1,
+ "PyBaseString_Type": 1,
+ "PyUnicode_Type": 2,
+ "PyStringObject": 2,
+ "PyUnicodeObject": 1,
+ "PyString_Type": 2,
+ "PyString_Check": 2,
+ "PyUnicode_Check": 1,
+ "PyString_CheckExact": 2,
+ "PyUnicode_CheckExact": 1,
+ "PyBytesObject": 1,
+ "PyBytes_Type": 1,
+ "PyBytes_Check": 1,
+ "PyBytes_CheckExact": 1,
+ "PyBytes_FromString": 2,
+ "PyString_FromString": 1,
+ "PyBytes_FromStringAndSize": 1,
+ "PyString_FromStringAndSize": 1,
+ "PyBytes_FromFormat": 1,
+ "PyString_FromFormat": 1,
+ "PyBytes_DecodeEscape": 1,
+ "PyString_DecodeEscape": 1,
+ "PyBytes_AsString": 2,
+ "PyString_AsString": 1,
+ "PyBytes_AsStringAndSize": 1,
+ "PyString_AsStringAndSize": 1,
+ "PyBytes_Size": 1,
+ "PyString_Size": 1,
+ "PyBytes_AS_STRING": 1,
+ "PyString_AS_STRING": 1,
+ "PyBytes_GET_SIZE": 1,
+ "PyString_GET_SIZE": 1,
+ "PyBytes_Repr": 1,
+ "PyString_Repr": 1,
+ "PyBytes_Concat": 1,
+ "PyString_Concat": 1,
+ "PyBytes_ConcatAndDel": 1,
+ "PyString_ConcatAndDel": 1,
+ "PySet_Check": 1,
+ "obj": 42,
+ "PyObject_TypeCheck": 3,
+ "PySet_Type": 2,
+ "PyFrozenSet_Check": 1,
+ "PyFrozenSet_Type": 1,
+ "PySet_CheckExact": 2,
+ "__Pyx_TypeCheck": 1,
+ "PyTypeObject": 2,
+ "PyIntObject": 1,
+ "PyLongObject": 2,
+ "PyInt_Type": 1,
+ "PyLong_Type": 1,
+ "PyInt_Check": 1,
+ "PyLong_Check": 1,
+ "PyInt_CheckExact": 1,
+ "PyLong_CheckExact": 1,
+ "PyInt_FromString": 1,
+ "PyLong_FromString": 1,
+ "PyInt_FromUnicode": 1,
+ "PyLong_FromUnicode": 1,
+ "PyLong_FromLong": 1,
+ "PyInt_FromSize_t": 1,
+ "PyLong_FromSize_t": 1,
+ "PyLong_FromSsize_t": 1,
+ "PyLong_AsLong": 1,
+ "PyInt_AS_LONG": 1,
+ "PyLong_AS_LONG": 1,
+ "PyLong_AsSsize_t": 1,
+ "PyInt_AsUnsignedLongMask": 1,
+ "PyLong_AsUnsignedLongMask": 1,
+ "PyInt_AsUnsignedLongLongMask": 1,
+ "PyLong_AsUnsignedLongLongMask": 1,
+ "PyBoolObject": 1,
+ "__Pyx_PyNumber_Divide": 2,
+ "PyNumber_TrueDivide": 1,
+ "__Pyx_PyNumber_InPlaceDivide": 2,
+ "PyNumber_InPlaceTrueDivide": 1,
+ "PyNumber_Divide": 1,
+ "PyNumber_InPlaceDivide": 1,
+ "__Pyx_PySequence_GetSlice": 2,
+ "b": 57,
+ "PySequence_GetSlice": 2,
+ "__Pyx_PySequence_SetSlice": 2,
+ "PySequence_SetSlice": 2,
+ "__Pyx_PySequence_DelSlice": 2,
+ "PySequence_DelSlice": 2,
+ "unlikely": 69,
+ "PyErr_SetString": 4,
+ "PyExc_SystemError": 3,
+ "likely": 15,
+ "tp_as_mapping": 3,
+ "PyErr_Format": 4,
+ "PyExc_TypeError": 5,
+ "tp_name": 4,
+ "PyMethod_New": 2,
+ "func": 3,
+ "self": 5,
+ "klass": 1,
+ "PyInstanceMethod_New": 1,
+ "__Pyx_GetAttrString": 2,
+ "n": 28,
+ "PyObject_GetAttrString": 3,
+ "__Pyx_SetAttrString": 2,
+ "PyObject_SetAttrString": 2,
+ "__Pyx_DelAttrString": 2,
+ "PyObject_DelAttrString": 2,
+ "__Pyx_NAMESTR": 3,
+ "__Pyx_DOCSTR": 3,
+ "__cplusplus": 12,
+ "__PYX_EXTERN_C": 2,
+ "_USE_MATH_DEFINES": 1,
+ "": 1,
+ "__PYX_HAVE_API__wrapper_inner": 1,
+ "": 4,
+ "PYREX_WITHOUT_ASSERTIONS": 1,
+ "CYTHON_WITHOUT_ASSERTIONS": 1,
+ "CYTHON_INLINE": 68,
+ "__GNUC__": 5,
+ "__inline__": 1,
+ "__inline": 1,
+ "__STDC_VERSION__": 2,
+ "L": 1,
+ "CYTHON_UNUSED": 7,
+ "**p": 1,
+ "*s": 1,
+ "encoding": 1,
+ "is_unicode": 1,
+ "is_str": 1,
+ "intern": 1,
+ "__Pyx_StringTabEntry": 1,
+ "__Pyx_PyBytes_FromUString": 1,
+ "__Pyx_PyBytes_AsUString": 1,
+ "unsigned": 22,
+ "__Pyx_PyBool_FromLong": 1,
+ "Py_INCREF": 3,
+ "Py_True": 2,
+ "Py_False": 2,
+ "__Pyx_PyObject_IsTrue": 8,
+ "__Pyx_PyNumber_Int": 1,
+ "__Pyx_PyIndex_AsSsize_t": 1,
+ "__Pyx_PyInt_FromSize_t": 1,
+ "__Pyx_PyInt_AsSize_t": 1,
+ "__pyx_PyFloat_AsDouble": 3,
+ "PyFloat_CheckExact": 1,
+ "PyFloat_AS_DOUBLE": 1,
+ "PyFloat_AsDouble": 1,
+ "__GNUC_MINOR__": 1,
+ "__builtin_expect": 2,
+ "*__pyx_m": 1,
+ "*__pyx_b": 1,
+ "*__pyx_empty_tuple": 1,
+ "*__pyx_empty_bytes": 1,
+ "__pyx_lineno": 80,
+ "__pyx_clineno": 80,
+ "__pyx_cfilenm": 1,
+ "__FILE__": 2,
+ "*__pyx_filename": 1,
+ "CYTHON_CCOMPLEX": 12,
+ "_Complex_I": 3,
+ "": 1,
+ "": 1,
+ "__sun__": 1,
+ "fj": 1,
+ "*__pyx_f": 1,
+ "npy_int8": 1,
+ "__pyx_t_5numpy_int8_t": 1,
+ "npy_int16": 1,
+ "__pyx_t_5numpy_int16_t": 1,
+ "npy_int32": 1,
+ "__pyx_t_5numpy_int32_t": 1,
+ "npy_int64": 1,
+ "__pyx_t_5numpy_int64_t": 1,
+ "npy_uint8": 1,
+ "__pyx_t_5numpy_uint8_t": 1,
+ "npy_uint16": 1,
+ "__pyx_t_5numpy_uint16_t": 1,
+ "npy_uint32": 1,
+ "__pyx_t_5numpy_uint32_t": 1,
+ "npy_uint64": 1,
+ "__pyx_t_5numpy_uint64_t": 1,
+ "npy_float32": 1,
+ "__pyx_t_5numpy_float32_t": 1,
+ "npy_float64": 1,
+ "__pyx_t_5numpy_float64_t": 1,
+ "npy_long": 1,
+ "__pyx_t_5numpy_int_t": 1,
+ "npy_longlong": 1,
+ "__pyx_t_5numpy_long_t": 1,
+ "npy_intp": 10,
+ "__pyx_t_5numpy_intp_t": 1,
+ "npy_uintp": 1,
+ "__pyx_t_5numpy_uintp_t": 1,
+ "npy_ulong": 1,
+ "__pyx_t_5numpy_uint_t": 1,
+ "npy_ulonglong": 1,
+ "__pyx_t_5numpy_ulong_t": 1,
+ "npy_double": 2,
+ "__pyx_t_5numpy_float_t": 1,
+ "__pyx_t_5numpy_double_t": 1,
+ "npy_longdouble": 1,
+ "__pyx_t_5numpy_longdouble_t": 1,
+ "complex": 2,
+ "__pyx_t_float_complex": 27,
+ "_Complex": 2,
+ "real": 4,
+ "imag": 2,
+ "double": 25,
+ "__pyx_t_double_complex": 27,
+ "npy_cfloat": 1,
+ "__pyx_t_5numpy_cfloat_t": 1,
+ "npy_cdouble": 2,
+ "__pyx_t_5numpy_cdouble_t": 1,
+ "npy_clongdouble": 1,
+ "__pyx_t_5numpy_clongdouble_t": 1,
+ "__pyx_t_5numpy_complex_t": 1,
+ "CYTHON_REFNANNY": 3,
+ "__Pyx_RefNannyAPIStruct": 4,
+ "*__Pyx_RefNanny": 1,
+ "__Pyx_RefNannyImportAPI": 1,
+ "*modname": 1,
+ "*m": 1,
+ "*p": 1,
+ "*r": 1,
+ "m": 4,
+ "PyImport_ImportModule": 1,
+ "modname": 1,
+ "end": 23,
+ "p": 6,
+ "PyLong_AsVoidPtr": 1,
+ "Py_XDECREF": 3,
+ "__Pyx_RefNannySetupContext": 13,
+ "*__pyx_refnanny": 1,
+ "__Pyx_RefNanny": 6,
+ "SetupContext": 1,
+ "__LINE__": 84,
+ "__Pyx_RefNannyFinishContext": 12,
+ "FinishContext": 1,
+ "__pyx_refnanny": 5,
+ "__Pyx_INCREF": 36,
+ "INCREF": 1,
+ "__Pyx_DECREF": 66,
+ "DECREF": 1,
+ "__Pyx_GOTREF": 60,
+ "GOTREF": 1,
+ "__Pyx_GIVEREF": 10,
+ "GIVEREF": 1,
+ "__Pyx_XDECREF": 26,
+ "Py_DECREF": 1,
+ "__Pyx_XGIVEREF": 7,
+ "__Pyx_XGOTREF": 1,
+ "__Pyx_TypeTest": 4,
+ "*type": 3,
+ "*__Pyx_GetName": 1,
+ "*dict": 1,
+ "__Pyx_ErrRestore": 1,
+ "*value": 2,
+ "*tb": 2,
+ "__Pyx_ErrFetch": 1,
+ "**type": 1,
+ "**value": 1,
+ "**tb": 1,
+ "__Pyx_Raise": 8,
+ "__Pyx_RaiseNoneNotIterableError": 1,
+ "__Pyx_RaiseNeedMoreValuesError": 1,
+ "index": 2,
+ "__Pyx_RaiseTooManyValuesError": 1,
+ "expected": 1,
+ "__Pyx_UnpackTupleError": 2,
+ "*__Pyx_Import": 1,
+ "*from_list": 1,
+ "__Pyx_Print": 1,
+ "__pyx_print": 1,
+ "__pyx_print_kwargs": 1,
+ "__Pyx_PrintOne": 4,
+ "stream": 6,
+ "*o": 1,
+ "*__Pyx_PyInt_to_py_Py_intptr_t": 1,
+ "Py_intptr_t": 1,
+ "__Pyx_CREAL": 4,
+ ".real": 3,
+ "__Pyx_CIMAG": 4,
+ ".imag": 3,
+ "__real__": 1,
+ "__imag__": 1,
+ "_WIN32": 1,
+ "__Pyx_SET_CREAL": 2,
+ "__Pyx_SET_CIMAG": 2,
+ "__pyx_t_float_complex_from_parts": 1,
+ "__Pyx_c_eqf": 2,
+ "__Pyx_c_sumf": 2,
+ "__Pyx_c_difff": 2,
+ "__Pyx_c_prodf": 2,
+ "__Pyx_c_quotf": 2,
+ "__Pyx_c_negf": 2,
+ "__Pyx_c_is_zerof": 3,
+ "__Pyx_c_conjf": 3,
+ "conj": 3,
+ "__Pyx_c_absf": 3,
+ "abs": 2,
+ "__Pyx_c_powf": 3,
+ "pow": 2,
+ "conjf": 1,
+ "cabsf": 1,
+ "cpowf": 1,
+ "__pyx_t_double_complex_from_parts": 1,
+ "__Pyx_c_eq": 2,
+ "__Pyx_c_sum": 2,
+ "__Pyx_c_diff": 2,
+ "__Pyx_c_prod": 2,
+ "__Pyx_c_quot": 2,
+ "__Pyx_c_neg": 2,
+ "__Pyx_c_is_zero": 3,
+ "__Pyx_c_conj": 3,
+ "__Pyx_c_abs": 3,
+ "__Pyx_c_pow": 3,
+ "cabs": 1,
+ "cpow": 1,
+ "__Pyx_PyInt_AsUnsignedChar": 1,
+ "short": 5,
+ "__Pyx_PyInt_AsUnsignedShort": 1,
+ "__Pyx_PyInt_AsUnsignedInt": 1,
+ "__Pyx_PyInt_AsChar": 1,
+ "__Pyx_PyInt_AsShort": 1,
+ "__Pyx_PyInt_AsInt": 1,
+ "signed": 5,
+ "__Pyx_PyInt_AsSignedChar": 1,
+ "__Pyx_PyInt_AsSignedShort": 1,
+ "__Pyx_PyInt_AsSignedInt": 1,
+ "__Pyx_PyInt_AsLongDouble": 1,
+ "__Pyx_PyInt_AsUnsignedLong": 1,
+ "__Pyx_PyInt_AsUnsignedLongLong": 1,
+ "__Pyx_PyInt_AsLong": 1,
+ "__Pyx_PyInt_AsLongLong": 1,
+ "__Pyx_PyInt_AsSignedLong": 1,
+ "__Pyx_PyInt_AsSignedLongLong": 1,
+ "__Pyx_WriteUnraisable": 3,
+ "__Pyx_ExportFunction": 1,
+ "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2,
+ "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2,
+ "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2,
+ "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2,
+ "*__pyx_f_5numpy__util_dtypestring": 2,
+ "PyArray_Descr": 6,
+ "__pyx_f_5numpy_set_array_base": 1,
+ "PyArrayObject": 19,
+ "*__pyx_f_5numpy_get_array_base": 1,
+ "inner_work_1d": 2,
+ "inner_work_2d": 2,
+ "__Pyx_MODULE_NAME": 1,
+ "__pyx_module_is_main_wrapper_inner": 1,
+ "*__pyx_builtin_ValueError": 1,
+ "*__pyx_builtin_range": 1,
+ "*__pyx_builtin_RuntimeError": 1,
+ "__pyx_k_1": 1,
+ "__pyx_k_2": 1,
+ "__pyx_k_3": 1,
+ "__pyx_k_5": 1,
+ "__pyx_k_7": 1,
+ "__pyx_k_9": 1,
+ "__pyx_k_11": 1,
+ "__pyx_k_12": 1,
+ "__pyx_k_15": 1,
+ "__pyx_k__B": 2,
+ "__pyx_k__H": 2,
+ "__pyx_k__I": 2,
+ "__pyx_k__L": 2,
+ "__pyx_k__O": 2,
+ "__pyx_k__Q": 2,
+ "__pyx_k__b": 2,
+ "__pyx_k__d": 2,
+ "__pyx_k__f": 2,
+ "__pyx_k__g": 2,
+ "__pyx_k__h": 2,
+ "__pyx_k__i": 2,
+ "__pyx_k__l": 2,
+ "__pyx_k__q": 2,
+ "__pyx_k__Zd": 2,
+ "__pyx_k__Zf": 2,
+ "__pyx_k__Zg": 2,
+ "__pyx_k__np": 1,
+ "__pyx_k__buf": 1,
+ "__pyx_k__obj": 1,
+ "__pyx_k__base": 1,
+ "__pyx_k__ndim": 1,
+ "__pyx_k__ones": 1,
+ "__pyx_k__descr": 1,
+ "__pyx_k__names": 1,
+ "__pyx_k__numpy": 1,
+ "__pyx_k__range": 1,
+ "__pyx_k__shape": 1,
+ "__pyx_k__fields": 1,
+ "__pyx_k__format": 1,
+ "__pyx_k__strides": 1,
+ "__pyx_k____main__": 1,
+ "__pyx_k____test__": 1,
+ "__pyx_k__itemsize": 1,
+ "__pyx_k__readonly": 1,
+ "__pyx_k__type_num": 1,
+ "__pyx_k__byteorder": 1,
+ "__pyx_k__ValueError": 1,
+ "__pyx_k__suboffsets": 1,
+ "__pyx_k__work_module": 1,
+ "__pyx_k__RuntimeError": 1,
+ "__pyx_k__pure_py_test": 1,
+ "__pyx_k__wrapper_inner": 1,
+ "__pyx_k__do_awesome_work": 1,
+ "*__pyx_kp_s_1": 1,
+ "*__pyx_kp_u_11": 1,
+ "*__pyx_kp_u_12": 1,
+ "*__pyx_kp_u_15": 1,
+ "*__pyx_kp_s_2": 1,
+ "*__pyx_kp_s_3": 1,
+ "*__pyx_kp_u_5": 1,
+ "*__pyx_kp_u_7": 1,
+ "*__pyx_kp_u_9": 1,
+ "*__pyx_n_s__RuntimeError": 1,
+ "*__pyx_n_s__ValueError": 1,
+ "*__pyx_n_s____main__": 1,
+ "*__pyx_n_s____test__": 1,
+ "*__pyx_n_s__base": 1,
+ "*__pyx_n_s__buf": 1,
+ "*__pyx_n_s__byteorder": 1,
+ "*__pyx_n_s__descr": 1,
+ "*__pyx_n_s__do_awesome_work": 1,
+ "*__pyx_n_s__fields": 1,
+ "*__pyx_n_s__format": 1,
+ "*__pyx_n_s__itemsize": 1,
+ "*__pyx_n_s__names": 1,
+ "*__pyx_n_s__ndim": 1,
+ "*__pyx_n_s__np": 1,
+ "*__pyx_n_s__numpy": 1,
+ "*__pyx_n_s__obj": 1,
+ "*__pyx_n_s__ones": 1,
+ "*__pyx_n_s__pure_py_test": 1,
+ "*__pyx_n_s__range": 1,
+ "*__pyx_n_s__readonly": 1,
+ "*__pyx_n_s__shape": 1,
+ "*__pyx_n_s__strides": 1,
+ "*__pyx_n_s__suboffsets": 1,
+ "*__pyx_n_s__type_num": 1,
+ "*__pyx_n_s__work_module": 1,
+ "*__pyx_n_s__wrapper_inner": 1,
+ "*__pyx_int_5": 1,
+ "*__pyx_int_15": 1,
+ "*__pyx_k_tuple_4": 1,
+ "*__pyx_k_tuple_6": 1,
+ "*__pyx_k_tuple_8": 1,
+ "*__pyx_k_tuple_10": 1,
+ "*__pyx_k_tuple_13": 1,
+ "*__pyx_k_tuple_14": 1,
+ "*__pyx_k_tuple_16": 1,
+ "__pyx_v_num_x": 4,
+ "*__pyx_v_data_ptr": 2,
+ "*__pyx_v_answer_ptr": 2,
+ "__pyx_v_nd": 6,
+ "*__pyx_v_dims": 2,
+ "__pyx_v_typenum": 6,
+ "*__pyx_v_data_np": 2,
+ "__pyx_v_sum": 6,
+ "__pyx_t_1": 154,
+ "*__pyx_t_2": 4,
+ "*__pyx_t_3": 4,
+ "*__pyx_t_4": 3,
+ "__pyx_t_5": 75,
+ "__pyx_kp_s_1": 1,
+ "__pyx_filename": 79,
+ "__pyx_f": 79,
+ "__pyx_L1_error": 88,
+ "__pyx_v_dims": 4,
+ "NPY_DOUBLE": 3,
+ "__pyx_t_2": 120,
+ "PyArray_SimpleNewFromData": 2,
+ "__pyx_v_data_ptr": 2,
+ "Py_None": 38,
+ "__pyx_ptype_5numpy_ndarray": 2,
+ "__pyx_v_data_np": 10,
+ "__Pyx_GetName": 4,
+ "__pyx_m": 4,
+ "__pyx_n_s__work_module": 3,
+ "__pyx_t_3": 113,
+ "PyObject_GetAttr": 4,
+ "__pyx_n_s__do_awesome_work": 3,
+ "PyTuple_New": 4,
+ "PyTuple_SET_ITEM": 4,
+ "__pyx_t_4": 35,
+ "PyObject_Call": 11,
+ "PyErr_Occurred": 2,
+ "__pyx_v_answer_ptr": 2,
+ "__pyx_L0": 24,
+ "__pyx_v_num_y": 2,
+ "__pyx_kp_s_2": 1,
+ "*__pyx_pf_13wrapper_inner_pure_py_test": 2,
+ "*__pyx_self": 2,
+ "*unused": 2,
+ "PyMethodDef": 1,
+ "__pyx_mdef_13wrapper_inner_pure_py_test": 1,
+ "PyCFunction": 1,
+ "__pyx_pf_13wrapper_inner_pure_py_test": 1,
+ "METH_NOARGS": 1,
+ "*__pyx_v_data": 1,
+ "*__pyx_r": 7,
+ "*__pyx_t_1": 8,
+ "__pyx_self": 2,
+ "__pyx_v_data": 7,
+ "__pyx_kp_s_3": 1,
+ "__pyx_n_s__np": 1,
+ "__pyx_n_s__ones": 1,
+ "__pyx_k_tuple_4": 1,
+ "__pyx_r": 39,
+ "__Pyx_AddTraceback": 7,
+ "__pyx_pf_5numpy_7ndarray___getbuffer__": 2,
+ "*__pyx_v_self": 4,
+ "*__pyx_v_info": 4,
+ "__pyx_v_flags": 4,
+ "__pyx_v_copy_shape": 5,
+ "__pyx_v_i": 6,
+ "__pyx_v_ndim": 6,
+ "__pyx_v_endian_detector": 6,
+ "__pyx_v_little_endian": 8,
+ "__pyx_v_t": 29,
+ "*__pyx_v_f": 2,
+ "*__pyx_v_descr": 2,
+ "__pyx_v_offset": 9,
+ "__pyx_v_hasfields": 4,
+ "__pyx_t_6": 40,
+ "__pyx_t_7": 9,
+ "*__pyx_t_8": 1,
+ "*__pyx_t_9": 1,
+ "__pyx_v_info": 33,
+ "__pyx_v_self": 16,
+ "PyArray_NDIM": 1,
+ "__pyx_L5": 6,
+ "PyArray_CHKFLAGS": 2,
+ "NPY_C_CONTIGUOUS": 1,
+ "__pyx_builtin_ValueError": 5,
+ "__pyx_k_tuple_6": 1,
+ "__pyx_L6": 6,
+ "NPY_F_CONTIGUOUS": 1,
+ "__pyx_k_tuple_8": 1,
+ "__pyx_L7": 2,
+ "buf": 14,
+ "PyArray_DATA": 1,
+ "strides": 5,
+ "malloc": 2,
+ "shape": 3,
+ "PyArray_STRIDES": 2,
+ "PyArray_DIMS": 2,
+ "__pyx_L8": 2,
+ "suboffsets": 1,
+ "PyArray_ITEMSIZE": 1,
+ "PyArray_ISWRITEABLE": 1,
+ "__pyx_v_f": 31,
+ "descr": 2,
+ "__pyx_v_descr": 10,
+ "PyDataType_HASFIELDS": 2,
+ "__pyx_L11": 7,
+ "type_num": 2,
+ "byteorder": 4,
+ "__pyx_k_tuple_10": 1,
+ "__pyx_L13": 2,
+ "NPY_BYTE": 2,
+ "__pyx_L14": 18,
+ "NPY_UBYTE": 2,
+ "NPY_SHORT": 2,
+ "NPY_USHORT": 2,
+ "NPY_INT": 2,
+ "NPY_UINT": 2,
+ "NPY_LONG": 1,
+ "NPY_ULONG": 1,
+ "NPY_LONGLONG": 1,
+ "NPY_ULONGLONG": 1,
+ "NPY_FLOAT": 1,
+ "NPY_LONGDOUBLE": 1,
+ "NPY_CFLOAT": 1,
+ "NPY_CDOUBLE": 1,
+ "NPY_CLONGDOUBLE": 1,
+ "NPY_OBJECT": 1,
+ "__pyx_t_8": 16,
+ "PyNumber_Remainder": 1,
+ "__pyx_kp_u_11": 1,
+ "format": 6,
+ "__pyx_L12": 2,
+ "__pyx_t_9": 7,
+ "__pyx_f_5numpy__util_dtypestring": 1,
+ "__pyx_L2": 2,
+ "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2,
+ "PyArray_HASFIELDS": 1,
+ "free": 4,
+ "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1,
+ "*__pyx_v_a": 5,
+ "PyArray_MultiIterNew": 5,
+ "__pyx_v_a": 5,
+ "*__pyx_v_b": 4,
+ "__pyx_v_b": 4,
+ "*__pyx_v_c": 3,
+ "__pyx_v_c": 3,
+ "*__pyx_v_d": 2,
+ "__pyx_v_d": 2,
+ "*__pyx_v_e": 1,
+ "__pyx_v_e": 1,
+ "*__pyx_v_end": 1,
+ "*__pyx_v_offset": 1,
+ "*__pyx_v_child": 1,
+ "*__pyx_v_fields": 1,
+ "*__pyx_v_childname": 1,
+ "*__pyx_v_new_offset": 1,
+ "*__pyx_v_t": 1,
+ "*__pyx_t_5": 1,
+ "__pyx_t_10": 7,
+ "*__pyx_t_11": 1,
+ "__pyx_v_child": 8,
+ "__pyx_v_fields": 7,
+ "__pyx_v_childname": 4,
+ "__pyx_v_new_offset": 5,
+ "names": 3,
+ "PyTuple_GET_SIZE": 2,
+ "PyTuple_GET_ITEM": 3,
+ "PyObject_GetItem": 1,
+ "fields": 4,
+ "PyTuple_CheckExact": 1,
+ "tuple": 3,
+ "__pyx_ptype_5numpy_dtype": 1,
+ "__pyx_v_end": 2,
+ "PyNumber_Subtract": 2,
+ "PyObject_RichCompare": 8,
+ "__pyx_int_15": 1,
+ "Py_LT": 2,
+ "__pyx_builtin_RuntimeError": 2,
+ "__pyx_k_tuple_13": 1,
+ "__pyx_k_tuple_14": 1,
+ "elsize": 1,
+ "__pyx_k_tuple_16": 1,
+ "__pyx_L10": 2,
+ "Py_EQ": 6,
+ "QSCICOMMAND_H": 2,
+ "": 1,
+ "": 1,
+ "QsciCommand": 7,
+ "represents": 1,
+ "an": 23,
+ "editor": 1,
+ "command": 9,
+ "may": 9,
+ "have": 4,
+ "one": 73,
+ "keys": 3,
+ "bound": 4,
+ "Methods": 1,
+ "provided": 1,
+ "change": 3,
+ "remove": 2,
+ "key": 23,
+ "binding.": 1,
+ "Each": 1,
+ "has": 29,
+ "user": 3,
+ "friendly": 2,
+ "description": 3,
+ "in": 165,
+ "mapping": 3,
+ "dialogs.": 1,
+ "defines": 3,
+ "different": 5,
+ "commands": 1,
+ "assigned": 1,
+ "key.": 1,
+ "Command": 4,
+ "Move": 26,
+ "down": 12,
+ "line.": 33,
+ "LineDown": 1,
+ "SCI_LINEDOWN": 1,
+ "Extend": 33,
+ "selection": 39,
+ "LineDownExtend": 1,
+ "SCI_LINEDOWNEXTEND": 1,
+ "rectangular": 9,
+ "LineDownRectExtend": 1,
+ "SCI_LINEDOWNRECTEXTEND": 1,
+ "Scroll": 5,
+ "view": 2,
+ "LineScrollDown": 1,
+ "SCI_LINESCROLLDOWN": 1,
+ "up": 18,
+ "LineUp": 1,
+ "SCI_LINEUP": 1,
+ "LineUpExtend": 1,
+ "SCI_LINEUPEXTEND": 1,
+ "LineUpRectExtend": 1,
+ "SCI_LINEUPRECTEXTEND": 1,
+ "LineScrollUp": 1,
+ "SCI_LINESCROLLUP": 1,
+ "start": 12,
+ "ScrollToStart": 1,
+ "SCI_SCROLLTOSTART": 1,
+ "ScrollToEnd": 1,
+ "SCI_SCROLLTOEND": 1,
+ "vertically": 1,
+ "centre": 1,
+ "current": 26,
+ "VerticalCentreCaret": 1,
+ "SCI_VERTICALCENTRECARET": 1,
+ "paragraph.": 4,
+ "ParaDown": 1,
+ "SCI_PARADOWN": 1,
+ "ParaDownExtend": 1,
+ "SCI_PARADOWNEXTEND": 1,
+ "ParaUp": 1,
+ "SCI_PARAUP": 1,
+ "ParaUpExtend": 1,
+ "SCI_PARAUPEXTEND": 1,
+ "left": 7,
+ "character.": 9,
+ "CharLeft": 1,
+ "SCI_CHARLEFT": 1,
+ "CharLeftExtend": 1,
+ "SCI_CHARLEFTEXTEND": 1,
+ "CharLeftRectExtend": 1,
+ "SCI_CHARLEFTRECTEXTEND": 1,
+ "right": 9,
+ "CharRight": 1,
+ "SCI_CHARRIGHT": 1,
+ "CharRightExtend": 1,
+ "SCI_CHARRIGHTEXTEND": 1,
+ "CharRightRectExtend": 1,
+ "SCI_CHARRIGHTRECTEXTEND": 1,
+ "word.": 9,
+ "WordLeft": 1,
+ "SCI_WORDLEFT": 1,
+ "WordLeftExtend": 1,
+ "SCI_WORDLEFTEXTEND": 1,
+ "WordRight": 1,
+ "SCI_WORDRIGHT": 1,
+ "WordRightExtend": 1,
+ "SCI_WORDRIGHTEXTEND": 1,
+ "previous": 6,
+ "WordLeftEnd": 1,
+ "SCI_WORDLEFTEND": 1,
+ "WordLeftEndExtend": 1,
+ "SCI_WORDLEFTENDEXTEND": 1,
+ "next": 9,
+ "WordRightEnd": 1,
+ "SCI_WORDRIGHTEND": 1,
+ "WordRightEndExtend": 1,
+ "SCI_WORDRIGHTENDEXTEND": 1,
+ "word": 7,
+ "part.": 4,
+ "WordPartLeft": 1,
+ "SCI_WORDPARTLEFT": 1,
+ "WordPartLeftExtend": 1,
+ "SCI_WORDPARTLEFTEXTEND": 1,
+ "WordPartRight": 1,
+ "SCI_WORDPARTRIGHT": 1,
+ "WordPartRightExtend": 1,
+ "SCI_WORDPARTRIGHTEXTEND": 1,
+ "Home": 1,
+ "SCI_HOME": 1,
+ "HomeExtend": 1,
+ "SCI_HOMEEXTEND": 1,
+ "HomeRectExtend": 1,
+ "SCI_HOMERECTEXTEND": 1,
+ "displayed": 10,
+ "HomeDisplay": 1,
+ "SCI_HOMEDISPLAY": 1,
+ "HomeDisplayExtend": 1,
+ "SCI_HOMEDISPLAYEXTEND": 1,
+ "HomeWrap": 1,
+ "SCI_HOMEWRAP": 1,
+ "HomeWrapExtend": 1,
+ "SCI_HOMEWRAPEXTEND": 1,
+ "visible": 6,
+ "character": 10,
+ "VCHome": 1,
+ "SCI_VCHOME": 1,
+ "VCHomeExtend": 1,
+ "SCI_VCHOMEEXTEND": 1,
+ "VCHomeRectExtend": 1,
+ "SCI_VCHOMERECTEXTEND": 1,
+ "VCHomeWrap": 1,
+ "SCI_VCHOMEWRAP": 1,
+ "VCHomeWrapExtend": 1,
+ "SCI_VCHOMEWRAPEXTEND": 1,
+ "LineEnd": 1,
+ "SCI_LINEEND": 1,
+ "LineEndExtend": 1,
+ "SCI_LINEENDEXTEND": 1,
+ "LineEndRectExtend": 1,
+ "SCI_LINEENDRECTEXTEND": 1,
+ "LineEndDisplay": 1,
+ "SCI_LINEENDDISPLAY": 1,
+ "LineEndDisplayExtend": 1,
+ "SCI_LINEENDDISPLAYEXTEND": 1,
+ "LineEndWrap": 1,
+ "SCI_LINEENDWRAP": 1,
+ "LineEndWrapExtend": 1,
+ "SCI_LINEENDWRAPEXTEND": 1,
+ "DocumentStart": 1,
+ "SCI_DOCUMENTSTART": 1,
+ "DocumentStartExtend": 1,
+ "SCI_DOCUMENTSTARTEXTEND": 1,
+ "DocumentEnd": 1,
+ "SCI_DOCUMENTEND": 1,
+ "DocumentEndExtend": 1,
+ "SCI_DOCUMENTENDEXTEND": 1,
+ "PageUp": 1,
+ "SCI_PAGEUP": 1,
+ "PageUpExtend": 1,
+ "SCI_PAGEUPEXTEND": 1,
+ "PageUpRectExtend": 1,
+ "SCI_PAGEUPRECTEXTEND": 1,
+ "PageDown": 1,
+ "SCI_PAGEDOWN": 1,
+ "PageDownExtend": 1,
+ "SCI_PAGEDOWNEXTEND": 1,
+ "PageDownRectExtend": 1,
+ "SCI_PAGEDOWNRECTEXTEND": 1,
+ "Stuttered": 4,
+ "move": 2,
+ "StutteredPageUp": 1,
+ "SCI_STUTTEREDPAGEUP": 1,
+ "extend": 2,
+ "StutteredPageUpExtend": 1,
+ "SCI_STUTTEREDPAGEUPEXTEND": 1,
+ "StutteredPageDown": 1,
+ "SCI_STUTTEREDPAGEDOWN": 1,
+ "StutteredPageDownExtend": 1,
+ "SCI_STUTTEREDPAGEDOWNEXTEND": 1,
+ "Delete": 10,
+ "SCI_CLEAR": 1,
+ "DeleteBack": 1,
+ "SCI_DELETEBACK": 1,
+ "at": 20,
+ "DeleteBackNotLine": 1,
+ "SCI_DELETEBACKNOTLINE": 1,
+ "left.": 2,
+ "DeleteWordLeft": 1,
+ "SCI_DELWORDLEFT": 1,
+ "right.": 2,
+ "DeleteWordRight": 1,
+ "SCI_DELWORDRIGHT": 1,
+ "DeleteWordRightEnd": 1,
+ "SCI_DELWORDRIGHTEND": 1,
+ "DeleteLineLeft": 1,
+ "SCI_DELLINELEFT": 1,
+ "DeleteLineRight": 1,
+ "SCI_DELLINERIGHT": 1,
+ "LineDelete": 1,
+ "SCI_LINEDELETE": 1,
+ "Cut": 2,
+ "clipboard.": 5,
+ "LineCut": 1,
+ "SCI_LINECUT": 1,
+ "Copy": 2,
+ "LineCopy": 1,
+ "SCI_LINECOPY": 1,
+ "Transpose": 1,
+ "lines.": 1,
+ "LineTranspose": 1,
+ "SCI_LINETRANSPOSE": 1,
+ "Duplicate": 2,
+ "LineDuplicate": 1,
+ "SCI_LINEDUPLICATE": 1,
+ "Select": 49,
+ "SelectAll": 1,
+ "SCI_SELECTALL": 1,
+ "selected": 13,
+ "MoveSelectedLinesUp": 1,
+ "SCI_MOVESELECTEDLINESUP": 1,
+ "MoveSelectedLinesDown": 1,
+ "SCI_MOVESELECTEDLINESDOWN": 1,
+ "selection.": 1,
+ "SelectionDuplicate": 1,
+ "SCI_SELECTIONDUPLICATE": 1,
+ "Convert": 2,
+ "lower": 1,
+ "case.": 2,
+ "SelectionLowerCase": 1,
+ "SCI_LOWERCASE": 1,
+ "upper": 1,
+ "SelectionUpperCase": 1,
+ "SCI_UPPERCASE": 1,
+ "SelectionCut": 1,
+ "SCI_CUT": 1,
+ "SelectionCopy": 1,
+ "SCI_COPY": 1,
+ "Paste": 2,
+ "SCI_PASTE": 1,
+ "Toggle": 1,
+ "insert/overtype.": 1,
+ "EditToggleOvertype": 1,
+ "SCI_EDITTOGGLEOVERTYPE": 1,
+ "Insert": 2,
+ "platform": 2,
+ "dependent": 1,
+ "newline.": 1,
+ "Newline": 1,
+ "SCI_NEWLINE": 1,
+ "formfeed.": 1,
+ "Formfeed": 1,
+ "SCI_FORMFEED": 1,
+ "Indent": 1,
+ "level.": 3,
+ "Tab": 1,
+ "SCI_TAB": 1,
+ "De": 1,
+ "indent": 1,
+ "Backtab": 1,
+ "SCI_BACKTAB": 1,
+ "Cancel": 2,
+ "operation.": 2,
+ "SCI_CANCEL": 1,
+ "Undo": 2,
+ "command.": 5,
+ "SCI_UNDO": 1,
+ "Redo": 2,
+ "SCI_REDO": 1,
+ "Zoom": 2,
+ "in.": 1,
+ "ZoomIn": 1,
+ "SCI_ZOOMIN": 1,
+ "out.": 1,
+ "ZoomOut": 1,
+ "SCI_ZOOMOUT": 1,
+ "executed": 1,
+ "scicmd": 2,
+ "Execute": 1,
+ "execute": 3,
+ "Binds": 2,
+ "If": 11,
+ "then": 15,
+ "binding": 3,
+ "removed.": 2,
+ "invalid": 5,
+ "unchanged.": 1,
+ "Valid": 1,
+ "control": 17,
+ "Key_Down": 1,
+ "Key_Up": 1,
+ "Key_Left": 1,
+ "Key_Right": 1,
+ "Key_Home": 1,
+ "Key_End": 1,
+ "Key_PageUp": 1,
+ "Key_PageDown": 1,
+ "Key_Delete": 1,
+ "Key_Insert": 1,
+ "Key_Escape": 1,
+ "Key_Backspace": 1,
+ "Key_Tab": 1,
+ "Key_Return.": 1,
+ "Keys": 1,
+ "combination": 2,
+ "SHIFT": 1,
+ "CTRL": 1,
+ "ALT": 1,
+ "META.": 1,
+ "setAlternateKey": 3,
+ "validKey": 3,
+ "setKey": 3,
+ "alternate": 7,
+ "altkey": 3,
+ "alternateKey": 3,
+ "currently": 12,
+ "returned.": 4,
+ "qkey": 2,
+ "qaltkey": 2,
+ "valid": 2,
+ "QString": 20,
+ "friend": 10,
+ "QsciCommandSet": 1,
+ "*qs": 1,
+ "cmd": 1,
+ "*desc": 1,
+ "bindKey": 1,
+ "qk": 1,
+ "scik": 1,
+ "*qsCmd": 1,
+ "scikey": 1,
+ "scialtkey": 1,
+ "*descCmd": 1,
+ "Gui": 1,
+ "LIBCANIH": 2,
+ "": 2,
+ "": 2,
+ "": 1,
+ "": 1,
+ "int64": 1,
+ "//#define": 1,
+ "dout": 2,
+ "cout": 2,
+ "cerr": 1,
+ "using": 11,
+ "libcanister": 2,
+ "//the": 8,
+ "canmem": 22,
+ "object": 3,
+ "generic": 1,
+ "memory": 14,
+ "container": 2,
+ "commonly": 1,
+ "//throughout": 1,
+ "canister": 14,
+ "framework": 1,
+ "hold": 1,
+ "uncertain": 1,
+ "//length": 1,
+ "which": 14,
+ "contain": 1,
+ "null": 3,
+ "bytes.": 1,
+ "data": 26,
+ "raw": 2,
+ "absolute": 1,
+ "length": 10,
+ "//creates": 3,
+ "unallocated": 1,
+ "allocsize": 1,
+ "allocated": 2,
+ "blank": 1,
+ "strdata": 1,
+ "//automates": 1,
+ "creation": 1,
+ "zero": 5,
+ "limited": 2,
+ "canmems": 1,
+ "//cleans": 1,
+ "zeromem": 1,
+ "//overwrites": 2,
+ "fragmem": 1,
+ "fragment": 2,
+ "notation": 1,
+ "countlen": 1,
+ "//counts": 1,
+ "strings": 1,
+ "stores": 3,
+ "trim": 2,
+ "//removes": 1,
+ "nulls": 1,
+ "//returns": 2,
+ "singleton": 2,
+ "//contains": 2,
+ "information": 3,
+ "about": 6,
+ "caninfo": 2,
+ "path": 8,
+ "//physical": 1,
+ "internalname": 1,
+ "//a": 1,
+ "numfiles": 1,
+ "files": 6,
+ "//necessary": 1,
+ "as": 28,
+ "canfile": 7,
+ "//this": 1,
+ "holds": 2,
+ "definition": 3,
+ "within": 4,
+ "//canister": 1,
+ "canister*": 1,
+ "parent": 1,
+ "//internal": 1,
+ "//use": 1,
+ "their": 6,
+ "own.": 1,
+ "newline": 2,
+ "delimited": 2,
+ "container.": 1,
+ "TOC": 1,
+ "info": 2,
+ "general": 1,
+ "canfiles": 1,
+ "recommended": 1,
+ "programs": 4,
+ "modify": 1,
+ "//these": 1,
+ "directly": 2,
+ "but": 5,
+ "enforced.": 1,
+ "canfile*": 1,
+ "//if": 1,
+ "write": 8,
+ "routines": 1,
+ "anything": 1,
+ "//maximum": 1,
+ "given": 16,
+ "//time": 1,
+ "whatever": 1,
+ "suits": 1,
+ "your": 12,
+ "application.": 1,
+ "cachemax": 2,
+ "cachecnt": 1,
+ "//number": 1,
+ "cache": 2,
+ "//both": 1,
+ "initialize": 1,
+ "physical": 4,
+ "fspath": 3,
+ "//destroys": 1,
+ "after": 18,
+ "flushing": 1,
+ "modded": 1,
+ "buffers": 3,
+ "course": 2,
+ "//open": 1,
+ "//does": 1,
+ "exist": 2,
+ "open": 6,
+ "//close": 1,
+ "flush": 1,
+ "all": 11,
+ "clean": 2,
+ "//deletes": 1,
+ "inside": 1,
+ "delFile": 1,
+ "//pulls": 1,
+ "contents": 3,
+ "disk": 2,
+ "returns": 4,
+ "getFile": 1,
+ "does": 4,
+ "otherwise": 1,
+ "overwrites": 1,
+ "whether": 4,
+ "succeeded": 2,
+ "writeFile": 2,
+ "//get": 1,
+ "containing": 2,
+ "//list": 1,
+ "paths": 1,
+ "getTOC": 1,
+ "//brings": 1,
+ "back": 1,
+ "limit": 1,
+ "//important": 1,
+ "sCFID": 2,
+ "safe": 4,
+ "CFID": 2,
+ "avoid": 1,
+ "uncaching": 1,
+ "//really": 1,
+ "internally": 1,
+ "harm.": 1,
+ "cacheclean": 1,
+ "dFlush": 1,
+ "Scanner": 16,
+ "UnicodeCache*": 4,
+ "unicode_cache": 3,
+ "unicode_cache_": 10,
+ "octal_pos_": 5,
+ "Location": 14,
+ "harmony_scoping_": 4,
+ "harmony_modules_": 4,
+ "Utf16CharacterStream*": 3,
+ "source_": 7,
+ "Init": 3,
+ "has_line_terminator_before_next_": 9,
+ "SkipWhiteSpace": 4,
+ "Scan": 5,
+ "uc32": 19,
+ "ScanHexNumber": 2,
+ "expected_length": 4,
+ "ASSERT": 17,
+ "prevent": 4,
+ "overflow": 1,
+ "c0_": 64,
+ "HexValue": 2,
+ "PushBack": 8,
+ "Advance": 44,
+ "STATIC_ASSERT": 5,
+ "Token": 212,
+ "NUM_TOKENS": 1,
+ "byte": 6,
+ "one_char_tokens": 2,
+ "ILLEGAL": 120,
+ "LPAREN": 2,
+ "RPAREN": 2,
+ "COMMA": 2,
+ "COLON": 2,
+ "SEMICOLON": 2,
+ "CONDITIONAL": 2,
+ "LBRACK": 2,
+ "RBRACK": 2,
+ "LBRACE": 2,
+ "RBRACE": 2,
+ "BIT_NOT": 2,
+ "e": 15,
+ "Value": 24,
+ "Next": 3,
+ "current_": 2,
+ "has_multiline_comment_before_next_": 5,
+ "": 19,
+ "token": 64,
+ "": 1,
+ "pos": 12,
+ "source_pos": 10,
+ "next_.token": 3,
+ "next_.location.beg_pos": 3,
+ "next_.location.end_pos": 4,
+ "current_.token": 4,
+ "IsByteOrderMark": 2,
+ "xFEFF": 1,
+ "xFFFE": 1,
+ "start_position": 2,
+ "IsWhiteSpace": 2,
+ "IsLineTerminator": 6,
+ "SkipSingleLineComment": 6,
+ "continue": 2,
+ "undo": 4,
+ "WHITESPACE": 6,
+ "SkipMultiLineComment": 3,
+ "ch": 5,
+ "ScanHtmlComment": 3,
+ "LT": 2,
+ "next_.literal_chars": 13,
+ "ScanString": 3,
+ "LTE": 1,
+ "ASSIGN_SHL": 1,
+ "SHL": 1,
+ "GTE": 1,
+ "ASSIGN_SAR": 1,
+ "ASSIGN_SHR": 1,
+ "SHR": 1,
+ "SAR": 1,
+ "GT": 1,
+ "EQ_STRICT": 1,
+ "EQ": 1,
+ "ASSIGN": 1,
+ "NE_STRICT": 1,
+ "NE": 1,
+ "NOT": 3,
+ "INC": 1,
+ "ASSIGN_ADD": 1,
+ "ADD": 1,
+ "DEC": 1,
+ "ASSIGN_SUB": 1,
+ "SUB": 1,
+ "ASSIGN_MUL": 1,
+ "MUL": 1,
+ "ASSIGN_MOD": 1,
+ "MOD": 1,
+ "ASSIGN_DIV": 1,
+ "DIV": 1,
+ "AND": 1,
+ "ASSIGN_BIT_AND": 1,
+ "BIT_AND": 1,
+ "OR": 1,
+ "ASSIGN_BIT_OR": 1,
+ "BIT_OR": 1,
+ "ASSIGN_BIT_XOR": 1,
+ "BIT_XOR": 1,
+ "IsDecimalDigit": 2,
+ "ScanNumber": 3,
+ "PERIOD": 1,
+ "IsIdentifierStart": 2,
+ "ScanIdentifierOrKeyword": 2,
+ "EOS": 1,
+ "SeekForward": 4,
+ "current_pos": 4,
+ "ASSERT_EQ": 1,
+ "ScanEscape": 2,
+ "IsCarriageReturn": 2,
+ "IsLineFeed": 2,
+ "fall": 2,
+ "through": 4,
+ "u": 9,
+ "xx": 2,
+ "xxx": 1,
+ "immediately": 1,
+ "octal": 1,
+ "escape": 1,
+ "quote": 3,
+ "consume": 2,
+ "LiteralScope": 4,
+ "literal": 2,
+ ".": 16,
+ "X": 2,
+ "E": 3,
+ "l": 1,
+ "w": 1,
+ "keyword": 1,
+ "Unescaped": 1,
+ "in_character_class": 2,
+ "AddLiteralCharAdvance": 3,
+ "literal.Complete": 2,
+ "ScanLiteralUnicodeEscape": 3,
+ "": 4,
+ "DEFAULT_DELIMITER": 1,
+ "CsvStreamer": 5,
+ "ofstream": 1,
+ "File": 1,
+ "vector": 16,
+ "row_buffer": 1,
+ "Buffer": 10,
+ "row": 12,
+ "flushed/written": 1,
+ "Number": 8,
+ "columns": 2,
+ "rows": 3,
+ "records": 2,
+ "including": 2,
+ "header": 7,
+ "delimiter": 2,
+ "Delimiter": 1,
+ "comma": 2,
+ "sanitize": 1,
+ "Returns": 2,
+ "ready": 1,
+ "into": 6,
+ "Empty": 1,
+ "CSV": 4,
+ "streamer...": 1,
+ "writing": 2,
+ "Same": 1,
+ "...": 1,
+ "Opens": 3,
+ "path/name": 3,
+ "Ensures": 1,
+ "closed": 1,
+ "saved": 1,
+ "delimiting": 1,
+ "add_field": 1,
+ "still": 3,
+ "adds": 1,
+ "field": 5,
+ "save_fields": 1,
+ "Call": 2,
+ "save": 1,
+ "writes": 2,
+ "append": 8,
+ "Appends": 5,
+ "quoted": 1,
+ "leading/trailing": 1,
+ "spaces": 3,
+ "trimmed": 1,
+ "Like": 1,
+ "specify": 1,
+ "either": 4,
+ "keep": 1,
+ "writeln": 1,
+ "Flushes": 1,
+ "what": 2,
+ "buffer": 9,
+ "Saves": 1,
+ "closes": 1,
+ "field_count": 1,
+ "Gets": 2,
+ "row_count": 1,
+ "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3,
+ "GOOGLE_PROTOBUF_VERSION": 1,
+ "generated": 2,
+ "newer": 2,
+ "protoc": 2,
+ "incompatible": 2,
+ "Protocol": 2,
+ "headers.": 3,
+ "update": 1,
+ "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1,
+ "older": 1,
+ "regenerate": 1,
+ "protoc.": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "*this": 1,
+ "UnknownFieldSet": 2,
+ "UnknownFieldSet*": 1,
+ "GetCachedSize": 1,
+ "clear_name": 2,
+ "release_name": 2,
+ "set_allocated_name": 2,
+ "set_has_name": 7,
+ "clear_has_name": 5,
+ "mutable": 1,
+ "*name_": 1,
+ "assign": 3,
+ "temp": 2,
+ "SWIG": 2,
+ "V8_DECLARE_ONCE": 1,
+ "init_once": 2,
+ "LazyMutex": 1,
+ "entropy_mutex": 1,
+ "LAZY_MUTEX_INITIALIZER": 1,
+ "entropy_source": 4,
+ "FlagList": 1,
+ "EnforceFlagImplications": 1,
+ "Isolate": 9,
+ "CurrentPerIsolateThreadData": 4,
+ "EnterDefaultIsolate": 1,
+ "thread_id": 1,
+ ".Equals": 1,
+ "ThreadId": 1,
+ "Current": 5,
+ "IsDefaultIsolate": 1,
+ "ElementsAccessor": 2,
+ "LOperand": 2,
+ "TearDownCaches": 1,
+ "RegisteredExtension": 1,
+ "UnregisterAll": 1,
+ "OS": 3,
+ "seed_random": 2,
+ "uint32_t*": 7,
+ "FLAG_random_seed": 2,
+ "val": 3,
+ "ScopedLock": 1,
+ "entropy_mutex.Pointer": 1,
+ "random": 1,
+ "random_base": 3,
+ "xFFFF": 2,
+ "FFFF": 1,
+ "StackFrame": 1,
+ "IsGlobalContext": 1,
+ "ByteArray*": 1,
+ "seed": 2,
+ "random_seed": 1,
+ "": 1,
+ "GetDataStartAddress": 1,
+ "private_random_seed": 1,
+ "FLAG_use_idle_notification": 1,
+ "HEAP": 1,
+ "Lazy": 1,
+ "init.": 1,
+ "Add": 1,
+ "Remove": 1,
+ "HandleScopeImplementer*": 1,
+ "handle_scope_implementer": 5,
+ "CallDepthIsZero": 1,
+ "IncrementCallDepth": 1,
+ "DecrementCallDepth": 1,
+ "union": 1,
+ "double_value": 1,
+ "uint64_t": 8,
+ "uint64_t_value": 1,
+ "double_int_union": 2,
+ "random_bits": 2,
+ "binary_million": 3,
+ "r.double_value": 3,
+ "r.uint64_t_value": 1,
+ "HeapNumber": 1,
+ "set_value": 1,
+ "SetUp": 4,
+ "FLAG_crankshaft": 1,
+ "Serializer": 1,
+ "enabled": 4,
+ "CPU": 5,
+ "SupportsCrankshaft": 1,
+ "PostSetUp": 1,
+ "RuntimeProfiler": 1,
+ "GlobalSetUp": 1,
+ "FLAG_stress_compaction": 1,
+ "FLAG_force_marking_deque_overflows": 1,
+ "FLAG_gc_global": 1,
+ "FLAG_max_new_space_size": 1,
+ "kPageSizeBits": 1,
+ "SetUpCaches": 1,
+ "SetUpJSCallerSavedCodeData": 1,
+ "SamplerRegistry": 1,
+ "ExternalReference": 1,
+ "CallOnce": 1,
+ "endl": 1,
+ "///": 843,
+ "mainpage": 1,
+ "library": 14,
+ "Broadcom": 3,
+ "BCM": 14,
+ "Raspberry": 6,
+ "Pi": 5,
+ "RPi": 17,
+ "It": 7,
+ "provides": 3,
+ "access": 17,
+ "GPIO": 87,
+ "IO": 2,
+ "functions": 19,
+ "chip": 9,
+ "allowing": 3,
+ "pins": 40,
+ "pin": 90,
+ "IDE": 4,
+ "plug": 3,
+ "board": 2,
+ "so": 2,
+ "interface": 9,
+ "various": 4,
+ "external": 3,
+ "devices.": 1,
+ "reading": 3,
+ "digital": 2,
+ "inputs": 2,
+ "setting": 2,
+ "outputs": 1,
+ "SPI": 44,
+ "I2C": 29,
+ "accessing": 2,
+ "timers.": 1,
+ "Pin": 65,
+ "event": 3,
+ "detection": 2,
+ "supported": 3,
+ "polling": 1,
+ "interrupts": 1,
+ "compatible": 1,
+ "installs": 1,
+ "non": 2,
+ "shared": 2,
+ "Linux": 2,
+ "based": 4,
+ "distro": 1,
+ "clearly": 1,
+ "except": 2,
+ "another": 1,
+ "package": 1,
+ "documentation": 3,
+ "refers": 1,
+ "downloaded": 1,
+ "http": 11,
+ "//www.airspayce.com/mikem/bcm2835/bcm2835": 1,
+ "tar.gz": 1,
+ "You": 9,
+ "find": 2,
+ "latest": 2,
+ "//www.airspayce.com/mikem/bcm2835": 1,
+ "Several": 1,
+ "provided.": 1,
+ "Based": 1,
+ "//elinux.org/RPi_Low": 1,
+ "level_peripherals": 1,
+ "//www.raspberrypi.org/wp": 1,
+ "content/uploads/2012/02/BCM2835": 1,
+ "ARM": 5,
+ "Peripherals.pdf": 1,
+ "//www.scribd.com/doc/101830961/GPIO": 2,
+ "Pads": 3,
+ "Control2": 2,
+ "also": 3,
+ "online": 1,
+ "help": 1,
+ "discussion": 1,
+ "//groups.google.com/group/bcm2835": 1,
+ "group": 23,
+ "questions": 1,
+ "discussions": 1,
+ "topic.": 1,
+ "Do": 1,
+ "contact": 1,
+ "author": 3,
+ "unless": 1,
+ "discuss": 1,
+ "commercial": 1,
+ "licensing.": 1,
+ "Tested": 1,
+ "debian6": 1,
+ "wheezy": 3,
+ "raspbian": 3,
+ "Occidentalisv01": 2,
+ "CAUTION": 1,
+ "been": 14,
+ "observed": 1,
+ "detect": 3,
+ "enables": 3,
+ "such": 4,
+ "bcm2835_gpio_len": 5,
+ "pulled": 1,
+ "LOW": 8,
+ "cause": 1,
+ "temporary": 1,
+ "hangs": 1,
+ "Occidentalisv01.": 1,
+ "Reason": 1,
+ "yet": 1,
+ "determined": 1,
+ "suspect": 1,
+ "handler": 1,
+ "hitting": 1,
+ "hard": 1,
+ "loop": 2,
+ "those": 3,
+ "OSs.": 1,
+ "friends": 2,
+ "make": 6,
+ "disable": 2,
+ "bcm2835_gpio_cler_len": 1,
+ "use.": 1,
+ "par": 9,
+ "Installation": 1,
+ "consists": 1,
+ "single": 2,
+ "installed": 1,
+ "usual": 3,
+ "places": 1,
+ "code": 12,
+ "#": 1,
+ "download": 2,
+ "say": 1,
+ "bcm2835": 7,
+ "xx.tar.gz": 2,
+ "tar": 1,
+ "zxvf": 1,
+ "cd": 1,
+ "./configure": 1,
+ "sudo": 2,
+ "endcode": 2,
+ "Physical": 21,
+ "Addresses": 6,
+ "bcm2835_peri_read": 3,
+ "bcm2835_peri_write": 3,
+ "bcm2835_peri_set_bits": 2,
+ "level": 10,
+ "peripheral": 14,
+ "register": 17,
+ "functions.": 4,
+ "They": 1,
+ "designed": 3,
+ "addresses": 4,
+ "described": 1,
+ "section": 6,
+ "BCM2835": 2,
+ "Peripherals": 1,
+ "manual.": 1,
+ "FFFFFF": 1,
+ "peripherals.": 1,
+ "bus": 4,
+ "peripherals": 2,
+ "map": 3,
+ "onto": 1,
+ "address": 13,
+ "starting": 1,
+ "E000000.": 1,
+ "Thus": 1,
+ "advertised": 1,
+ "manual": 8,
+ "Ennnnnn": 1,
+ "available": 6,
+ "nnnnnn.": 1,
+ "registers": 12,
+ "following": 2,
+ "externals": 1,
+ "bcm2835_gpio": 2,
+ "bcm2835_pwm": 2,
+ "bcm2835_clk": 2,
+ "bcm2835_pads": 2,
+ "bcm2835_spio0": 1,
+ "bcm2835_st": 1,
+ "bcm2835_bsc0": 1,
+ "bcm2835_bsc1": 1,
+ "Numbering": 1,
+ "numbering": 1,
+ "inconsistent": 1,
+ "underlying": 4,
+ "numbering.": 1,
+ "//elinux.org/RPi_BCM2835_GPIOs": 1,
+ "some": 4,
+ "well": 1,
+ "power": 1,
+ "ground": 1,
+ "pins.": 1,
+ "Not": 4,
+ "header.": 1,
+ "Version": 40,
+ "P5": 6,
+ "connector": 1,
+ "V": 2,
+ "Gnd.": 1,
+ "passed": 4,
+ "_not_": 1,
+ "number.": 1,
+ "There": 1,
+ "symbolic": 1,
+ "definitions": 3,
+ "convenience.": 1,
+ "See": 7,
+ "ref": 32,
+ "RPiGPIOPin.": 22,
+ "Pins": 2,
+ "bcm2835_spi_*": 1,
+ "allow": 5,
+ "SPI0": 17,
+ "send": 3,
+ "received": 3,
+ "Serial": 3,
+ "Peripheral": 6,
+ "Interface": 2,
+ "For": 6,
+ "more": 4,
+ "see": 14,
+ "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1,
+ "When": 12,
+ "bcm2835_spi_begin": 3,
+ "changes": 2,
+ "bahaviour": 1,
+ "behaviour": 1,
+ "order": 14,
+ "support": 4,
+ "SPI.": 1,
+ "While": 1,
+ "bcm2835_spi_gpio_write": 1,
+ "bcm2835_spi_end": 4,
+ "revert": 1,
+ "configured": 1,
+ "controled": 1,
+ "bcm2835_gpio_*": 1,
+ "calls.": 1,
+ "P1": 56,
+ "MOSI": 8,
+ "MISO": 6,
+ "CLK": 6,
+ "CE0": 5,
+ "CE1": 6,
+ "bcm2835_i2c_*": 2,
+ "BSC": 10,
+ "generically": 1,
+ "referred": 1,
+ "I": 4,
+ "//en.wikipedia.org/wiki/I": 1,
+ "C2": 1,
+ "B2C": 1,
+ "V2": 2,
+ "SDA": 3,
+ "SLC": 1,
+ "Real": 1,
+ "Time": 1,
+ "performance": 2,
+ "constraints": 2,
+ "i.e.": 1,
+ "they": 2,
+ "Such": 1,
+ "part": 1,
+ "kernel": 4,
+ "usually": 2,
+ "subject": 1,
+ "paging": 1,
+ "swapping": 2,
+ "things": 1,
+ "besides": 1,
+ "running": 1,
+ "program.": 1,
+ "means": 8,
+ "expect": 2,
+ "get": 5,
+ "time": 10,
+ "timing": 3,
+ "programs.": 1,
+ "In": 2,
+ "particular": 1,
+ "guarantee": 1,
+ "bcm2835_delay": 5,
+ "bcm2835_delayMicroseconds": 6,
+ "exactly": 2,
+ "requested.": 1,
+ "fact": 2,
+ "depending": 1,
+ "activity": 1,
+ "host": 1,
+ "etc": 1,
+ "might": 1,
+ "significantly": 1,
+ "longer": 1,
+ "delay": 9,
+ "times": 2,
+ "asked": 1,
+ "for.": 1,
+ "So": 1,
+ "dont": 1,
+ "request.": 1,
+ "Arjan": 2,
+ "reports": 1,
+ "sched_param": 1,
+ "sp": 4,
+ "sp.sched_priority": 1,
+ "sched_get_priority_max": 1,
+ "SCHED_FIFO": 2,
+ "sched_setscheduler": 1,
+ "mlockall": 1,
+ "MCL_CURRENT": 1,
+ "MCL_FUTURE": 1,
+ "Open": 2,
+ "Source": 2,
+ "Licensing": 2,
+ "GPL": 2,
+ "appropriate": 7,
+ "option": 1,
+ "share": 2,
+ "application": 2,
+ "everyone": 1,
+ "distribute": 1,
+ "give": 2,
+ "them": 1,
+ "who": 1,
+ "uses": 4,
+ "wish": 2,
+ "software": 1,
+ "under": 2,
+ "contribute": 1,
+ "community": 1,
+ "accordance": 1,
+ "distributed.": 1,
+ "//www.gnu.org/copyleft/gpl.html": 1,
+ "COPYING": 1,
+ "Acknowledgements": 1,
+ "Some": 1,
+ "inspired": 2,
+ "Dom": 1,
+ "Gert.": 1,
+ "Alan": 1,
+ "Barr.": 1,
+ "Revision": 1,
+ "History": 1,
+ "Initial": 1,
+ "release": 1,
+ "Minor": 1,
+ "bug": 1,
+ "fixes": 1,
+ "Added": 11,
+ "bcm2835_spi_transfern": 3,
+ "Fixed": 4,
+ "problem": 2,
+ "prevented": 1,
+ "used.": 2,
+ "Reported": 5,
+ "David": 1,
+ "Robinson.": 1,
+ "bcm2835_close": 4,
+ "deinit": 1,
+ "library.": 3,
+ "Suggested": 1,
+ "sar": 1,
+ "Ortiz": 1,
+ "Document": 1,
+ "Functions": 1,
+ "bcm2835_gpio_ren": 3,
+ "bcm2835_gpio_fen": 3,
+ "bcm2835_gpio_hen": 3,
+ "bcm2835_gpio_aren": 3,
+ "bcm2835_gpio_afen": 3,
+ "now": 4,
+ "specified.": 1,
+ "Other": 1,
+ "were": 1,
+ "already": 1,
+ "previously": 10,
+ "stay": 1,
+ "enabled.": 1,
+ "bcm2835_gpio_clr_ren": 2,
+ "bcm2835_gpio_clr_fen": 2,
+ "bcm2835_gpio_clr_hen": 2,
+ "bcm2835_gpio_clr_len": 2,
+ "bcm2835_gpio_clr_aren": 2,
+ "bcm2835_gpio_clr_afen": 2,
+ "enable": 3,
+ "individual": 1,
+ "suggested": 3,
+ "Andreas": 1,
+ "Sundstrom.": 1,
+ "bcm2835_spi_transfernb": 2,
+ "read": 21,
+ "write.": 1,
+ "Improvements": 3,
+ "barrier": 3,
+ "maddin.": 1,
+ "contributed": 1,
+ "mikew": 1,
+ "noticed": 1,
+ "mallocing": 1,
+ "mmaps": 1,
+ "/dev/mem.": 1,
+ "ve": 4,
+ "removed": 1,
+ "mallocs": 1,
+ "frees": 1,
+ "found": 1,
+ "nanosleep": 7,
+ "takes": 1,
+ "least": 2,
+ "us.": 1,
+ "link": 3,
+ "version.": 1,
+ "doc": 1,
+ "Also": 1,
+ "added": 2,
+ "define": 2,
+ "passwrd": 1,
+ "Gert": 1,
+ "says": 1,
+ "pad": 4,
+ "settings.": 1,
+ "Changed": 1,
+ "collisions": 1,
+ "wiringPi.": 1,
+ "Macros": 2,
+ "delayMicroseconds": 3,
+ "disabled": 2,
+ "defining": 1,
+ "BCM2835_NO_DELAY_COMPATIBILITY": 2,
+ "incorrect": 2,
+ "Hardware": 1,
+ "pointers": 2,
+ "initialisation": 2,
+ "externally": 1,
+ "bcm2835_spi0.": 1,
+ "Now": 4,
+ "compiles": 1,
+ "even": 2,
+ "CLOCK_MONOTONIC_RAW": 1,
+ "instead.": 1,
+ "errors": 1,
+ "divider": 15,
+ "frequencies": 2,
+ "MHz": 14,
+ "clock.": 6,
+ "Ben": 1,
+ "Simpson.": 1,
+ "examples": 1,
+ "Mark": 5,
+ "Wolfe.": 1,
+ "bcm2835_gpio_set_multi": 2,
+ "bcm2835_gpio_clr_multi": 2,
+ "bcm2835_gpio_write_multi": 4,
+ "mask": 20,
+ "once.": 1,
+ "Requested": 2,
+ "Sebastian": 2,
+ "Loncar.": 2,
+ "bcm2835_gpio_write_mask.": 1,
+ "Changes": 1,
+ "timer": 2,
+ "counter": 1,
+ "clock_gettime": 1,
+ "improved": 1,
+ "accuracy.": 1,
+ "No": 2,
+ "lrt": 1,
+ "now.": 1,
+ "Contributed": 1,
+ "van": 1,
+ "Vught.": 1,
+ "Removed": 1,
+ "inlines": 1,
+ "patch": 1,
+ "since": 3,
+ "don": 1,
+ "seem": 1,
+ "work": 1,
+ "everywhere.": 1,
+ "olly.": 1,
+ "Patch": 2,
+ "Dootson": 2,
+ "/dev/mem": 4,
+ "granted.": 1,
+ "susceptible": 1,
+ "bit": 19,
+ "overruns.": 1,
+ "courtesy": 1,
+ "Jeremy": 1,
+ "Mortis.": 1,
+ "BCM2835_GPFEN0": 2,
+ "broke": 1,
+ "ability": 1,
+ "falling": 4,
+ "edge": 8,
+ "events.": 1,
+ "Dootson.": 2,
+ "bcm2835_i2c_set_baudrate": 2,
+ "bcm2835_i2c_read_register_rs.": 1,
+ "bcm2835_i2c_read": 4,
+ "bcm2835_i2c_write": 4,
+ "fix": 1,
+ "ocasional": 1,
+ "reads": 2,
+ "completing.": 1,
+ "Patched": 1,
+ "atched": 1,
+ "his": 1,
+ "submitted": 1,
+ "load": 1,
+ "processes.": 1,
+ "Updated": 1,
+ "distribution": 1,
+ "details": 1,
+ "airspayce.com": 1,
+ "missing": 1,
+ "unmapmem": 1,
+ "pads": 7,
+ "leak.": 1,
+ "Hartmut": 1,
+ "Henkel.": 1,
+ "Mike": 1,
+ "McCauley": 1,
+ "mikem@airspayce.com": 1,
+ "DO": 1,
+ "CONTACT": 1,
+ "THE": 2,
+ "AUTHOR": 1,
+ "DIRECTLY": 1,
+ "USE": 1,
+ "LISTS": 1,
+ "BCM2835_H": 3,
+ "": 2,
+ "defgroup": 7,
+ "constants": 1,
+ "Constants": 1,
+ "passing": 1,
+ "values": 3,
+ "here": 1,
+ "@": 14,
+ "HIGH": 12,
+ "volts": 2,
+ "pin.": 21,
+ "Speed": 1,
+ "core": 1,
+ "clock": 21,
+ "core_clk": 1,
+ "BCM2835_CORE_CLK_HZ": 1,
+ "Base": 17,
+ "Address": 10,
+ "BCM2835_PERI_BASE": 9,
+ "System": 10,
+ "Timer": 9,
+ "BCM2835_ST_BASE": 1,
+ "BCM2835_GPIO_PADS": 2,
+ "Clock/timer": 1,
+ "BCM2835_CLOCK_BASE": 1,
+ "BCM2835_GPIO_BASE": 6,
+ "BCM2835_SPI0_BASE": 1,
+ "BSC0": 2,
+ "BCM2835_BSC0_BASE": 1,
+ "PWM": 2,
+ "BCM2835_GPIO_PWM": 1,
+ "C000": 1,
+ "BSC1": 2,
+ "BCM2835_BSC1_BASE": 1,
+ "ST": 1,
+ "registers.": 10,
+ "Available": 8,
+ "bcm2835_init": 11,
+ "volatile": 13,
+ "*bcm2835_st": 1,
+ "*bcm2835_gpio": 1,
+ "*bcm2835_pwm": 1,
+ "*bcm2835_clk": 1,
+ "PADS": 1,
+ "*bcm2835_pads": 1,
+ "*bcm2835_spi0": 1,
+ "*bcm2835_bsc0": 1,
+ "*bcm2835_bsc1": 1,
+ "Size": 2,
+ "BCM2835_PAGE_SIZE": 1,
+ "*1024": 2,
+ "BCM2835_BLOCK_SIZE": 1,
+ "offsets": 2,
+ "BCM2835_GPIO_BASE.": 1,
+ "Offsets": 1,
+ "bytes": 29,
+ "per": 3,
+ "Register": 1,
+ "View": 1,
+ "BCM2835_GPFSEL0": 1,
+ "Function": 8,
+ "BCM2835_GPFSEL1": 1,
+ "BCM2835_GPFSEL2": 1,
+ "BCM2835_GPFSEL3": 1,
+ "BCM2835_GPFSEL4": 1,
+ "BCM2835_GPFSEL5": 1,
+ "BCM2835_GPSET0": 1,
+ "Output": 6,
+ "Set": 2,
+ "BCM2835_GPSET1": 1,
+ "BCM2835_GPCLR0": 1,
+ "BCM2835_GPCLR1": 1,
+ "BCM2835_GPLEV0": 1,
+ "Level": 2,
+ "BCM2835_GPLEV1": 1,
+ "BCM2835_GPEDS0": 1,
+ "Event": 11,
+ "Detect": 35,
+ "Status": 6,
+ "BCM2835_GPEDS1": 1,
+ "BCM2835_GPREN0": 1,
+ "Rising": 8,
+ "Edge": 16,
+ "Enable": 38,
+ "BCM2835_GPREN1": 1,
+ "Falling": 8,
+ "BCM2835_GPFEN1": 1,
+ "BCM2835_GPHEN0": 1,
+ "High": 4,
+ "BCM2835_GPHEN1": 1,
+ "BCM2835_GPLEN0": 1,
+ "Low": 5,
+ "BCM2835_GPLEN1": 1,
+ "BCM2835_GPAREN0": 1,
+ "Async.": 4,
+ "BCM2835_GPAREN1": 1,
+ "BCM2835_GPAFEN0": 1,
+ "BCM2835_GPAFEN1": 1,
+ "BCM2835_GPPUD": 1,
+ "Pull": 11,
+ "up/down": 10,
+ "BCM2835_GPPUDCLK0": 1,
+ "Clock": 11,
+ "BCM2835_GPPUDCLK1": 1,
+ "bcm2835PortFunction": 1,
+ "Port": 1,
+ "select": 9,
+ "modes": 1,
+ "bcm2835_gpio_fsel": 2,
+ "BCM2835_GPIO_FSEL_INPT": 1,
+ "b000": 1,
+ "Input": 2,
+ "BCM2835_GPIO_FSEL_OUTP": 1,
+ "b001": 1,
+ "BCM2835_GPIO_FSEL_ALT0": 1,
+ "b100": 1,
+ "Alternate": 6,
+ "BCM2835_GPIO_FSEL_ALT1": 1,
+ "b101": 1,
+ "BCM2835_GPIO_FSEL_ALT2": 1,
+ "b110": 1,
+ "BCM2835_GPIO_FSEL_ALT3": 1,
+ "b111": 2,
+ "BCM2835_GPIO_FSEL_ALT4": 1,
+ "b011": 1,
+ "BCM2835_GPIO_FSEL_ALT5": 1,
+ "b010": 1,
+ "BCM2835_GPIO_FSEL_MASK": 1,
+ "bits": 11,
+ "bcm2835FunctionSelect": 2,
+ "bcm2835PUDControl": 4,
+ "Pullup/Pulldown": 1,
+ "bcm2835_gpio_pud": 5,
+ "BCM2835_GPIO_PUD_OFF": 1,
+ "b00": 1,
+ "Off": 3,
+ "pull": 1,
+ "BCM2835_GPIO_PUD_DOWN": 1,
+ "b01": 1,
+ "Down": 1,
+ "BCM2835_GPIO_PUD_UP": 1,
+ "b10": 1,
+ "Up": 1,
+ "Pad": 11,
+ "BCM2835_PADS_GPIO_0_27": 1,
+ "BCM2835_PADS_GPIO_28_45": 1,
+ "BCM2835_PADS_GPIO_46_53": 1,
+ "Control": 6,
+ "masks": 1,
+ "BCM2835_PAD_PASSWRD": 1,
+ "A": 7,
+ "Password": 1,
+ "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1,
+ "Slew": 1,
+ "rate": 3,
+ "unlimited": 1,
+ "BCM2835_PAD_HYSTERESIS_ENABLED": 1,
+ "Hysteresis": 1,
+ "BCM2835_PAD_DRIVE_2mA": 1,
+ "mA": 8,
+ "drive": 8,
+ "BCM2835_PAD_DRIVE_4mA": 1,
+ "BCM2835_PAD_DRIVE_6mA": 1,
+ "BCM2835_PAD_DRIVE_8mA": 1,
+ "BCM2835_PAD_DRIVE_10mA": 1,
+ "BCM2835_PAD_DRIVE_12mA": 1,
+ "BCM2835_PAD_DRIVE_14mA": 1,
+ "BCM2835_PAD_DRIVE_16mA": 1,
+ "bcm2835PadGroup": 4,
+ "specification": 1,
+ "bcm2835_gpio_pad": 2,
+ "BCM2835_PAD_GROUP_GPIO_0_27": 1,
+ "BCM2835_PAD_GROUP_GPIO_28_45": 1,
+ "BCM2835_PAD_GROUP_GPIO_46_53": 1,
+ "Numbers": 1,
+ "Here": 1,
+ "terms": 4,
+ "numbers.": 1,
+ "These": 6,
+ "requiring": 1,
+ "bin": 1,
+ "connected": 1,
+ "adopt": 1,
+ "function.": 3,
+ "slightly": 1,
+ "pinouts": 1,
+ "these": 1,
+ "RPI_V2_*.": 1,
+ "At": 1,
+ "bootup": 1,
+ "UART0_TXD": 3,
+ "UART0_RXD": 3,
+ "ie": 3,
+ "alt0": 1,
+ "respectively": 1,
+ "dedicated": 1,
+ "cant": 1,
+ "controlled": 1,
+ "independently": 1,
+ "RPI_GPIO_P1_03": 6,
+ "RPI_GPIO_P1_05": 6,
+ "RPI_GPIO_P1_07": 1,
+ "RPI_GPIO_P1_08": 1,
+ "defaults": 4,
+ "alt": 4,
+ "RPI_GPIO_P1_10": 1,
+ "RPI_GPIO_P1_11": 1,
+ "RPI_GPIO_P1_12": 1,
+ "RPI_GPIO_P1_13": 1,
+ "RPI_GPIO_P1_15": 1,
+ "RPI_GPIO_P1_16": 1,
+ "RPI_GPIO_P1_18": 1,
+ "RPI_GPIO_P1_19": 1,
+ "RPI_GPIO_P1_21": 1,
+ "RPI_GPIO_P1_22": 1,
+ "RPI_GPIO_P1_23": 1,
+ "RPI_GPIO_P1_24": 1,
+ "RPI_GPIO_P1_26": 1,
+ "RPI_V2_GPIO_P1_03": 1,
+ "RPI_V2_GPIO_P1_05": 1,
+ "RPI_V2_GPIO_P1_07": 1,
+ "RPI_V2_GPIO_P1_08": 1,
+ "RPI_V2_GPIO_P1_10": 1,
+ "RPI_V2_GPIO_P1_11": 1,
+ "RPI_V2_GPIO_P1_12": 1,
+ "RPI_V2_GPIO_P1_13": 1,
+ "RPI_V2_GPIO_P1_15": 1,
+ "RPI_V2_GPIO_P1_16": 1,
+ "RPI_V2_GPIO_P1_18": 1,
+ "RPI_V2_GPIO_P1_19": 1,
+ "RPI_V2_GPIO_P1_21": 1,
+ "RPI_V2_GPIO_P1_22": 1,
+ "RPI_V2_GPIO_P1_23": 1,
+ "RPI_V2_GPIO_P1_24": 1,
+ "RPI_V2_GPIO_P1_26": 1,
+ "RPI_V2_GPIO_P5_03": 1,
+ "RPI_V2_GPIO_P5_04": 1,
+ "RPI_V2_GPIO_P5_05": 1,
+ "RPI_V2_GPIO_P5_06": 1,
+ "RPiGPIOPin": 1,
+ "BCM2835_SPI0_CS": 1,
+ "Master": 12,
+ "BCM2835_SPI0_FIFO": 1,
+ "TX": 5,
+ "RX": 7,
+ "FIFOs": 1,
+ "BCM2835_SPI0_CLK": 1,
+ "Divider": 2,
+ "BCM2835_SPI0_DLEN": 1,
+ "Data": 9,
+ "Length": 2,
+ "BCM2835_SPI0_LTOH": 1,
+ "LOSSI": 1,
+ "TOH": 1,
+ "BCM2835_SPI0_DC": 1,
+ "DMA": 3,
+ "DREQ": 1,
+ "Controls": 1,
+ "BCM2835_SPI0_CS_LEN_LONG": 1,
+ "Long": 1,
+ "Lossi": 2,
+ "DMA_LEN": 1,
+ "BCM2835_SPI0_CS_DMA_LEN": 1,
+ "BCM2835_SPI0_CS_CSPOL2": 1,
+ "Chip": 9,
+ "Polarity": 5,
+ "BCM2835_SPI0_CS_CSPOL1": 1,
+ "BCM2835_SPI0_CS_CSPOL0": 1,
+ "BCM2835_SPI0_CS_RXF": 1,
+ "RXF": 2,
+ "FIFO": 25,
+ "Full": 1,
+ "BCM2835_SPI0_CS_RXR": 1,
+ "RXR": 3,
+ "Reading": 1,
+ "full": 9,
+ "BCM2835_SPI0_CS_TXD": 1,
+ "TXD": 2,
+ "accept": 2,
+ "BCM2835_SPI0_CS_RXD": 1,
+ "RXD": 2,
+ "contains": 2,
+ "BCM2835_SPI0_CS_DONE": 1,
+ "Done": 3,
+ "transfer": 8,
+ "BCM2835_SPI0_CS_TE_EN": 1,
+ "Unused": 2,
+ "BCM2835_SPI0_CS_LMONO": 1,
+ "BCM2835_SPI0_CS_LEN": 1,
+ "LEN": 1,
+ "LoSSI": 1,
+ "BCM2835_SPI0_CS_REN": 1,
+ "REN": 1,
+ "Read": 3,
+ "BCM2835_SPI0_CS_ADCS": 1,
+ "ADCS": 1,
+ "Automatically": 1,
+ "Deassert": 1,
+ "BCM2835_SPI0_CS_INTR": 1,
+ "INTR": 1,
+ "Interrupt": 5,
+ "BCM2835_SPI0_CS_INTD": 1,
+ "INTD": 1,
+ "BCM2835_SPI0_CS_DMAEN": 1,
+ "DMAEN": 1,
+ "BCM2835_SPI0_CS_TA": 1,
+ "Transfer": 3,
+ "Active": 2,
+ "BCM2835_SPI0_CS_CSPOL": 1,
+ "BCM2835_SPI0_CS_CLEAR": 1,
+ "BCM2835_SPI0_CS_CLEAR_RX": 1,
+ "BCM2835_SPI0_CS_CLEAR_TX": 1,
+ "BCM2835_SPI0_CS_CPOL": 1,
+ "BCM2835_SPI0_CS_CPHA": 1,
+ "Phase": 1,
+ "BCM2835_SPI0_CS_CS": 1,
+ "bcm2835SPIBitOrder": 3,
+ "Bit": 1,
+ "Specifies": 5,
+ "ordering": 4,
+ "bcm2835_spi_setBitOrder": 2,
+ "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1,
+ "LSB": 1,
+ "First": 2,
+ "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1,
+ "MSB": 1,
+ "Specify": 2,
+ "bcm2835_spi_setDataMode": 2,
+ "BCM2835_SPI_MODE0": 1,
+ "CPOL": 4,
+ "CPHA": 4,
+ "BCM2835_SPI_MODE1": 1,
+ "BCM2835_SPI_MODE2": 1,
+ "BCM2835_SPI_MODE3": 1,
+ "bcm2835SPIMode": 2,
+ "bcm2835SPIChipSelect": 3,
+ "BCM2835_SPI_CS0": 1,
+ "BCM2835_SPI_CS1": 1,
+ "BCM2835_SPI_CS2": 1,
+ "CS1": 1,
+ "CS2": 1,
+ "asserted": 3,
+ "BCM2835_SPI_CS_NONE": 1,
+ "CS": 5,
+ "yourself": 1,
+ "bcm2835SPIClockDivider": 3,
+ "generate": 2,
+ "Figures": 1,
+ "below": 1,
+ "period": 1,
+ "frequency.": 1,
+ "divided": 2,
+ "nominal": 2,
+ "reported": 2,
+ "contrary": 1,
+ "shown": 1,
+ "confirmed": 1,
+ "measurement": 2,
+ "BCM2835_SPI_CLOCK_DIVIDER_65536": 1,
+ "us": 12,
+ "kHz": 10,
+ "BCM2835_SPI_CLOCK_DIVIDER_32768": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_16384": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_8192": 1,
+ "/51757813kHz": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_4096": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_2048": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_1024": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_512": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_256": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_128": 1,
+ "ns": 9,
+ "BCM2835_SPI_CLOCK_DIVIDER_64": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_32": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_16": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_8": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_4": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_2": 1,
+ "fastest": 1,
+ "BCM2835_SPI_CLOCK_DIVIDER_1": 1,
+ "same": 3,
+ "/65536": 1,
+ "BCM2835_BSC_C": 1,
+ "BCM2835_BSC_S": 1,
+ "BCM2835_BSC_DLEN": 1,
+ "BCM2835_BSC_A": 1,
+ "Slave": 1,
+ "BCM2835_BSC_FIFO": 1,
+ "BCM2835_BSC_DIV": 1,
+ "BCM2835_BSC_DEL": 1,
+ "Delay": 4,
+ "BCM2835_BSC_CLKT": 1,
+ "Stretch": 2,
+ "Timeout": 2,
+ "BCM2835_BSC_C_I2CEN": 1,
+ "BCM2835_BSC_C_INTR": 1,
+ "BCM2835_BSC_C_INTT": 1,
+ "BCM2835_BSC_C_INTD": 1,
+ "DONE": 2,
+ "BCM2835_BSC_C_ST": 1,
+ "Start": 4,
+ "BCM2835_BSC_C_CLEAR_1": 1,
+ "BCM2835_BSC_C_CLEAR_2": 1,
+ "BCM2835_BSC_C_READ": 1,
+ "BCM2835_BSC_S_CLKT": 1,
+ "stretch": 1,
+ "BCM2835_BSC_S_ERR": 1,
+ "ACK": 1,
+ "BCM2835_BSC_S_RXF": 1,
+ "BCM2835_BSC_S_TXE": 1,
+ "TXE": 1,
+ "BCM2835_BSC_S_RXD": 1,
+ "BCM2835_BSC_S_TXD": 1,
+ "BCM2835_BSC_S_RXR": 1,
+ "BCM2835_BSC_S_TXW": 1,
+ "TXW": 1,
+ "BCM2835_BSC_S_DONE": 1,
+ "BCM2835_BSC_S_TA": 1,
+ "BCM2835_BSC_FIFO_SIZE": 1,
+ "bcm2835I2CClockDivider": 3,
+ "BCM2835_I2C_CLOCK_DIVIDER_2500": 1,
+ "BCM2835_I2C_CLOCK_DIVIDER_626": 1,
+ "BCM2835_I2C_CLOCK_DIVIDER_150": 1,
+ "reset": 1,
+ "BCM2835_I2C_CLOCK_DIVIDER_148": 1,
+ "bcm2835I2CReasonCodes": 5,
+ "reason": 4,
+ "codes": 1,
+ "BCM2835_I2C_REASON_OK": 1,
+ "Success": 1,
+ "BCM2835_I2C_REASON_ERROR_NACK": 1,
+ "Received": 4,
+ "NACK": 1,
+ "BCM2835_I2C_REASON_ERROR_CLKT": 1,
+ "BCM2835_I2C_REASON_ERROR_DATA": 1,
+ "sent": 1,
+ "BCM2835_ST_CS": 1,
+ "Control/Status": 1,
+ "BCM2835_ST_CLO": 1,
+ "Counter": 4,
+ "Lower": 2,
+ "BCM2835_ST_CHI": 1,
+ "Upper": 1,
+ "BCM2835_PWM_CONTROL": 1,
+ "BCM2835_PWM_STATUS": 1,
+ "BCM2835_PWM0_RANGE": 1,
+ "BCM2835_PWM0_DATA": 1,
+ "BCM2835_PWM1_RANGE": 1,
+ "BCM2835_PWM1_DATA": 1,
+ "BCM2835_PWMCLK_CNTL": 1,
+ "BCM2835_PWMCLK_DIV": 1,
+ "BCM2835_PWM1_MS_MODE": 1,
+ "Run": 4,
+ "MS": 2,
+ "BCM2835_PWM1_USEFIFO": 1,
+ "BCM2835_PWM1_REVPOLAR": 1,
+ "Reverse": 2,
+ "polarity": 3,
+ "BCM2835_PWM1_OFFSTATE": 1,
+ "Ouput": 2,
+ "BCM2835_PWM1_REPEATFF": 1,
+ "Repeat": 2,
+ "empty": 2,
+ "BCM2835_PWM1_SERIAL": 1,
+ "serial": 2,
+ "BCM2835_PWM1_ENABLE": 1,
+ "Channel": 2,
+ "BCM2835_PWM0_MS_MODE": 1,
+ "BCM2835_PWM0_USEFIFO": 1,
+ "BCM2835_PWM0_REVPOLAR": 1,
+ "BCM2835_PWM0_OFFSTATE": 1,
+ "BCM2835_PWM0_REPEATFF": 1,
+ "BCM2835_PWM0_SERIAL": 1,
+ "BCM2835_PWM0_ENABLE": 1,
+ "init": 2,
+ "Library": 1,
+ "management": 1,
+ "intialise": 1,
+ "Initialise": 1,
+ "opening": 1,
+ "getting": 1,
+ "call": 4,
+ "successfully": 1,
+ "bcm2835_set_debug": 2,
+ "fails": 1,
+ "returning": 1,
+ "crashes": 1,
+ "failures.": 1,
+ "Prints": 1,
+ "messages": 1,
+ "stderr": 1,
+ "errors.": 1,
+ "successful": 2,
+ "Close": 1,
+ "deallocating": 1,
+ "debug": 6,
+ "prevents": 1,
+ "makes": 1,
+ "out": 5,
+ "would": 2,
+ "causes": 1,
+ "normal": 1,
+ "param": 72,
+ "uint8_t": 43,
+ "lowlevel": 2,
+ "provide": 1,
+ "generally": 1,
+ "Reads": 5,
+ "done": 3,
+ "twice": 3,
+ "therefore": 6,
+ "always": 3,
+ "precautions": 3,
+ "correct": 3,
+ "paddr": 10,
+ "from.": 6,
+ "etc.": 5,
+ "without": 3,
+ "occurred": 2,
+ "since.": 2,
+ "bcm2835_peri_read_nb": 1,
+ "Writes": 2,
+ "bcm2835_peri_write_nb": 1,
+ "Alters": 1,
+ "regsiter.": 1,
+ "valu": 1,
+ "alters": 1,
+ "deines": 1,
+ "according": 1,
+ "value.": 2,
+ "All": 1,
+ "unaffected.": 1,
+ "subset": 1,
+ "register.": 3,
+ "masked": 2,
+ "mask.": 1,
+ "Bitmask": 1,
+ "altered": 1,
+ "gpio": 1,
+ "interface.": 3,
+ "state.": 1,
+ "configures": 1,
+ "RPI_GPIO_P1_*": 21,
+ "Mode": 1,
+ "BCM2835_GPIO_FSEL_*": 1,
+ "specified": 27,
+ "HIGH.": 2,
+ "bcm2835_gpio_write": 3,
+ "bcm2835_gpio_set": 1,
+ "LOW.": 5,
+ "bcm2835_gpio_clr": 1,
+ "Mask": 6,
+ "affect.": 4,
+ "eg": 5,
+ "Works": 1,
+ "output.": 1,
+ "bcm2835_gpio_lev": 1,
+ "Status.": 7,
+ "Tests": 1,
+ "detected": 7,
+ "requested": 1,
+ "bcm2835_gpio_set_eds": 2,
+ "status": 1,
+ "th": 1,
+ "bcm2835_gpio_eds": 1,
+ "effect": 3,
+ "clearing": 1,
+ "flag.": 1,
+ "afer": 1,
+ "seeing": 1,
+ "rising": 3,
+ "sets": 8,
+ "GPRENn": 2,
+ "synchronous": 2,
+ "detection.": 2,
+ "signal": 4,
+ "sampled": 6,
+ "looking": 2,
+ "pattern": 2,
+ "signal.": 2,
+ "suppressing": 2,
+ "glitches.": 2,
+ "Disable": 6,
+ "Asynchronous": 6,
+ "incoming": 2,
+ "As": 2,
+ "edges": 2,
+ "very": 2,
+ "duration": 2,
+ "detected.": 2,
+ "bcm2835_gpio_pudclk": 3,
+ "resistor": 1,
+ "However": 3,
+ "convenient": 2,
+ "bcm2835_gpio_set_pud": 4,
+ "pud": 4,
+ "desired": 7,
+ "One": 3,
+ "BCM2835_GPIO_PUD_*": 2,
+ "Clocks": 3,
+ "earlier": 1,
+ "group.": 2,
+ "BCM2835_PAD_GROUP_GPIO_*": 2,
+ "BCM2835_PAD_*": 2,
+ "bcm2835_gpio_set_pad": 1,
+ "Delays": 3,
+ "milliseconds.": 1,
+ "Uses": 4,
+ "until": 1,
+ "up.": 1,
+ "mercy": 2,
+ "From": 2,
+ "interval": 4,
+ "req": 2,
+ "exact": 2,
+ "multiple": 2,
+ "granularity": 2,
+ "rounded": 2,
+ "multiple.": 2,
+ "Furthermore": 2,
+ "sleep": 2,
+ "completes": 2,
+ "becomes": 2,
+ "again": 2,
+ "thread.": 2,
+ "millis": 2,
+ "milliseconds": 1,
+ "microseconds.": 2,
+ "busy": 2,
+ "wait": 2,
+ "timers": 1,
+ "less": 1,
+ "microseconds": 6,
+ "Timer.": 1,
+ "RaspberryPi": 1,
+ "Your": 1,
+ "mileage": 1,
+ "vary.": 1,
+ "micros": 5,
+ "required": 2,
+ "bcm2835_gpio_write_mask": 1,
+ "clocking": 1,
+ "spi": 1,
+ "let": 2,
+ "device.": 2,
+ "operations.": 4,
+ "Forces": 2,
+ "ALT0": 2,
+ "funcitons": 1,
+ "End": 2,
+ "INPUT": 2,
+ "behaviour.": 2,
+ "NOTE": 1,
+ "effect.": 1,
+ "SPI0.": 1,
+ "Defaults": 1,
+ "BCM2835_SPI_BIT_ORDER_*": 1,
+ "speed.": 2,
+ "BCM2835_SPI_CLOCK_DIVIDER_*": 1,
+ "bcm2835_spi_setClockDivider": 1,
+ "uint16_t": 2,
+ "polariy": 1,
+ "phase": 1,
+ "BCM2835_SPI_MODE*": 1,
+ "bcm2835_spi_transfer": 5,
+ "made": 1,
+ "during": 4,
+ "transfer.": 4,
+ "cs": 4,
+ "activate": 1,
+ "slave.": 7,
+ "BCM2835_SPI_CS*": 1,
+ "bcm2835_spi_chipSelect": 4,
+ "occurs": 1,
+ "active.": 1,
+ "transfers": 1,
+ "happening": 1,
+ "complement": 1,
+ "inactive": 1,
+ "affect": 1,
+ "active": 3,
+ "Whether": 1,
+ "bcm2835_spi_setChipSelectPolarity": 1,
+ "Transfers": 6,
+ "Asserts": 3,
+ "simultaneously": 3,
+ "clocks": 2,
+ "MISO.": 2,
+ "polled": 2,
+ "Peripherls": 2,
+ "slave": 8,
+ "placed": 1,
+ "rbuf.": 1,
+ "rbuf": 3,
+ "tbuf": 4,
+ "send.": 5,
+ "put": 1,
+ "send/received": 2,
+ "bcm2835_spi_transfernb.": 1,
+ "replaces": 1,
+ "transmitted": 1,
+ "buffer.": 1,
+ "replace": 1,
+ "bcm2835_spi_writenb": 1,
+ "i2c": 1,
+ "Philips": 1,
+ "bus/interface": 1,
+ "January": 1,
+ "SCL": 2,
+ "bcm2835_i2c_end": 3,
+ "bcm2835_i2c_begin": 1,
+ "address.": 2,
+ "addr": 2,
+ "bcm2835_i2c_setSlaveAddress": 4,
+ "BCM2835_I2C_CLOCK_DIVIDER_*": 1,
+ "bcm2835_i2c_setClockDivider": 2,
+ "converting": 1,
+ "baudrate": 4,
+ "parameter": 1,
+ "equivalent": 1,
+ "divider.": 1,
+ "standard": 2,
+ "khz": 1,
+ "corresponds": 1,
+ "its": 1,
+ "driver.": 1,
+ "Of": 1,
+ "nothing": 1,
+ "driver": 1,
+ "receive.": 2,
+ "received.": 2,
+ "Allows": 2,
+ "slaves": 1,
+ "require": 3,
+ "repeated": 1,
+ "prior": 1,
+ "stop": 1,
+ "set.": 1,
+ "popular": 1,
+ "MPL3115A2": 1,
+ "pressure": 1,
+ "temperature": 1,
+ "sensor.": 1,
+ "Note": 1,
+ "combined": 1,
+ "better": 1,
+ "choice.": 1,
+ "Will": 1,
+ "regaddr": 2,
+ "bcm2835_i2c_read_register_rs": 1,
+ "st": 1,
+ "delays": 1,
+ "Counter.": 1,
+ "bcm2835_st_read": 1,
+ "offset.": 1,
+ "offset_micros": 2,
+ "Offset": 1,
+ "bcm2835_st_delay": 1,
+ "@example": 5,
+ "blink.c": 1,
+ "Blinks": 1,
+ "off": 1,
+ "input.c": 1,
+ "event.c": 1,
+ "Shows": 3,
+ "how": 3,
+ "spi.c": 1,
+ "spin.c": 1,
+ "": 1,
+ "": 1,
+ "": 2,
+ "*env_instance": 1,
+ "*Env": 1,
+ "env_instance": 3,
+ "QObject": 2,
+ "QCoreApplication": 1,
+ "**envp": 1,
+ "**env": 1,
+ "**": 2,
+ "envvar": 2,
+ "indexOfEquals": 5,
+ "env": 3,
+ "*env": 1,
+ "envvar.indexOf": 1,
+ "envvar.left": 1,
+ "envvar.mid": 1,
+ "m_map.insert": 1,
+ "QVariantMap": 3,
+ "asVariantMap": 2,
+ "m_map": 2,
+ "ENV_H": 3,
+ "": 1,
+ "Q_OBJECT": 1,
+ "*instance": 1,
+ "rpc_init": 1,
+ "rpc_server_loop": 1,
+ "BITCOIN_KEY_H": 2,
+ "": 1,
+ "": 1,
+ "EC_KEY": 3,
+ "key_error": 6,
+ "runtime_error": 2,
+ "str": 2,
+ "CKeyID": 5,
+ "uint160": 8,
+ "CScriptID": 3,
+ "CPubKey": 11,
+ "vchPubKey": 6,
+ "CKey": 26,
+ "vchPubKeyIn": 2,
+ "a.vchPubKey": 3,
+ "b.vchPubKey": 3,
+ "IMPLEMENT_SERIALIZE": 1,
+ "READWRITE": 1,
+ "GetID": 1,
+ "Hash160": 1,
+ "uint256": 10,
+ "GetHash": 1,
+ "Hash": 1,
+ "vchPubKey.begin": 1,
+ "vchPubKey.end": 1,
+ "IsValid": 4,
+ "vchPubKey.size": 3,
+ "IsCompressed": 2,
+ "Raw": 1,
+ "secure_allocator": 2,
+ "CPrivKey": 3,
+ "CSecret": 4,
+ "EC_KEY*": 1,
+ "pkey": 14,
+ "fSet": 7,
+ "fCompressedPubKey": 5,
+ "SetCompressedPubKey": 4,
+ "Reset": 5,
+ "IsNull": 1,
+ "MakeNewKey": 1,
+ "fCompressed": 3,
+ "SetPrivKey": 1,
+ "vchPrivKey": 1,
+ "SetSecret": 1,
+ "vchSecret": 1,
+ "GetSecret": 2,
+ "GetPrivKey": 1,
+ "SetPubKey": 1,
+ "GetPubKey": 5,
+ "hash": 20,
+ "vchSig": 18,
+ "SignCompact": 2,
+ "SetCompactSignature": 2,
+ "Verify": 2,
+ "VerifyCompact": 2,
+ "": 1,
+ "": 1,
+ "": 1,
+ "EC_KEY_regenerate_key": 1,
+ "*eckey": 2,
+ "BIGNUM": 9,
+ "*priv_key": 1,
+ "ok": 3,
+ "BN_CTX": 2,
+ "*ctx": 2,
+ "EC_POINT": 4,
+ "*pub_key": 1,
+ "eckey": 7,
+ "EC_GROUP": 2,
+ "*group": 2,
+ "EC_KEY_get0_group": 2,
+ "ctx": 26,
+ "BN_CTX_new": 2,
+ "err": 26,
+ "pub_key": 6,
+ "EC_POINT_new": 4,
+ "EC_POINT_mul": 3,
+ "priv_key": 2,
+ "EC_KEY_set_private_key": 1,
+ "EC_KEY_set_public_key": 2,
+ "EC_POINT_free": 4,
+ "BN_CTX_free": 2,
+ "ECDSA_SIG_recover_key_GFp": 3,
+ "ECDSA_SIG": 3,
+ "*ecsig": 1,
+ "*msg": 2,
+ "msglen": 2,
+ "recid": 3,
+ "ret": 24,
+ "*x": 1,
+ "*e": 1,
+ "*order": 1,
+ "*sor": 1,
+ "*eor": 1,
+ "*field": 1,
+ "*R": 1,
+ "*O": 1,
+ "*Q": 1,
+ "*rr": 1,
+ "*zero": 1,
+ "BN_CTX_start": 1,
+ "BN_CTX_get": 8,
+ "EC_GROUP_get_order": 1,
+ "BN_copy": 1,
+ "BN_mul_word": 1,
+ "BN_add": 1,
+ "ecsig": 3,
+ "EC_GROUP_get_curve_GFp": 1,
+ "BN_cmp": 1,
+ "R": 6,
+ "EC_POINT_set_compressed_coordinates_GFp": 1,
+ "O": 5,
+ "EC_POINT_is_at_infinity": 1,
+ "Q": 5,
+ "EC_GROUP_get_degree": 1,
+ "BN_bin2bn": 3,
+ "msg": 1,
+ "*msglen": 1,
+ "BN_rshift": 1,
+ "BN_zero": 1,
+ "BN_mod_sub": 1,
+ "rr": 4,
+ "BN_mod_inverse": 1,
+ "sor": 3,
+ "BN_mod_mul": 2,
+ "eor": 3,
+ "BN_CTX_end": 1,
+ "EC_KEY_set_conv_form": 1,
+ "POINT_CONVERSION_COMPRESSED": 1,
+ "EC_KEY_new_by_curve_name": 2,
+ "NID_secp256k1": 2,
+ "throw": 4,
+ "EC_KEY_dup": 1,
+ "b.pkey": 2,
+ "b.fSet": 2,
+ "EC_KEY_copy": 1,
+ "nSize": 2,
+ "vchSig.clear": 2,
+ "vchSig.resize": 2,
+ "Shrink": 1,
+ "fit": 1,
+ "actual": 1,
+ "fOk": 3,
+ "*sig": 2,
+ "ECDSA_do_sign": 1,
+ "sig": 11,
+ "nBitsR": 3,
+ "BN_num_bits": 2,
+ "nBitsS": 3,
+ "nRecId": 4,
+ "<4;>": 1,
+ "keyRec": 5,
+ "BN_bn2bin": 2,
+ "/8": 2,
+ "ECDSA_SIG_free": 2,
+ "vchSig.size": 2,
+ "nV": 6,
+ "<27>": 1,
+ "ECDSA_SIG_new": 1,
+ "EC_KEY_free": 1,
+ "ECDSA_verify": 1,
+ "key.SetCompactSignature": 1,
+ "key.GetPubKey": 1,
+ "fCompr": 3,
+ "secret": 2,
+ "key2": 1,
+ "key2.SetSecret": 1,
+ "key2.GetPubKey": 1,
+ "V8_SCANNER_H_": 3,
+ "ParsingFlags": 1,
+ "kNoParsingFlags": 1,
+ "kLanguageModeMask": 4,
+ "kAllowLazy": 1,
+ "kAllowNativesSyntax": 1,
+ "kAllowModules": 1,
+ "CLASSIC_MODE": 2,
+ "STRICT_MODE": 2,
+ "EXTENDED_MODE": 2,
+ "x16": 1,
+ "x36.": 1,
+ "Utf16CharacterStream": 3,
+ "pos_": 6,
+ "buffer_cursor_": 5,
+ "buffer_end_": 3,
+ "ReadBlock": 2,
+ "": 1,
+ "kEndOfInput": 2,
+ "code_unit_count": 7,
+ "buffered_chars": 2,
+ "SlowSeekForward": 2,
+ "int32_t": 1,
+ "code_unit": 6,
+ "uc16*": 3,
+ "UnicodeCache": 3,
+ "unibrow": 11,
+ "Utf8InputBuffer": 2,
+ "<1024>": 2,
+ "Utf8Decoder": 2,
+ "StaticResource": 2,
+ "": 2,
+ "utf8_decoder": 1,
+ "utf8_decoder_": 2,
+ "uchar": 4,
+ "kIsIdentifierStart.get": 1,
+ "IsIdentifierPart": 1,
+ "kIsIdentifierPart.get": 1,
+ "kIsLineTerminator.get": 1,
+ "kIsWhiteSpace.get": 1,
+ "Predicate": 4,
+ "": 1,
+ "128": 4,
+ "kIsIdentifierStart": 1,
+ "": 1,
+ "kIsIdentifierPart": 1,
+ "": 1,
+ "kIsLineTerminator": 1,
+ "": 1,
+ "kIsWhiteSpace": 1,
+ "DISALLOW_COPY_AND_ASSIGN": 2,
+ "LiteralBuffer": 6,
+ "is_ascii_": 10,
+ "position_": 17,
+ "backing_store_": 7,
+ "backing_store_.length": 4,
+ "backing_store_.Dispose": 3,
+ "INLINE": 2,
+ "AddChar": 2,
+ "ExpandBuffer": 2,
+ "kMaxAsciiCharCodeU": 1,
+ "": 6,
+ "kASCIISize": 1,
+ "ConvertToUtf16": 2,
+ "": 2,
+ "kUC16Size": 2,
+ "is_ascii": 3,
+ "Vector": 13,
+ "uc16": 5,
+ "utf16_literal": 3,
+ "backing_store_.start": 5,
+ "ascii_literal": 3,
+ "kInitialCapacity": 2,
+ "kGrowthFactory": 2,
+ "kMinConversionSlack": 1,
+ "kMaxGrowth": 2,
+ "MB": 1,
+ "NewCapacity": 3,
+ "min_capacity": 2,
+ "capacity": 3,
+ "Max": 1,
+ "new_capacity": 2,
+ "Min": 1,
+ "new_store": 6,
+ "memcpy": 1,
+ "new_store.start": 3,
+ "new_content_size": 4,
+ "src": 2,
+ "": 1,
+ "dst": 2,
+ "Scanner*": 2,
+ "scanner_": 5,
+ "complete_": 4,
+ "StartLiteral": 2,
+ "DropLiteral": 2,
+ "Complete": 1,
+ "TerminateLiteral": 2,
+ "beg_pos": 5,
+ "end_pos": 4,
+ "kNoOctalLocation": 1,
+ "scanner_contants": 1,
+ "current_token": 1,
+ "current_.location": 2,
+ "literal_ascii_string": 1,
+ "ASSERT_NOT_NULL": 9,
+ "current_.literal_chars": 11,
+ "literal_utf16_string": 1,
+ "is_literal_ascii": 1,
+ "literal_length": 1,
+ "literal_contains_escapes": 1,
+ "source_length": 3,
+ "location.end_pos": 1,
+ "location.beg_pos": 1,
+ "STRING": 1,
+ "peek": 1,
+ "peek_location": 1,
+ "next_.location": 1,
+ "next_literal_ascii_string": 1,
+ "next_literal_utf16_string": 1,
+ "is_next_literal_ascii": 1,
+ "next_literal_length": 1,
+ "kCharacterLookaheadBufferSize": 3,
+ "ScanOctalEscape": 1,
+ "octal_position": 1,
+ "clear_octal_position": 1,
+ "HarmonyScoping": 1,
+ "SetHarmonyScoping": 1,
+ "scoping": 2,
+ "HarmonyModules": 1,
+ "SetHarmonyModules": 1,
+ "modules": 2,
+ "HasAnyLineTerminatorBeforeNext": 1,
+ "ScanRegExpPattern": 1,
+ "seen_equal": 1,
+ "ScanRegExpFlags": 1,
+ "IsIdentifier": 1,
+ "CharacterStream*": 1,
+ "TokenDesc": 3,
+ "LiteralBuffer*": 2,
+ "literal_chars": 1,
+ "free_buffer": 3,
+ "literal_buffer1_": 3,
+ "literal_buffer2_": 2,
+ "AddLiteralChar": 2,
+ "tok": 2,
+ "else_": 2,
+ "ScanDecimalDigits": 1,
+ "seen_period": 1,
+ "ScanIdentifierSuffix": 1,
+ "LiteralScope*": 1,
+ "ScanIdentifierUnicodeEscape": 1,
+ "desc": 2,
+ "look": 1,
+ "ahead": 1,
+ "Field": 2,
+ "Free": 1,
+ "Black": 1,
+ "White": 1,
+ "Illegal": 1,
+ "Player": 1,
+ "NINJA_METRICS_H_": 3,
+ "int64_t.": 1,
+ "Metrics": 2,
+ "module": 1,
+ "dumps": 1,
+ "stats": 2,
+ "actions.": 1,
+ "To": 1,
+ "METRIC_RECORD": 4,
+ "below.": 1,
+ "metrics": 2,
+ "hit": 1,
+ "path.": 2,
+ "count": 1,
+ "Total": 1,
+ "spent": 1,
+ "int64_t": 3,
+ "sum": 1,
+ "scoped": 1,
+ "recording": 1,
+ "metric": 2,
+ "across": 1,
+ "body": 1,
+ "Used": 2,
+ "macro.": 1,
+ "ScopedMetric": 4,
+ "Metric*": 4,
+ "metric_": 1,
+ "Timestamp": 1,
+ "started.": 1,
+ "dependent.": 1,
+ "start_": 1,
+ "prints": 1,
+ "report.": 1,
+ "NewMetric": 2,
+ "summary": 1,
+ "stdout.": 1,
+ "Report": 1,
+ "": 1,
+ "metrics_": 1,
+ "Get": 1,
+ "epoch.": 1,
+ "Epoch": 1,
+ "varies": 1,
+ "between": 1,
+ "platforms": 1,
+ "useful": 1,
+ "measuring": 1,
+ "elapsed": 1,
+ "time.": 1,
+ "GetTimeMillis": 1,
+ "simple": 1,
+ "stopwatch": 1,
+ "seconds": 1,
+ "Restart": 3,
+ "called.": 1,
+ "Stopwatch": 2,
+ "started_": 4,
+ "Seconds": 1,
+ "call.": 1,
+ "Elapsed": 1,
+ "": 1,
+ "primary": 1,
+ "metrics.": 1,
+ "top": 1,
+ "recorded": 1,
+ "metrics_h_metric": 2,
+ "g_metrics": 3,
+ "metrics_h_scoped": 1,
+ "Metrics*": 1,
+ "UTILS_H": 3,
+ "": 1,
+ "": 1,
+ "": 1,
+ "QTemporaryFile": 1,
+ "showUsage": 1,
+ "QtMsgType": 1,
+ "dump_path": 1,
+ "minidump_id": 1,
+ "QVariant": 1,
+ "coffee2js": 1,
+ "script": 1,
+ "injectJsInFrame": 2,
+ "jsFilePath": 5,
+ "libraryPath": 5,
+ "QWebFrame": 4,
+ "*targetFrame": 4,
+ "startingScript": 2,
+ "Encoding": 3,
+ "jsFileEnc": 2,
+ "readResourceFileUtf8": 1,
+ "resourceFilePath": 1,
+ "loadJSForDebug": 2,
+ "autorun": 2,
+ "cleanupFromDebug": 1,
+ "findScript": 1,
+ "jsFromScriptFile": 1,
+ "scriptPath": 1,
+ "enc": 1,
+ "shouldn": 1,
+ "instantiated": 1,
+ "QTemporaryFile*": 2,
+ "m_tempHarness": 1,
+ "We": 1,
+ "ourselves": 1,
+ "m_tempWrapper": 1,
+ "GDSDBREADER_H": 3,
+ "": 1,
+ "GDS_DIR": 1,
+ "LEVEL_ONE": 1,
+ "LEVEL_TWO": 1,
+ "LEVEL_THREE": 1,
+ "dbDataStructure": 2,
+ "label": 1,
+ "quint32": 3,
+ "depth": 1,
+ "userIndex": 1,
+ "QByteArray": 1,
+ "COMPRESSED": 1,
+ "optimize": 1,
+ "ram": 1,
+ "decompressed": 1,
+ "quint64": 1,
+ "uniqueID": 1,
+ "QVector": 2,
+ "": 1,
+ "nextItems": 1,
+ "": 1,
+ "nextItemsIndices": 1,
+ "dbDataStructure*": 1,
+ "father": 1,
+ "fatherIndex": 1,
+ "noFatherRoot": 1,
+ "tell": 1,
+ "node": 1,
+ "root": 1,
+ "hasn": 1,
+ "argument": 1,
+ "overload.": 1,
+ "myclass.label": 2,
+ "myclass.depth": 2,
+ "myclass.userIndex": 2,
+ "qCompress": 2,
+ "myclass.data": 4,
+ "myclass.uniqueID": 2,
+ "myclass.nextItemsIndices": 2,
+ "myclass.fatherIndex": 2,
+ "myclass.noFatherRoot": 2,
+ "myclass.fileName": 2,
+ "myclass.firstLineData": 4,
+ "myclass.linesNumbers": 2,
+ "QDataStream": 2,
+ "myclass": 1,
+ "//Don": 1,
+ "qUncompress": 2
+ },
+ "JSON5": {
+ "{": 6,
+ "foo": 1,
+ "while": 1,
+ "true": 1,
+ "this": 1,
+ "here": 1,
+ "//": 2,
+ "inline": 1,
+ "comment": 1,
+ "hex": 1,
+ "xDEADbeef": 1,
+ "half": 1,
+ ".5": 1,
+ "delta": 1,
+ "+": 1,
+ "to": 1,
+ "Infinity": 1,
+ "and": 1,
+ "beyond": 1,
+ "finally": 1,
+ "oh": 1,
+ "[": 3,
+ "]": 3,
+ "}": 6,
+ "name": 1,
+ "version": 1,
+ "description": 1,
+ "keywords": 1,
+ "author": 1,
+ "contributors": 1,
+ "main": 1,
+ "bin": 1,
+ "dependencies": 1,
+ "devDependencies": 1,
+ "mocha": 1,
+ "scripts": 1,
+ "build": 1,
+ "test": 1,
+ "homepage": 1,
+ "repository": 1,
+ "type": 1,
+ "url": 1
+ },
+ "MoonScript": {
+ "types": 2,
+ "require": 5,
+ "util": 2,
+ "data": 1,
+ "import": 5,
+ "reversed": 2,
+ "unpack": 22,
+ "from": 4,
+ "ntype": 16,
+ "mtype": 3,
+ "build": 7,
+ "smart_node": 7,
+ "is_slice": 2,
+ "value_is_singular": 3,
+ "insert": 18,
+ "table": 2,
+ "NameProxy": 14,
+ "LocalName": 2,
+ "destructure": 1,
+ "local": 1,
+ "implicitly_return": 2,
+ "class": 4,
+ "Run": 8,
+ "new": 2,
+ "(": 54,
+ "@fn": 1,
+ ")": 54,
+ "self": 2,
+ "[": 79,
+ "]": 79,
+ "call": 3,
+ "state": 2,
+ "self.fn": 1,
+ "-": 51,
+ "transform": 2,
+ "the": 4,
+ "last": 6,
+ "stm": 16,
+ "is": 2,
+ "a": 4,
+ "list": 6,
+ "of": 1,
+ "stms": 4,
+ "will": 1,
+ "puke": 1,
+ "on": 1,
+ "group": 1,
+ "apply_to_last": 6,
+ "fn": 3,
+ "find": 2,
+ "real": 1,
+ "exp": 17,
+ "last_exp_id": 3,
+ "for": 20,
+ "i": 15,
+ "#stms": 1,
+ "if": 43,
+ "and": 8,
+ "break": 1,
+ "return": 11,
+ "in": 18,
+ "ipairs": 3,
+ "else": 22,
+ "body": 26,
+ "sindle": 1,
+ "expression/statement": 1,
+ "is_singular": 2,
+ "false": 2,
+ "#body": 1,
+ "true": 4,
+ "find_assigns": 2,
+ "out": 9,
+ "{": 135,
+ "}": 136,
+ "thing": 4,
+ "*body": 2,
+ "switch": 7,
+ "when": 12,
+ "table.insert": 3,
+ "extract": 1,
+ "names": 16,
+ "hoist_declarations": 1,
+ "assigns": 5,
+ "hoist": 1,
+ "plain": 1,
+ "old": 1,
+ "*find_assigns": 1,
+ "name": 31,
+ "*names": 3,
+ "type": 5,
+ "after": 1,
+ "runs": 1,
+ "idx": 4,
+ "while": 3,
+ "do": 2,
+ "+": 2,
+ "expand_elseif_assign": 2,
+ "ifstm": 5,
+ "#ifstm": 1,
+ "case": 13,
+ "split": 4,
+ "constructor_name": 2,
+ "with_continue_listener": 4,
+ "continue_name": 13,
+ "nil": 8,
+ "@listen": 1,
+ "unless": 6,
+ "@put_name": 2,
+ "build.group": 14,
+ "@splice": 1,
+ "lines": 2,
+ "Transformer": 2,
+ "@transformers": 3,
+ "@seen_nodes": 3,
+ "setmetatable": 1,
+ "__mode": 1,
+ "scope": 4,
+ "node": 68,
+ "...": 10,
+ "transformer": 3,
+ "res": 3,
+ "or": 6,
+ "bind": 1,
+ "@transform": 2,
+ "__call": 1,
+ "can_transform": 1,
+ "construct_comprehension": 2,
+ "inner": 2,
+ "clauses": 4,
+ "current_stms": 7,
+ "_": 10,
+ "clause": 4,
+ "t": 10,
+ "iter": 2,
+ "elseif": 1,
+ "cond": 11,
+ "error": 4,
+ "..t": 1,
+ "Statement": 2,
+ "root_stms": 1,
+ "@": 1,
+ "assign": 9,
+ "values": 10,
+ "bubble": 1,
+ "cascading": 2,
+ "transformed": 2,
+ "#values": 1,
+ "value": 7,
+ "@transform.statement": 2,
+ "types.cascading": 1,
+ "ret": 16,
+ "types.is_value": 1,
+ "destructure.has_destructure": 2,
+ "destructure.split_assign": 1,
+ "continue": 1,
+ "@send": 1,
+ "build.assign_one": 11,
+ "export": 1,
+ "they": 1,
+ "are": 1,
+ "included": 1,
+ "#node": 3,
+ "cls": 5,
+ "cls.name": 1,
+ "build.assign": 3,
+ "update": 1,
+ "op": 2,
+ "op_final": 3,
+ "match": 1,
+ "..op": 1,
+ "not": 2,
+ "source": 7,
+ "stubs": 1,
+ "real_names": 4,
+ "build.chain": 7,
+ "base": 8,
+ "stub": 4,
+ "*stubs": 2,
+ "source_name": 3,
+ "comprehension": 1,
+ "action": 4,
+ "decorated": 1,
+ "dec": 6,
+ "wrapped": 4,
+ "fail": 5,
+ "..": 1,
+ "build.declare": 1,
+ "*stm": 1,
+ "expand": 1,
+ "destructure.build_assign": 2,
+ "build.do": 2,
+ "apply": 1,
+ "decorator": 1,
+ "mutate": 1,
+ "all": 1,
+ "bodies": 1,
+ "body_idx": 3,
+ "with": 3,
+ "block": 2,
+ "scope_name": 5,
+ "named_assign": 2,
+ "assign_name": 1,
+ "@set": 1,
+ "foreach": 1,
+ "node.iter": 1,
+ "destructures": 5,
+ "node.names": 3,
+ "proxy": 2,
+ "next": 1,
+ "node.body": 9,
+ "index_name": 3,
+ "list_name": 6,
+ "slice_var": 3,
+ "bounds": 3,
+ "slice": 7,
+ "#list": 1,
+ "table.remove": 2,
+ "max_tmp_name": 5,
+ "index": 2,
+ "conds": 3,
+ "exp_name": 3,
+ "convert": 1,
+ "into": 1,
+ "statment": 1,
+ "convert_cond": 2,
+ "case_exps": 3,
+ "cond_exp": 5,
+ "first": 3,
+ "if_stm": 5,
+ "*conds": 1,
+ "if_cond": 4,
+ "parent_assign": 3,
+ "parent_val": 1,
+ "apart": 1,
+ "properties": 4,
+ "statements": 4,
+ "item": 3,
+ "tuple": 8,
+ "*item": 1,
+ "constructor": 7,
+ "*properties": 1,
+ "key": 3,
+ "parent_cls_name": 5,
+ "base_name": 4,
+ "self_name": 4,
+ "cls_name": 1,
+ "build.fndef": 3,
+ "args": 3,
+ "arrow": 1,
+ "then": 2,
+ "constructor.arrow": 1,
+ "real_name": 6,
+ "#real_name": 1,
+ "build.table": 2,
+ "look": 1,
+ "up": 1,
+ "object": 1,
+ "class_lookup": 3,
+ "cls_mt": 2,
+ "out_body": 1,
+ "make": 1,
+ "sure": 1,
+ "we": 1,
+ "don": 1,
+ "string": 1,
+ "parens": 2,
+ "colon_stub": 1,
+ "super": 1,
+ "dot": 1,
+ "varargs": 2,
+ "arg_list": 1,
+ "Value": 1
+ },
+ "Mercury": {
+ "%": 416,
+ "-": 6967,
+ "module": 46,
+ "rot13_verbose.": 1,
+ "interface.": 13,
+ "import_module": 126,
+ "io.": 8,
+ "pred": 255,
+ "main": 15,
+ "(": 3351,
+ "io__state": 4,
+ ")": 3351,
+ ".": 610,
+ "mode": 8,
+ "di": 54,
+ "uo": 58,
+ "is": 246,
+ "det.": 184,
+ "implementation.": 12,
+ "char": 10,
+ "int": 129,
+ "require.": 6,
+ "rot13a/2": 1,
+ "A": 14,
+ "table": 1,
+ "to": 16,
+ "map": 7,
+ "the": 27,
+ "alphabetic": 2,
+ "characters": 1,
+ "their": 1,
+ "rot13": 11,
+ "equivalents": 1,
+ "fails": 1,
+ "if": 15,
+ "input": 1,
+ "not": 7,
+ "rot13a": 55,
+ "in": 510,
+ "out": 337,
+ "semidet.": 10,
+ "rot13/2": 1,
+ "Applies": 1,
+ "algorithm": 1,
+ "a": 10,
+ "character.": 1,
+ "Char": 12,
+ "RotChar": 8,
+ "TmpChar": 2,
+ "then": 3,
+ "else": 8,
+ "io__read_char": 1,
+ "Res": 8,
+ "{": 27,
+ "ok": 3,
+ "}": 28,
+ "io__write_char": 1,
+ ";": 913,
+ "eof": 6,
+ "error": 7,
+ "ErrorCode": 4,
+ "io__error_message": 2,
+ "ErrorMessage": 4,
+ "io__stderr_stream": 1,
+ "StdErr": 8,
+ "io__write_string": 2,
+ "io__nl": 1,
+ "rot13_concise.": 1,
+ "state": 3,
+ "string.": 7,
+ "alphabet": 3,
+ "cycle": 4,
+ "rot_n": 2,
+ "N": 6,
+ "char_to_string": 1,
+ "CharString": 2,
+ "sub_string_search": 1,
+ "Index": 3,
+ "NewIndex": 2,
+ "+": 127,
+ "mod": 1,
+ "*": 20,
+ "//": 2,
+ "index_det": 1,
+ "read_char": 1,
+ "print": 3,
+ "error_message": 1,
+ "stderr_stream": 1,
+ "nl": 1,
+ "check_hlds.polymorphism.": 1,
+ "hlds.": 1,
+ "hlds.hlds_goal.": 2,
+ "hlds.hlds_module.": 2,
+ "hlds.hlds_pred.": 2,
+ "hlds.hlds_rtti.": 2,
+ "mdbcomp.": 1,
+ "mdbcomp.prim_data.": 3,
+ "parse_tree.": 1,
+ "parse_tree.prog_data.": 2,
+ "list.": 4,
+ "maybe.": 3,
+ "term.": 3,
+ "polymorphism_process_module": 2,
+ "module_info": 26,
+ "polymorphism_process_generated_pred": 2,
+ "pred_id": 15,
+ "unification_typeinfos_rtti_varmaps": 2,
+ "mer_type": 21,
+ "rtti_varmaps": 9,
+ "unification": 8,
+ "hlds_goal_info": 22,
+ "polymorphism_process_new_call": 2,
+ "pred_info": 20,
+ "proc_info": 11,
+ "proc_id": 12,
+ "list": 82,
+ "prog_var": 58,
+ "builtin_state": 1,
+ "maybe": 20,
+ "call_unify_context": 2,
+ "sym_name": 3,
+ "hlds_goal": 45,
+ "poly_info": 45,
+ "polymorphism_make_type_info_vars": 1,
+ "term.context": 3,
+ "polymorphism_make_type_info_var": 1,
+ "type": 57,
+ "int_or_var": 2,
+ "iov_int": 1,
+ "iov_var": 1,
+ "gen_extract_type_info": 1,
+ "tvar": 10,
+ "kind": 1,
+ "prog_varset": 14,
+ "vartypes": 12,
+ "poly_info.": 1,
+ "create_poly_info": 1,
+ "poly_info_extract": 1,
+ "build_typeclass_info_type": 3,
+ "prog_constraint": 4,
+ "type_is_typeclass_info": 1,
+ "type_is_type_info_or_ctor_type": 1,
+ "build_type_info_type": 1,
+ "get_special_proc": 1,
+ "special_pred_id": 2,
+ "get_special_proc_det": 1,
+ "convert_pred_to_lambda_goal": 3,
+ "purity": 1,
+ "lambda_eval_method": 1,
+ "unify_context": 3,
+ "context": 1,
+ "unify_rhs": 4,
+ "fix_undetermined_mode_lambda_goal": 2,
+ "rhs_lambda_goal": 7,
+ "init_type_info_var": 1,
+ "init_const_type_ctor_info_var": 1,
+ "type_ctor": 1,
+ "cons_id": 2,
+ "type_info_kind": 2,
+ "type_info": 8,
+ "type_ctor_info.": 1,
+ "new_type_info_var_raw": 1,
+ "check_hlds.clause_to_proc.": 1,
+ "check_hlds.mode_util.": 1,
+ "check_hlds.type_util.": 2,
+ "hlds.from_ground_term_util.": 1,
+ "hlds.const_struct.": 1,
+ "hlds.goal_util.": 1,
+ "hlds.hlds_args.": 1,
+ "hlds.hlds_clauses.": 1,
+ "hlds.hlds_code_util.": 1,
+ "hlds.hlds_data.": 2,
+ "hlds.instmap.": 2,
+ "hlds.passes_aux.": 1,
+ "hlds.pred_table.": 1,
+ "hlds.quantification.": 1,
+ "hlds.special_pred.": 1,
+ "libs.": 1,
+ "libs.globals.": 2,
+ "libs.options.": 3,
+ "mdbcomp.goal_path.": 2,
+ "mdbcomp.program_representation.": 1,
+ "parse_tree.builtin_lib_types.": 2,
+ "parse_tree.prog_mode.": 1,
+ "parse_tree.prog_type.": 2,
+ "parse_tree.prog_type_subst.": 1,
+ "parse_tree.set_of_var.": 2,
+ "assoc_list.": 3,
+ "bool.": 4,
+ "int.": 4,
+ "map.": 3,
+ "pair.": 3,
+ "set.": 4,
+ "solutions.": 1,
+ "varset.": 2,
+ "ModuleInfo": 49,
+ "module_info_get_preds": 3,
+ ".ModuleInfo": 8,
+ "Preds0": 2,
+ "map.keys": 3,
+ "PredIds0": 2,
+ "list.foldl": 6,
+ "maybe_polymorphism_process_pred": 3,
+ "Preds1": 2,
+ "PredIds1": 2,
+ "fixup_pred_polymorphism": 4,
+ "expand_class_method_bodies": 1,
+ "PredId": 50,
+ "module_info_pred_info": 6,
+ "PredInfo": 64,
+ "PredModule": 8,
+ "pred_info_module": 4,
+ "PredName": 8,
+ "pred_info_name": 4,
+ "PredArity": 6,
+ "pred_info_orig_arity": 3,
+ "no_type_info_builtin": 3,
+ "copy_module_clauses_to_procs": 1,
+ "[": 203,
+ "]": 203,
+ "polymorphism_process_pred_msg": 3,
+ "PredTable0": 3,
+ "map.lookup": 2,
+ "PredInfo0": 16,
+ "pred_info_get_clauses_info": 2,
+ "ClausesInfo0": 5,
+ "clauses_info_get_vartypes": 2,
+ "VarTypes0": 12,
+ "clauses_info_get_headvars": 2,
+ "HeadVars": 20,
+ "pred_info_get_arg_types": 7,
+ "TypeVarSet": 15,
+ "ExistQVars": 13,
+ "ArgTypes0": 3,
+ "proc_arg_vector_partition_poly_args": 1,
+ "ExtraHeadVarList": 2,
+ "OldHeadVarList": 2,
+ "lookup_var_types": 6,
+ "ExtraArgTypes": 2,
+ "ArgTypes": 6,
+ "pred_info_set_arg_types": 1,
+ "PredInfo1": 5,
+ "_": 149,
+ "|": 38,
+ "OldHeadVarTypes": 2,
+ "type_list_subsumes": 2,
+ "Subn": 3,
+ "map.is_empty": 1,
+ "pred_info_set_existq_tvar_binding": 1,
+ "PredInfo2": 7,
+ "polymorphism_introduce_exists_casts_pred": 3,
+ "map.det_update": 4,
+ "PredTable": 2,
+ "module_info_set_preds": 1,
+ "pred_info_get_procedures": 2,
+ ".PredInfo": 2,
+ "Procs0": 4,
+ "map.map_values_only": 1,
+ ".ProcInfo": 2,
+ "ProcInfo": 43,
+ "det": 21,
+ "introduce_exists_casts_proc": 1,
+ "Procs": 4,
+ "pred_info_set_procedures": 2,
+ "trace": 4,
+ "compiletime": 4,
+ "flag": 4,
+ "io": 6,
+ "IO": 4,
+ "write_pred_progress_message": 1,
+ "polymorphism_process_pred": 4,
+ "mutable": 3,
+ "selected_pred": 1,
+ "bool": 406,
+ "no": 365,
+ "ground": 9,
+ "untrailed": 2,
+ "level": 1,
+ "promise_pure": 30,
+ "pred_id_to_int": 1,
+ "impure": 2,
+ "set_selected_pred": 2,
+ "yes": 144,
+ "true": 3,
+ "polymorphism_process_clause_info": 3,
+ "ClausesInfo": 13,
+ "Info": 134,
+ "ExtraArgModes": 20,
+ "poly_info_get_module_info": 4,
+ "poly_info_get_const_struct_db": 1,
+ "ConstStructDb": 2,
+ "module_info_set_const_struct_db": 1,
+ "poly_info_get_typevarset": 4,
+ "pred_info_set_typevarset": 1,
+ "pred_info_set_clauses_info": 1,
+ "ProcIds": 5,
+ "pred_info_procids": 2,
+ "polymorphism_process_proc_in_table": 3,
+ "module_info_set_pred_info": 1,
+ "clauses_info": 6,
+ "poly_arg_vector": 9,
+ "mer_mode": 14,
+ "ModuleInfo0": 8,
+ "init_poly_info": 1,
+ ".ClausesInfo": 2,
+ "_VarSet": 1,
+ "ExplicitVarTypes": 2,
+ "_TVarNameMap": 1,
+ "_VarTypes": 1,
+ "HeadVars0": 5,
+ "ClausesRep0": 2,
+ "ItemNumbers": 2,
+ "_RttiVarMaps": 1,
+ "HaveForeignClauses": 2,
+ "setup_headvars": 3,
+ "UnconstrainedTVars": 15,
+ "ExtraTypeInfoHeadVars": 4,
+ "ExistTypeClassInfoHeadVars": 6,
+ "get_clause_list": 1,
+ "Clauses0": 2,
+ "list.map_foldl": 2,
+ "polymorphism_process_clause": 3,
+ "Clauses": 2,
+ "poly_info_get_varset": 4,
+ ".Info": 25,
+ "VarSet": 15,
+ "poly_info_get_var_types": 6,
+ "VarTypes": 22,
+ "poly_info_get_rtti_varmaps": 4,
+ "RttiVarMaps": 16,
+ "set_clause_list": 1,
+ "ClausesRep": 2,
+ "map.init": 7,
+ "TVarNameMap": 2,
+ "This": 2,
+ "only": 4,
+ "used": 2,
+ "while": 1,
+ "adding": 1,
+ "clauses.": 1,
+ "proc_arg_vector": 9,
+ "clause": 2,
+ "OldHeadVars": 2,
+ "NewHeadVars": 2,
+ "Clause": 2,
+ "pred_info_is_imported": 2,
+ "Goal0": 21,
+ ".Clause": 1,
+ "clause_body": 2,
+ "empty_cache_maps": 4,
+ "poly_info_set_num_reuses": 1,
+ "polymorphism_process_goal": 20,
+ "Goal1": 2,
+ "produce_existq_tvars": 3,
+ "Goal2": 2,
+ "pred_info_get_exist_quant_tvars": 1,
+ "fixup_quantification": 1,
+ "Goal": 40,
+ "proc_table": 2,
+ "ProcId": 31,
+ "ProcTable": 2,
+ ".ProcTable": 1,
+ "ProcInfo0": 2,
+ "polymorphism_process_proc": 3,
+ "pred_info_is_pseudo_imported": 1,
+ "hlds_pred.in_in_unification_proc_id": 1,
+ "HeadVarList": 4,
+ "proc_arg_vector_to_list": 2,
+ "clauses_info_get_rtti_varmaps": 1,
+ "clauses_info_get_varset": 1,
+ "proc_info_set_headvars": 1,
+ "proc_info_set_rtti_varmaps": 1,
+ "proc_info_set_varset": 1,
+ "proc_info_set_vartypes": 1,
+ "copy_clauses_to_proc": 1,
+ "proc_info_get_argmodes": 2,
+ "ArgModes1": 2,
+ "ExtraArgModesList": 2,
+ "poly_arg_vector_to_list": 1,
+ "ArgModes": 5,
+ "proc_info_set_argmodes": 1,
+ "ExtraHeadTypeInfoVars": 7,
+ "ExistHeadTypeClassInfoVars": 9,
+ "pred_info_get_origin": 1,
+ "Origin": 8,
+ "ExtraArgModes0": 3,
+ "poly_arg_vector_init": 1,
+ "origin_instance_method": 1,
+ "InstanceMethodConstraints": 4,
+ "setup_headvars_instance_method": 3,
+ "origin_special_pred": 1,
+ "origin_transformed": 1,
+ "origin_created": 1,
+ "origin_assertion": 1,
+ "origin_lambda": 1,
+ "origin_user": 1,
+ "pred_info_get_class_context": 4,
+ "ClassContext": 6,
+ "InstanceTVars": 7,
+ "InstanceUnconstrainedTVars": 2,
+ "InstanceUnconstrainedTypeInfoVars": 2,
+ "setup_headvars_2": 4,
+ "instance_method_constraints": 2,
+ "InstanceTypes": 2,
+ "InstanceConstraints": 3,
+ "type_vars_list": 5,
+ "get_unconstrained_tvars": 1,
+ "UnconstrainedInstanceTVars": 6,
+ "ArgTypeVarSet": 5,
+ "make_head_vars": 3,
+ "UnconstrainedInstanceTypeInfoVars": 7,
+ "make_typeclass_info_head_vars": 3,
+ "do_record_type_info_locns": 3,
+ "InstanceHeadTypeClassInfoVars": 4,
+ "proc_arg_vector_set_instance_type_infos": 1,
+ "proc_arg_vector_set_instance_typeclass_infos": 1,
+ "RttiVarMaps0": 4,
+ "rtti_reuse_typeclass_info_var": 3,
+ "poly_info_set_rtti_varmaps": 3,
+ "in_mode": 3,
+ "InMode": 3,
+ "list.duplicate": 6,
+ "list.length": 16,
+ "UnconstrainedInstanceTypeInfoModes": 2,
+ "InstanceHeadTypeClassInfoModes": 2,
+ "poly_arg_vector_set_instance_type_infos": 1,
+ "poly_arg_vector_set_instance_typeclass_infos": 1,
+ "prog_constraints": 1,
+ "AllUnconstrainedTVars": 2,
+ "AllExtraHeadTypeInfoVars": 2,
+ "constraints": 4,
+ "UnivConstraints": 3,
+ "ExistConstraints": 6,
+ "prog_type.constraint_list_get_tvars": 2,
+ "UnivConstrainedTVars": 2,
+ "ExistConstrainedTVars": 2,
+ "poly_info_get_constraint_map": 4,
+ "ConstraintMap": 12,
+ "get_improved_exists_head_constraints": 4,
+ "ActualExistConstraints": 9,
+ "pred_info_get_markers": 1,
+ "PredMarkers": 2,
+ "check_marker": 1,
+ "marker_class_method": 1,
+ "RecordExistQLocns": 3,
+ "do_not_record_type_info_locns": 1,
+ "UnivHeadTypeClassInfoVars": 4,
+ "HeadTypeVars": 2,
+ "list.delete_elems": 12,
+ "UnconstrainedTVars0": 2,
+ "UnconstrainedTVars1": 2,
+ "UnconstrainedTVars2": 2,
+ "list.remove_dups": 4,
+ "UnconstrainedUnivTVars": 7,
+ "UnconstrainedExistTVars": 6,
+ "ExistHeadTypeInfoVars": 5,
+ "UnivHeadTypeInfoVars": 4,
+ "list.condense": 4,
+ "proc_arg_vector_set_univ_type_infos": 1,
+ "HeadVars1": 2,
+ "proc_arg_vector_set_exist_type_infos": 1,
+ "HeadVars2": 2,
+ "proc_arg_vector_set_univ_typeclass_infos": 1,
+ "HeadVars3": 2,
+ "proc_arg_vector_set_exist_typeclass_infos": 1,
+ "In": 6,
+ "out_mode": 2,
+ "Out": 6,
+ "NumUnconstrainedUnivTVars": 2,
+ "NumUnconstrainedExistTVars": 2,
+ "NumUnivClassInfoVars": 2,
+ "NumExistClassInfoVars": 2,
+ "UnivTypeInfoModes": 2,
+ "ExistTypeInfoModes": 2,
+ "UnivTypeClassInfoModes": 2,
+ "ExistTypeClassInfoModes": 2,
+ "poly_arg_vector_set_univ_type_infos": 1,
+ "poly_arg_vector_set_exist_type_infos": 1,
+ "poly_arg_vector_set_univ_typeclass_infos": 1,
+ "poly_arg_vector_set_exist_typeclass_infos": 1,
+ "some": 4,
+ "ToLocn": 4,
+ "TheVar": 2,
+ "TheLocn": 2,
+ "list.map": 17,
+ "UnivTypeLocns": 2,
+ "list.foldl_corresponding": 3,
+ "rtti_det_insert_type_info_locn": 3,
+ "ExistTypeLocns": 2,
+ "UnconstrainedInstanceTypeLocns": 2,
+ ".RttiVarMaps": 1,
+ "TypeInfoHeadVars": 2,
+ "pred_info_get_tvar_kinds": 2,
+ "KindMap": 2,
+ "PredClassContext": 5,
+ "PredExistConstraints": 2,
+ "exist_constraints": 1,
+ "ExistQVarsForCall": 2,
+ "GoalInfo": 44,
+ "Context": 20,
+ "goal_info_get_context": 4,
+ "make_typeclass_info_vars": 3,
+ "ExistTypeClassVarsMCAs": 2,
+ "ExtraTypeClassGoals": 5,
+ "assoc_list.keys": 8,
+ "ExistTypeClassVars": 3,
+ "assign_var_list": 8,
+ "ExtraTypeClassUnifyGoals": 2,
+ "vartypes_is_empty": 1,
+ "PredToActualTypeSubst": 4,
+ "ActualArgTypes": 8,
+ "ArgTypeSubst": 2,
+ "apply_subst_to_tvar_list": 1,
+ "ActualTypes": 2,
+ "polymorphism_do_make_type_info_vars": 5,
+ "TypeInfoVarsMCAs": 2,
+ "ExtraTypeInfoGoals": 4,
+ "TypeInfoVars": 5,
+ "ExtraTypeInfoUnifyGoals": 2,
+ "GoalList": 8,
+ "conj_list_to_goal": 6,
+ "unexpected": 21,
+ "Var1": 5,
+ "Vars1": 2,
+ "Var2": 5,
+ "Vars2": 2,
+ "Goals": 13,
+ "assign_var": 3,
+ "true_goal": 1,
+ "term.context_init": 2,
+ "create_pure_atomic_complicated_unification": 1,
+ "rhs_var": 2,
+ "umc_explicit": 1,
+ "constraint_map": 1,
+ "NumExistConstraints": 4,
+ "search_hlds_constraint_list": 1,
+ "unproven": 3,
+ "goal_id": 1,
+ "ActualExistConstraints0": 2,
+ "GoalExpr0": 18,
+ "GoalInfo0": 41,
+ "generic_call": 1,
+ "plain_call": 5,
+ "ArgVars0": 23,
+ "polymorphism_process_call": 4,
+ "ExtraVars": 13,
+ "ExtraGoals": 13,
+ "ArgVars": 6,
+ "CallExpr": 4,
+ "call_args": 1,
+ "Call": 4,
+ "call_foreign_proc": 4,
+ "polymorphism_process_foreign_proc": 3,
+ "unify": 21,
+ "XVar": 11,
+ "Y": 9,
+ "Mode": 12,
+ "Unification": 16,
+ "UnifyContext": 15,
+ "polymorphism_process_unify": 4,
+ "conj": 5,
+ "ConjType": 4,
+ "Goals0": 13,
+ "plain_conj": 4,
+ "polymorphism_process_plain_conj": 5,
+ "parallel_conj": 1,
+ "get_cache_maps_snapshot": 11,
+ "InitialSnapshot": 36,
+ "polymorphism_process_par_conj": 5,
+ "GoalExpr": 19,
+ "disj": 2,
+ "polymorphism_process_disj": 6,
+ "set_cache_maps_snapshot": 15,
+ "if_then_else": 2,
+ "Vars": 10,
+ "Cond0": 2,
+ "Then0": 2,
+ "Else0": 2,
+ "Cond": 2,
+ "Then": 2,
+ "Else": 2,
+ "negation": 2,
+ "SubGoal0": 14,
+ "SubGoal": 16,
+ "switch": 2,
+ "Var": 13,
+ "CanFail": 4,
+ "Cases0": 4,
+ "polymorphism_process_cases": 5,
+ "Cases": 4,
+ "scope": 7,
+ "Reason0": 16,
+ "from_ground_term": 2,
+ "TermVar": 4,
+ "Kind": 5,
+ "from_ground_term_initial": 2,
+ "polymorphism_process_from_ground_term_initial": 3,
+ "from_ground_term_construct": 1,
+ "from_ground_term_deconstruct": 1,
+ "from_ground_term_other": 1,
+ "promise_solutions": 1,
+ "promise_purity": 1,
+ "require_detism": 1,
+ "require_complete_switch": 1,
+ "commit": 1,
+ "barrier": 1,
+ "loop_control": 1,
+ "exist_quant": 1,
+ "trace_goal": 1,
+ "shorthand": 2,
+ "ShortHand0": 4,
+ "atomic_goal": 2,
+ "GoalType": 2,
+ "Outer": 2,
+ "Inner": 2,
+ "MainGoal0": 2,
+ "OrElseGoals0": 2,
+ "OrElseInners": 2,
+ "MainGoal": 2,
+ "OrElseGoals": 2,
+ "ShortHand": 3,
+ "try_goal": 2,
+ "MaybeIO": 2,
+ "ResultVar": 2,
+ "SubGoalExpr0": 4,
+ "SubGoalInfo": 2,
+ "Conjuncts0": 2,
+ "ConjunctA0": 2,
+ "ConjunctB0": 2,
+ "ConjunctA": 2,
+ "ConjunctB": 2,
+ "Conjuncts": 2,
+ "SubGoalExpr": 2,
+ "bi_implication": 1,
+ "hlds_goal_expr": 2,
+ "SubGoalInfo0": 2,
+ "SubGoals0Prime": 2,
+ "SubGoals0": 2,
+ "polymorphism_process_fgti_goals": 5,
+ "RevMarkedSubGoals": 2,
+ "fgt_invariants_kept": 2,
+ "InvariantsStatus": 7,
+ "Reason": 2,
+ "fgt_invariants_broken": 2,
+ "introduce_partial_fgt_scopes": 1,
+ "deconstruct_top_down": 1,
+ "fgt_marked_goal": 2,
+ "fgt_invariants_status": 2,
+ "RevMarkedGoals": 4,
+ "OldInfo": 3,
+ "XVarPrime": 2,
+ "ModePrime": 2,
+ "UnificationPrime": 2,
+ "UnifyContextPrime": 2,
+ "rhs_functor": 5,
+ "ConsIdPrime": 2,
+ "YVarsPrime": 2,
+ "ConsId": 10,
+ "YVars": 4,
+ "polymorphism_process_unify_functor": 4,
+ "Changed": 10,
+ "VarSetBefore": 2,
+ "MaxVarBefore": 2,
+ "varset.max_var": 2,
+ "poly_info_get_num_reuses": 2,
+ "NumReusesBefore": 2,
+ "VarSetAfter": 2,
+ "MaxVarAfter": 2,
+ "NumReusesAfter": 2,
+ "expect": 15,
+ "MarkedGoal": 3,
+ "fgt_kept_goal": 1,
+ "fgt_broken_goal": 1,
+ ".RevMarkedGoals": 1,
+ "unify_mode": 2,
+ "Unification0": 8,
+ "_YVar": 1,
+ "lookup_var_type": 3,
+ "Type": 18,
+ "unification_typeinfos": 5,
+ "_Changed": 3,
+ "Args": 11,
+ "Purity": 9,
+ "Groundness": 6,
+ "PredOrFunc": 6,
+ "EvalMethod": 8,
+ "LambdaVars": 13,
+ "Modes": 4,
+ "Det": 4,
+ "LambdaGoal0": 5,
+ "LambdaGoal1": 2,
+ "fixup_lambda_quantification": 1,
+ "LambdaGoal": 6,
+ "NonLocalTypeInfos": 3,
+ "set_of_var.to_sorted_list": 1,
+ "NonLocalTypeInfosList": 2,
+ "Y1": 2,
+ "NonLocals0": 10,
+ "goal_info_get_nonlocals": 6,
+ "set_of_var.union": 3,
+ "NonLocals": 12,
+ "goal_info_set_nonlocals": 6,
+ "type_vars": 2,
+ "TypeVars": 8,
+ "get_type_info_locn": 1,
+ "TypeInfoLocns": 6,
+ "add_unification_typeinfos": 4,
+ "rtti_lookup_type_info_locn": 1,
+ "type_info_locn": 1,
+ "type_info_locn_var": 1,
+ "TypeInfoVars0": 2,
+ ".GoalInfo": 1,
+ "set_of_var.insert_list": 4,
+ ".Unification": 5,
+ "complicated_unify": 2,
+ "construct": 1,
+ "deconstruct": 2,
+ "assign": 46,
+ "simple_test": 1,
+ "X0": 8,
+ "ConsId0": 5,
+ "Mode0": 4,
+ "TypeOfX": 6,
+ "Arity": 5,
+ "closure_cons": 1,
+ "ShroudedPredProcId": 2,
+ "proc": 2,
+ "ProcId0": 3,
+ "unshroud_pred_proc_id": 1,
+ "type_is_higher_order_details": 1,
+ "_PredOrFunc": 1,
+ "CalleeArgTypes": 2,
+ "invalid_proc_id": 1,
+ "goal_info_add_feature": 1,
+ "feature_lambda_undetermined_mode": 1,
+ "GoalInfo1": 6,
+ "VarSet0": 2,
+ "Functor0": 6,
+ "poly_info_set_varset_and_types": 1,
+ "cons": 3,
+ "ConsTypeCtor": 2,
+ "remove_new_prefix": 1,
+ "OrigFunctor": 2,
+ "IsConstruction": 7,
+ "type_util.get_existq_cons_defn": 1,
+ "ConsDefn": 2,
+ "polymorphism_process_existq_unify_functor": 3,
+ "UnifyExpr": 2,
+ "Unify": 2,
+ "PredArgTypes": 10,
+ "Functor": 6,
+ "create_fresh_vars": 5,
+ "module_info_pred_proc_info": 4,
+ "QualifiedPName": 5,
+ "qualified": 1,
+ "cons_id_dummy_type_ctor": 1,
+ "RHS": 2,
+ "CallUnifyContext": 2,
+ "LambdaGoalExpr": 2,
+ "not_builtin": 3,
+ "OutsideVars": 2,
+ "set_of_var.list_to_set": 3,
+ "InsideVars": 2,
+ "set_of_var.intersect": 1,
+ "LambdaNonLocals": 2,
+ "GoalId": 8,
+ "goal_info_get_goal_id": 3,
+ "goal_info_init": 1,
+ "LambdaGoalInfo0": 2,
+ "goal_info_set_context": 1,
+ "LambdaGoalInfo1": 2,
+ "LambdaGoalInfo2": 2,
+ "goal_info_set_purity": 1,
+ "LambdaGoalInfo3": 2,
+ "goal_info_set_goal_id": 1,
+ "LambdaGoalInfo": 4,
+ "lambda_modes_and_det": 4,
+ "LambdaModes": 6,
+ "LambdaDet": 6,
+ "pred_info_is_pred_or_func": 1,
+ "ho_ground": 1,
+ "_LambdaModes0": 1,
+ "_LambdaDet0": 1,
+ "goal_to_conj_list": 1,
+ "LambdaGoalList0": 2,
+ "list.split_last": 1,
+ "LambdaGoalButLast0": 2,
+ "LastGoal0": 2,
+ "LastGoalExpr0": 2,
+ "LastGoalInfo0": 2,
+ "PredId0": 2,
+ "_DummyProcId": 1,
+ "Args0": 5,
+ "MaybeCallUnifyContext0": 2,
+ "QualifiedPName0": 2,
+ "LambdaGoalButLast": 2,
+ "LastGoalInfo": 2,
+ "MaybeCallUnifyContext": 4,
+ "LastGoalExpr": 2,
+ "LastGoal": 2,
+ "prog_vars": 1,
+ "determinism": 1,
+ "NumArgModes": 2,
+ "NumLambdaVars": 2,
+ "list.drop": 2,
+ "LambdaModesPrime": 2,
+ "proc_info_get_declared_determinism": 1,
+ "MaybeDet": 3,
+ "sorry": 1,
+ "Types": 6,
+ "varset.new_var": 1,
+ "add_var_type": 1,
+ "ctor_defn": 2,
+ "CtorDefn": 2,
+ "ActualRetType": 2,
+ "CtorTypeVarSet": 2,
+ "CtorExistQVars": 2,
+ "CtorKindMap": 2,
+ "CtorExistentialConstraints": 2,
+ "CtorArgTypes": 2,
+ "CtorRetType": 2,
+ "TypeVarSet0": 5,
+ "tvarset_merge_renaming": 3,
+ "CtorToParentRenaming": 6,
+ "apply_variable_renaming_to_tvar_list": 2,
+ "ParentExistQVars": 6,
+ "apply_variable_renaming_to_tvar_kind_map": 2,
+ "ParentKindMap": 7,
+ "apply_variable_renaming_to_prog_constraint_list": 1,
+ "ParentExistentialConstraints": 3,
+ "apply_variable_renaming_to_type_list": 4,
+ "ParentArgTypes": 6,
+ "apply_variable_renaming_to_type": 1,
+ "ParentRetType": 2,
+ "poly_info_set_typevarset": 3,
+ "type_list_subsumes_det": 3,
+ "ParentToActualTypeSubst": 6,
+ "NumExistentialConstraints": 3,
+ "lookup_hlds_constraint_list": 4,
+ "ActualExistentialConstraints": 4,
+ "ExtraTypeClassVarsMCAs": 2,
+ "ExtraTypeClassVars": 2,
+ "assumed": 2,
+ "make_existq_typeclass_info_vars": 2,
+ "constraint_list_get_tvars": 3,
+ "ParentExistConstrainedTVars": 4,
+ "ParentUnconstrainedExistQVars": 2,
+ "apply_rec_subst_to_tvar_list": 4,
+ "ActualExistentialTypes": 2,
+ "ExtraTypeInfoVarsMCAs": 2,
+ "ExtraTypeInfoVars": 2,
+ "ExtraTypeClassVars.": 1,
+ "bound": 1,
+ "Attributes": 2,
+ "ProcExtraArgs": 2,
+ "MaybeTraceRuntimeCond": 2,
+ "Impl": 14,
+ "foreign_arg_var": 1,
+ "CanOptAwayUnnamed": 11,
+ "polymorphism_process_foreign_proc_args": 3,
+ "ExtraArgs": 5,
+ "pragma_foreign_code_impl": 4,
+ "foreign_arg": 1,
+ "PredTypeVarSet": 8,
+ "UnivCs": 4,
+ "ExistCs": 4,
+ "UnivVars0": 2,
+ "get_constrained_vars": 2,
+ "UnivConstrainedVars": 2,
+ "ExistVars0": 2,
+ "ExistConstrainedVars": 2,
+ "PredTypeVars0": 2,
+ "PredTypeVars1": 2,
+ "PredTypeVars2": 2,
+ "PredTypeVars": 3,
+ "foreign_proc_add_typeclass_info": 4,
+ "ExistTypeClassArgInfos": 2,
+ "UnivTypeClassArgInfos": 2,
+ "TypeClassArgInfos": 2,
+ "list.filter": 1,
+ "X": 9,
+ "semidet": 2,
+ "list.member": 2,
+ "ExistUnconstrainedVars": 2,
+ "UnivUnconstrainedVars": 2,
+ "foreign_proc_add_typeinfo": 4,
+ "ExistTypeArgInfos": 2,
+ "UnivTypeArgInfos": 2,
+ "TypeInfoArgInfos": 2,
+ "ArgInfos": 2,
+ "TypeInfoTypes": 2,
+ "func": 24,
+ "type_info_type": 1,
+ "UnivTypes": 2,
+ "ExistTypes": 2,
+ "OrigArgTypes": 2,
+ "make_foreign_args": 1,
+ "tvarset": 3,
+ "pair": 7,
+ "string": 115,
+ "box_policy": 2,
+ "Constraint": 2,
+ "MaybeArgName": 7,
+ "native_if_possible": 2,
+ "constraint": 2,
+ "SymName": 4,
+ "Name": 4,
+ "sym_name_to_string_sep": 1,
+ "TypeVarNames": 2,
+ "underscore_and_tvar_name": 3,
+ "string.append_list": 1,
+ "ConstraintVarName": 3,
+ "foreign_code_does_not_use_variable": 4,
+ "TVar": 4,
+ "varset.search_name": 1,
+ "TypeVarName": 2,
+ "C_VarName": 3,
+ "VarName": 2,
+ "foreign_code_uses_variable": 1,
+ "TVarName": 2,
+ "varset.lookup_name": 2,
+ "TVarName0": 1,
+ "TVarName0.": 1,
+ "cache_maps": 3,
+ "case": 4,
+ "Case0": 2,
+ "Case": 2,
+ "MainConsId": 2,
+ "OtherConsIds": 2,
+ "PredExistQVars": 2,
+ "PredKindMap": 3,
+ "varset.is_empty": 1,
+ "PredToParentTypeRenaming": 6,
+ "ParentTVars": 4,
+ "apply_variable_renaming_to_prog_constraints": 1,
+ "ParentClassContext": 2,
+ "ParentUnivConstraints": 3,
+ "ParentExistConstraints": 3,
+ "ParentUnivConstrainedTVars": 2,
+ "ParentUnconstrainedTVars0": 2,
+ "ParentUnconstrainedTVars1": 2,
+ "ParentUnconstrainedTVars": 3,
+ "ParentUnconstrainedUnivTVars": 3,
+ "ParentUnconstrainedExistTVars": 2,
+ "NumUnivConstraints": 2,
+ "ActualUnivConstraints": 2,
+ "ActualExistQVarTypes": 2,
+ "prog_type.type_list_to_var_list": 1,
+ "ActualExistQVars0": 2,
+ "ActualExistQVars": 2,
+ "ExtraUnivClassVarsMCAs": 2,
+ "ExtraUnivClassGoals": 2,
+ "ExtraUnivClassVars": 2,
+ "ExtraExistClassVars": 2,
+ "ExtraExistClassGoals": 2,
+ "ActualUnconstrainedUnivTypes": 2,
+ "ExtraUnivTypeInfoVarsMCAs": 2,
+ "ExtraUnivTypeInfoGoals": 2,
+ "ExtraUnivTypeInfoVars": 2,
+ "ActualUnconstrainedExistTypes": 2,
+ "ExtraExistTypeInfoVarsMCAs": 2,
+ "ExtraExistTypeInfoGoals": 2,
+ "ExtraExistTypeInfoVars": 2,
+ "CalleePredInfo": 2,
+ "CalleeProcInfo": 3,
+ "CallArgs0": 3,
+ "BuiltinState": 2,
+ "TVarSet0": 2,
+ "ActualArgTypes0": 3,
+ "PredTVarSet": 2,
+ "_PredExistQVars": 1,
+ "proc_info_get_headvars": 2,
+ "CalleeHeadVars": 2,
+ "proc_info_get_rtti_varmaps": 1,
+ "CalleeRttiVarMaps": 2,
+ "NCallArgs0": 2,
+ "NPredArgs": 2,
+ "NExtraArgs": 3,
+ "OrigPredArgTypes0": 2,
+ "list.take": 1,
+ "CalleeExtraHeadVars0": 2,
+ "OrigPredArgTypes": 2,
+ "CalleeExtraHeadVars": 2,
+ "TVarSet": 2,
+ "PredToParentRenaming": 3,
+ "OrigParentArgTypes": 2,
+ "ParentToActualTSubst": 2,
+ "GetTypeInfoTypes": 2,
+ "ProgVar": 2,
+ "TypeInfoType": 2,
+ "rtti_varmaps_var_info": 1,
+ "VarInfo": 4,
+ "type_info_var": 1,
+ "typeclass_info_var": 1,
+ "non_rtti_var": 1,
+ "PredTypeInfoTypes": 2,
+ "ParentTypeInfoTypes": 2,
+ "apply_rec_subst_to_type_list": 1,
+ "ActualTypeInfoTypes": 2,
+ "Ctxt": 2,
+ "ExtraArgsConstArgs": 2,
+ "CallArgs": 2,
+ "NonLocals1": 2,
+ "CallGoalExpr": 2,
+ "CallGoal": 2,
+ "char.": 1,
+ "getopt_io.": 1,
+ "short_option": 36,
+ "option": 9,
+ "long_option": 241,
+ "option_defaults": 2,
+ "option_data": 2,
+ "nondet.": 1,
+ "special_handler": 1,
+ "special_data": 1,
+ "option_table": 5,
+ "maybe_option_table": 3,
+ "inconsequential_options": 1,
+ "set": 16,
+ "options_help": 1,
+ "option_table_add_mercury_library_directory": 1,
+ "option_table.": 2,
+ "option_table_add_search_library_files_directory": 1,
+ "quote_arg": 1,
+ "inhibit_warnings": 4,
+ "inhibit_accumulator_warnings": 3,
+ "halt_at_warn": 3,
+ "halt_at_syntax_errors": 3,
+ "halt_at_auto_parallel_failure": 3,
+ "warn_singleton_vars": 3,
+ "warn_overlapping_scopes": 3,
+ "warn_det_decls_too_lax": 3,
+ "warn_inferred_erroneous": 3,
+ "warn_nothing_exported": 3,
+ "warn_unused_args": 3,
+ "warn_interface_imports": 3,
+ "warn_missing_opt_files": 3,
+ "warn_missing_trans_opt_files": 3,
+ "warn_missing_trans_opt_deps": 3,
+ "warn_non_contiguous_clauses": 3,
+ "warn_non_contiguous_foreign_procs": 3,
+ "warn_non_stratification": 3,
+ "warn_unification_cannot_succeed": 3,
+ "warn_simple_code": 3,
+ "warn_duplicate_calls": 3,
+ "warn_missing_module_name": 3,
+ "warn_wrong_module_name": 3,
+ "warn_smart_recompilation": 3,
+ "warn_undefined_options_variables": 3,
+ "warn_non_tail_recursion": 3,
+ "warn_target_code": 3,
+ "warn_up_to_date": 3,
+ "warn_stubs": 3,
+ "warn_dead_procs": 3,
+ "warn_table_with_inline": 3,
+ "warn_non_term_special_preds": 3,
+ "warn_known_bad_format_calls": 3,
+ "warn_unknown_format_calls": 3,
+ "warn_obsolete": 3,
+ "warn_insts_without_matching_type": 3,
+ "warn_unused_imports": 3,
+ "inform_ite_instead_of_switch": 3,
+ "warn_unresolved_polymorphism": 3,
+ "warn_suspicious_foreign_procs": 3,
+ "warn_state_var_shadowing": 3,
+ "inform_inferred": 3,
+ "inform_inferred_types": 3,
+ "inform_inferred_modes": 3,
+ "verbose": 4,
+ "very_verbose": 4,
+ "verbose_errors": 4,
+ "verbose_recompilation": 3,
+ "find_all_recompilation_reasons": 3,
+ "verbose_make": 3,
+ "verbose_commands": 3,
+ "output_compile_error_lines": 3,
+ "report_cmd_line_args": 3,
+ "report_cmd_line_args_in_doterr": 3,
+ "statistics": 4,
+ "detailed_statistics": 3,
+ "proc_size_statistics": 3,
+ "debug_types": 4,
+ "debug_modes": 4,
+ "debug_modes_statistics": 3,
+ "debug_modes_minimal": 3,
+ "debug_modes_verbose": 3,
+ "debug_modes_pred_id": 3,
+ "debug_dep_par_conj": 3,
+ "debug_det": 4,
+ "debug_code_gen_pred_id": 3,
+ "debug_opt": 3,
+ "debug_term": 4,
+ "term": 10,
+ "termination": 3,
+ "analysis": 1,
+ "debug_opt_pred_id": 3,
+ "debug_opt_pred_name": 3,
+ "debug_pd": 3,
+ "pd": 1,
+ "partial": 1,
+ "deduction/deforestation": 1,
+ "debug_il_asm": 3,
+ "il_asm": 1,
+ "IL": 2,
+ "generation": 1,
+ "via": 1,
+ "asm": 1,
+ "debug_liveness": 3,
+ "debug_stack_opt": 3,
+ "debug_make": 3,
+ "debug_closure": 3,
+ "debug_trail_usage": 3,
+ "debug_mode_constraints": 3,
+ "debug_intermodule_analysis": 3,
+ "debug_mm_tabling_analysis": 3,
+ "debug_indirect_reuse": 3,
+ "debug_type_rep": 3,
+ "make_short_interface": 4,
+ "make_interface": 5,
+ "make_private_interface": 4,
+ "make_optimization_interface": 5,
+ "make_transitive_opt_interface": 5,
+ "make_analysis_registry": 3,
+ "make_xml_documentation": 5,
+ "generate_source_file_mapping": 4,
+ "generate_dependency_file": 3,
+ "generate_dependencies": 4,
+ "generate_module_order": 3,
+ "generate_standalone_interface": 3,
+ "convert_to_mercury": 6,
+ "typecheck_only": 4,
+ "errorcheck_only": 4,
+ "target_code_only": 10,
+ "compile_only": 4,
+ "compile_to_shared_lib": 3,
+ "output_grade_string": 3,
+ "output_link_command": 3,
+ "output_shared_lib_link_command": 3,
+ "output_libgrades": 3,
+ "output_cc": 3,
+ "output_c_compiler_type": 4,
+ "output_csharp_compiler_type": 3,
+ "output_cflags": 3,
+ "output_library_link_flags": 3,
+ "output_grade_defines": 3,
+ "output_c_include_directory_flags": 4,
+ "smart_recompilation": 3,
+ "generate_item_version_numbers": 2,
+ "generate_mmc_make_module_dependencies": 4,
+ "assume_gmake": 3,
+ "trace_level": 4,
+ "trace_optimized": 4,
+ "trace_prof": 3,
+ "trace_table_io": 3,
+ "trace_table_io_only_retry": 3,
+ "trace_table_io_states": 3,
+ "trace_table_io_require": 3,
+ "trace_table_io_all": 3,
+ "trace_goal_flags": 3,
+ "prof_optimized": 4,
+ "exec_trace_tail_rec": 3,
+ "suppress_trace": 3,
+ "force_disable_tracing": 3,
+ "delay_death": 3,
+ "delay_death_max_vars": 3,
+ "stack_trace_higher_order": 3,
+ "force_disable_ssdebug": 3,
+ "generate_bytecode": 3,
+ "line_numbers": 4,
+ "auto_comments": 4,
+ "frameopt_comments": 3,
+ "max_error_line_width": 3,
+ "show_dependency_graph": 3,
+ "imports_graph": 3,
+ "dump_trace_counts": 3,
+ "dump_hlds": 5,
+ "dump_hlds_pred_id": 3,
+ "dump_hlds_pred_name": 3,
+ "dump_hlds_alias": 4,
+ "dump_hlds_options": 3,
+ "dump_hlds_inst_limit": 3,
+ "dump_hlds_file_suffix": 3,
+ "dump_same_hlds": 3,
+ "dump_mlds": 4,
+ "verbose_dump_mlds": 4,
+ "mode_constraints": 3,
+ "simple_mode_constraints": 3,
+ "prop_mode_constraints": 4,
+ "benchmark_modes": 3,
+ "benchmark_modes_repeat": 3,
+ "sign_assembly": 3,
+ "separate_assemblies": 3,
+ "reorder_conj": 3,
+ "reorder_disj": 3,
+ "fully_strict": 3,
+ "strict_sequential": 3,
+ "allow_stubs": 3,
+ "infer_types": 3,
+ "infer_modes": 3,
+ "infer_det": 4,
+ "infer_all": 3,
+ "type_inference_iteration_limit": 3,
+ "mode_inference_iteration_limit": 3,
+ "event_set_file_name": 3,
+ "grade": 4,
+ "target": 14,
+ "il": 5,
+ "il_only": 4,
+ "compile_to_c": 4,
+ "c": 1,
+ "java": 35,
+ "java_only": 4,
+ "csharp": 6,
+ "csharp_only": 4,
+ "x86_64": 6,
+ "x86_64_only": 4,
+ "erlang": 6,
+ "erlang_only": 4,
+ "exec_trace": 3,
+ "decl_debug": 3,
+ "profiling": 5,
+ "profile_time": 5,
+ "profile_calls": 6,
+ "time_profiling": 3,
+ "memory_profiling": 3,
+ "profile_mem": 1,
+ "deep_profiling": 3,
+ "profile_deep": 4,
+ "profile_memory": 3,
+ "use_activation_counts": 3,
+ "pre_prof_transforms_simplify": 3,
+ "pre_implicit_parallelism_simplify": 3,
+ "coverage_profiling": 3,
+ "coverage_profiling_via_calls": 3,
+ "coverage_profiling_static": 3,
+ "profile_deep_coverage_after_goal": 3,
+ "profile_deep_coverage_branch_ite": 3,
+ "profile_deep_coverage_branch_switch": 3,
+ "profile_deep_coverage_branch_disj": 3,
+ "profile_deep_coverage_use_portcounts": 3,
+ "profile_deep_coverage_use_trivial": 2,
+ "profile_for_feedback": 2,
+ "use_zeroing_for_ho_cycles": 2,
+ "use_lots_of_ho_specialization": 2,
+ "deep_profile_tail_recursion": 2,
+ "record_term_sizes_as_words": 2,
+ "record_term_sizes_as_cells": 2,
+ "experimental_complexity": 2,
+ "gc": 2,
+ "parallel": 3,
+ "threadscope": 2,
+ "use_trail": 3,
+ "trail_segments": 2,
+ "use_minimal_model_stack_copy": 2,
+ "use_minimal_model_own_stacks": 2,
+ "minimal_model_debug": 2,
+ "single_prec_float": 2,
+ "type_layout": 2,
+ "maybe_thread_safe_opt": 2,
+ "extend_stacks_when_needed": 2,
+ "stack_segments": 2,
+ "use_regions": 2,
+ "use_alloc_regions": 2,
+ "use_regions_debug": 2,
+ "use_regions_profiling": 2,
+ "source_to_source_debug": 5,
+ "ssdb_trace_level": 3,
+ "link_ssdb_libs": 4,
+ "tags": 2,
+ "num_tag_bits": 2,
+ "num_reserved_addresses": 2,
+ "num_reserved_objects": 2,
+ "bits_per_word": 2,
+ "bytes_per_word": 2,
+ "conf_low_tag_bits": 2,
+ "unboxed_float": 3,
+ "unboxed_enums": 2,
+ "unboxed_no_tag_types": 2,
+ "sync_term_size": 2,
+ "words": 1,
+ "gcc_non_local_gotos": 3,
+ "gcc_global_registers": 2,
+ "asm_labels": 3,
+ "pic_reg": 2,
+ "use_float_registers": 5,
+ "highlevel_code": 3,
+ "highlevel_data": 2,
+ "gcc_nested_functions": 2,
+ "det_copy_out": 2,
+ "nondet_copy_out": 2,
+ "put_commit_in_own_func": 2,
+ "put_nondet_env_on_heap": 2,
+ "verifiable_code": 2,
+ "il_refany_fields": 2,
+ "il_funcptr_types": 2,
+ "il_byref_tailcalls": 2,
+ "backend_foreign_languages": 2,
+ "stack_trace": 2,
+ "basic_stack_layout": 2,
+ "agc_stack_layout": 2,
+ "procid_stack_layout": 2,
+ "trace_stack_layout": 2,
+ "body_typeinfo_liveness": 4,
+ "can_compare_constants_as_ints": 2,
+ "pretest_equality_cast_pointers": 2,
+ "can_compare_compound_values": 2,
+ "lexically_order_constructors": 2,
+ "mutable_always_boxed": 2,
+ "delay_partial_instantiations": 2,
+ "allow_defn_of_builtins": 2,
+ "special_preds": 2,
+ "type_ctor_info": 2,
+ "type_ctor_layout": 2,
+ "type_ctor_functors": 2,
+ "new_type_class_rtti": 2,
+ "rtti_line_numbers": 2,
+ "disable_minimal_model_stack_copy_pneg": 2,
+ "disable_minimal_model_stack_copy_cut": 2,
+ "use_minimal_model_stack_copy_pneg": 2,
+ "use_minimal_model_stack_copy_cut": 3,
+ "disable_trail_ops": 3,
+ "size_region_ite_fixed": 2,
+ "size_region_disj_fixed": 2,
+ "size_region_semi_disj_fixed": 1,
+ "size_region_commit_fixed": 2,
+ "size_region_ite_protect": 2,
+ "size_region_ite_snapshot": 2,
+ "size_region_semi_disj_protect": 2,
+ "size_region_disj_snapshot": 2,
+ "size_region_commit_entry": 2,
+ "solver_type_auto_init": 2,
+ "allow_multi_arm_switches": 2,
+ "type_check_constraints": 2,
+ "allow_argument_packing": 2,
+ "low_level_debug": 2,
+ "table_debug": 2,
+ "trad_passes": 2,
+ "parallel_liveness": 2,
+ "parallel_code_gen": 2,
+ "polymorphism": 2,
+ "reclaim_heap_on_failure": 2,
+ "reclaim_heap_on_semidet_failure": 2,
+ "reclaim_heap_on_nondet_failure": 2,
+ "have_delay_slot": 2,
+ "num_real_r_regs": 2,
+ "num_real_f_regs": 2,
+ "num_real_r_temps": 2,
+ "num_real_f_temps": 2,
+ "max_jump_table_size": 2,
+ "max_specialized_do_call_closure": 2,
+ "max_specialized_do_call_class_method": 2,
+ "compare_specialization": 2,
+ "should_pretest_equality": 2,
+ "fact_table_max_array_size": 2,
+ "fact_table_hash_percent_full": 2,
+ "gcc_local_labels": 2,
+ "prefer_switch": 2,
+ "opt_no_return_calls": 3,
+ "opt_level": 3,
+ "opt_level_number": 2,
+ "opt_space": 2,
+ "Default": 3,
+ "optimize": 3,
+ "time.": 1,
+ "intermodule_optimization": 2,
+ "read_opt_files_transitively": 2,
+ "use_opt_files": 2,
+ "use_trans_opt_files": 2,
+ "transitive_optimization": 2,
+ "intermodule_analysis": 2,
+ "analysis_repeat": 2,
+ "analysis_file_cache": 2,
+ "allow_inlining": 2,
+ "inlining": 2,
+ "inline_simple": 2,
+ "inline_builtins": 2,
+ "inline_single_use": 2,
+ "inline_call_cost": 2,
+ "inline_compound_threshold": 2,
+ "inline_simple_threshold": 2,
+ "inline_vars_threshold": 2,
+ "intermod_inline_simple_threshold": 2,
+ "from_ground_term_threshold": 2,
+ "enable_const_struct": 2,
+ "common_struct": 2,
+ "common_struct_preds": 2,
+ "common_goal": 2,
+ "constraint_propagation": 2,
+ "local_constraint_propagation": 2,
+ "optimize_unused_args": 2,
+ "intermod_unused_args": 2,
+ "optimize_higher_order": 2,
+ "higher_order_size_limit": 2,
+ "higher_order_arg_limit": 2,
+ "unneeded_code": 2,
+ "unneeded_code_copy_limit": 2,
+ "unneeded_code_debug": 2,
+ "unneeded_code_debug_pred_name": 2,
+ "type_specialization": 2,
+ "user_guided_type_specialization": 2,
+ "introduce_accumulators": 2,
+ "optimize_constructor_last_call_accumulator": 2,
+ "optimize_constructor_last_call_null": 3,
+ "optimize_constructor_last_call": 2,
+ "optimize_duplicate_calls": 2,
+ "constant_propagation": 2,
+ "excess_assign": 2,
+ "optimize_format_calls": 2,
+ "optimize_saved_vars_const": 2,
+ "optimize_saved_vars_cell": 2,
+ "optimize_saved_vars_cell_loop": 2,
+ "optimize_saved_vars_cell_full_path": 2,
+ "optimize_saved_vars_cell_on_stack": 2,
+ "optimize_saved_vars_cell_candidate_headvars": 2,
+ "optimize_saved_vars_cell_cv_store_cost": 2,
+ "optimize_saved_vars_cell_cv_load_cost": 2,
+ "optimize_saved_vars_cell_fv_store_cost": 2,
+ "optimize_saved_vars_cell_fv_load_cost": 2,
+ "optimize_saved_vars_cell_op_ratio": 2,
+ "optimize_saved_vars_cell_node_ratio": 2,
+ "optimize_saved_vars_cell_all_path_node_ratio": 2,
+ "optimize_saved_vars_cell_include_all_candidates": 2,
+ "optimize_saved_vars": 2,
+ "loop_invariants": 2,
+ "delay_construct": 2,
+ "follow_code": 2,
+ "optimize_dead_procs": 2,
+ "deforestation": 2,
+ "deforestation_depth_limit": 2,
+ "deforestation_cost_factor": 2,
+ "deforestation_vars_threshold": 2,
+ "deforestation_size_threshold": 2,
+ "analyse_trail_usage": 2,
+ "optimize_trail_usage": 3,
+ "optimize_region_ops": 3,
+ "analyse_mm_tabling": 2,
+ "untuple": 2,
+ "tuple": 2,
+ "tuple_trace_counts_file": 2,
+ "tuple_costs_ratio": 2,
+ "tuple_min_args": 2,
+ "inline_par_builtins": 2,
+ "always_specialize_in_dep_par_conjs": 2,
+ "allow_some_paths_only_waits": 2,
+ "region_analysis": 3,
+ "structure_sharing_analysis": 2,
+ "structure_sharing_widening": 2,
+ "structure_reuse_analysis": 2,
+ "structure_reuse_constraint": 2,
+ "structure_reuse_constraint_arg": 2,
+ "structure_reuse_max_conditions": 2,
+ "structure_reuse_repeat": 2,
+ "structure_reuse_free_cells": 2,
+ "termination_check": 2,
+ "verbose_check_termination": 2,
+ "termination_single_args": 2,
+ "termination_norm": 2,
+ "termination_error_limit": 2,
+ "termination_path_limit": 2,
+ "termination2": 2,
+ "check_termination2": 2,
+ "verbose_check_termination2": 2,
+ "termination2_norm": 2,
+ "widening_limit": 2,
+ "arg_size_analysis_only": 2,
+ "propagate_failure_constrs": 2,
+ "term2_maximum_matrix_size": 2,
+ "analyse_exceptions": 2,
+ "analyse_closures": 2,
+ "smart_indexing": 2,
+ "dense_switch_req_density": 2,
+ "lookup_switch_req_density": 2,
+ "dense_switch_size": 2,
+ "lookup_switch_size": 2,
+ "string_hash_switch_size": 2,
+ "string_binary_switch_size": 2,
+ "tag_switch_size": 2,
+ "try_switch_size": 2,
+ "binary_switch_size": 2,
+ "switch_single_rec_base_first": 2,
+ "switch_multi_rec_base_first": 2,
+ "static_ground_cells": 3,
+ "static_ground_floats": 3,
+ "static_code_addresses": 3,
+ "use_atomic_cells": 2,
+ "middle_rec": 2,
+ "simple_neg": 2,
+ "allow_hijacks": 3,
+ "optimize_tailcalls": 2,
+ "optimize_initializations": 2,
+ "eliminate_local_vars": 2,
+ "generate_trail_ops_inline": 2,
+ "common_data": 2,
+ "common_layout_data": 2,
+ "Also": 1,
+ "for": 8,
+ "MLDS": 2,
+ "optimizations.": 1,
+ "optimize_peep": 2,
+ "optimize_peep_mkword": 2,
+ "optimize_jumps": 2,
+ "optimize_fulljumps": 2,
+ "pessimize_tailcalls": 2,
+ "checked_nondet_tailcalls": 2,
+ "use_local_vars": 2,
+ "local_var_access_threshold": 2,
+ "standardize_labels": 2,
+ "optimize_labels": 2,
+ "optimize_dups": 2,
+ "optimize_proc_dups": 2,
+ "optimize_frames": 2,
+ "optimize_delay_slot": 2,
+ "optimize_reassign": 2,
+ "optimize_repeat": 2,
+ "layout_compression_limit": 2,
+ "use_macro_for_redo_fail": 2,
+ "emit_c_loops": 2,
+ "procs_per_c_function": 3,
+ "everything_in_one_c_function": 2,
+ "local_thread_engine_base": 2,
+ "erlang_switch_on_strings_as_atoms": 2,
+ "target_debug": 2,
+ "cc": 2,
+ "cflags": 2,
+ "quoted_cflag": 2,
+ "c_include_directory": 2,
+ "c_optimize": 2,
+ "ansi_c": 2,
+ "inline_alloc": 2,
+ "gcc_flags": 2,
+ "quoted_gcc_flag": 2,
+ "clang_flags": 2,
+ "quoted_clang_flag": 2,
+ "msvc_flags": 2,
+ "quoted_msvc_flag": 2,
+ "cflags_for_warnings": 2,
+ "cflags_for_optimization": 2,
+ "cflags_for_ansi": 2,
+ "cflags_for_regs": 2,
+ "cflags_for_gotos": 2,
+ "cflags_for_threads": 2,
+ "cflags_for_debug": 2,
+ "cflags_for_pic": 2,
+ "c_flag_to_name_object_file": 2,
+ "object_file_extension": 2,
+ "pic_object_file_extension": 2,
+ "link_with_pic_object_file_extension": 2,
+ "c_compiler_type": 2,
+ "csharp_compiler_type": 2,
+ "java_compiler": 2,
+ "java_interpreter": 2,
+ "java_flags": 2,
+ "quoted_java_flag": 2,
+ "java_classpath": 2,
+ "java_object_file_extension": 2,
+ "il_assembler": 2,
+ "ilasm_flags": 2,
+ "quoted_ilasm_flag": 2,
+ "dotnet_library_version": 2,
+ "support_ms_clr": 2,
+ "support_rotor_clr": 2,
+ "csharp_compiler": 2,
+ "csharp_flags": 2,
+ "quoted_csharp_flag": 2,
+ "cli_interpreter": 2,
+ "erlang_compiler": 2,
+ "erlang_interpreter": 2,
+ "erlang_flags": 2,
+ "quoted_erlang_flag": 2,
+ "erlang_include_directory": 2,
+ "erlang_object_file_extension": 2,
+ "erlang_native_code": 2,
+ "erlang_inhibit_trivial_warnings": 2,
+ "output_file_name": 3,
+ "ld_flags": 2,
+ "quoted_ld_flag": 2,
+ "ld_libflags": 2,
+ "quoted_ld_libflag": 2,
+ "link_library_directories": 3,
+ "runtime_link_library_directories": 3,
+ "link_libraries": 3,
+ "link_objects": 2,
+ "mercury_library_directories": 2,
+ "mercury_library_directory_special": 2,
+ "search_library_files_directories": 2,
+ "search_library_files_directory_special": 2,
+ "mercury_libraries": 2,
+ "mercury_library_special": 2,
+ "mercury_standard_library_directory": 2,
+ "mercury_standard_library_directory_special": 2,
+ "init_file_directories": 2,
+ "init_files": 2,
+ "trace_init_files": 2,
+ "linkage": 2,
+ "linkage_special": 2,
+ "mercury_linkage": 2,
+ "mercury_linkage_special": 2,
+ "strip": 2,
+ "demangle": 2,
+ "allow_undefined": 2,
+ "use_readline": 2,
+ "runtime_flags": 2,
+ "extra_initialization_functions": 2,
+ "frameworks": 2,
+ "framework_directories": 3,
+ "shared_library_extension": 2,
+ "library_extension": 2,
+ "executable_file_extension": 2,
+ "link_executable_command": 2,
+ "link_shared_lib_command": 2,
+ "create_archive_command": 2,
+ "create_archive_command_output_flag": 2,
+ "create_archive_command_flags": 2,
+ "ranlib_command": 2,
+ "ranlib_flags": 2,
+ "mkinit_command": 2,
+ "mkinit_erl_command": 2,
+ "demangle_command": 2,
+ "filtercc_command": 2,
+ "trace_libs": 2,
+ "thread_libs": 2,
+ "hwloc_libs": 2,
+ "hwloc_static_libs": 2,
+ "shared_libs": 2,
+ "math_lib": 2,
+ "readline_libs": 2,
+ "linker_opt_separator": 2,
+ "linker_thread_flags": 2,
+ "shlib_linker_thread_flags": 2,
+ "linker_static_flags": 2,
+ "linker_strip_flag": 2,
+ "linker_link_lib_flag": 2,
+ "linker_link_lib_suffix": 2,
+ "shlib_linker_link_lib_flag": 2,
+ "shlib_linker_link_lib_suffix": 2,
+ "linker_debug_flags": 2,
+ "shlib_linker_debug_flags": 2,
+ "linker_trace_flags": 2,
+ "shlib_linker_trace_flags": 2,
+ "linker_path_flag": 2,
+ "linker_rpath_flag": 2,
+ "linker_rpath_separator": 2,
+ "shlib_linker_rpath_flag": 2,
+ "shlib_linker_rpath_separator": 2,
+ "linker_allow_undefined_flag": 2,
+ "linker_error_undefined_flag": 2,
+ "shlib_linker_use_install_name": 2,
+ "shlib_linker_install_name_flag": 2,
+ "shlib_linker_install_name_path": 2,
+ "java_archive_command": 2,
+ "make": 3,
+ "keep_going": 3,
+ "rebuild": 3,
+ "jobs": 3,
+ "track_flags": 2,
+ "invoked_by_mmc_make": 2,
+ "extra_init_command": 2,
+ "pre_link_command": 2,
+ "install_prefix": 2,
+ "use_symlinks": 2,
+ "mercury_configuration_directory": 2,
+ "mercury_configuration_directory_special": 2,
+ "install_command": 2,
+ "install_command_dir_option": 2,
+ "libgrades": 2,
+ "libgrades_include_components": 2,
+ "libgrades_exclude_components": 2,
+ "lib_linkages": 2,
+ "flags_file": 2,
+ "options_files": 2,
+ "config_file": 2,
+ "options_search_directories": 2,
+ "use_subdirs": 2,
+ "use_grade_subdirs": 2,
+ "search_directories": 3,
+ "intermod_directories": 2,
+ "use_search_directories_for_intermod": 2,
+ "libgrade_install_check": 2,
+ "order_make_by_timestamp": 2,
+ "show_make_times": 2,
+ "extra_library_header": 2,
+ "restricted_command_line": 2,
+ "env_type": 2,
+ "host_env_type": 2,
+ "target_env_type": 2,
+ "filenames_from_stdin": 2,
+ "typecheck_ambiguity_warn_limit": 2,
+ "typecheck_ambiguity_error_limit": 2,
+ "help": 4,
+ "version": 3,
+ "fullarch": 2,
+ "cross_compiling": 2,
+ "local_module_id": 2,
+ "analysis_file_cache_dir": 2,
+ "compiler_sufficiently_recent": 2,
+ "experiment": 2,
+ "ignore_par_conjunctions": 2,
+ "control_granularity": 2,
+ "distance_granularity": 2,
+ "implicit_parallelism": 2,
+ "feedback_file": 2,
+ "par_loop_control": 2,
+ "par_loop_control_preserve_tail_recursion.": 1,
+ "libs.handle_options.": 1,
+ "dir.": 1,
+ "option_category": 2,
+ "warning_option": 2,
+ "verbosity_option": 2,
+ "output_option": 2,
+ "aux_output_option": 2,
+ "language_semantics_option": 2,
+ "compilation_model_option": 2,
+ "internal_use_option": 2,
+ "code_gen_option": 2,
+ "special_optimization_option": 2,
+ "optimization_option": 2,
+ "target_code_compilation_option": 2,
+ "link_option": 2,
+ "build_system_option": 2,
+ "miscellaneous_option.": 1,
+ "Option": 2,
+ "option_defaults_2": 18,
+ "_Category": 1,
+ "OptionsList": 2,
+ "multi.": 1,
+ "bool_special": 7,
+ "XXX": 3,
+ "should": 1,
+ "be": 1,
+ "accumulating": 49,
+ "maybe_string": 6,
+ "special": 17,
+ "string_special": 18,
+ "int_special": 1,
+ "maybe_string_special": 1,
+ "file_special": 1,
+ "miscellaneous_option": 1,
+ "par_loop_control_preserve_tail_recursion": 1,
+ "hello.": 1,
+ "io.write_string": 1,
+ "expr.": 1,
+ "token": 5,
+ "num": 11,
+ "parse": 1,
+ "exprn/1": 1,
+ "xx": 1,
+ "scan": 16,
+ "rule": 3,
+ "exprn": 7,
+ "Num": 18,
+ "B": 8,
+ "factor": 6,
+ "/": 1,
+ "Chars": 2,
+ "Toks": 13,
+ "Toks0": 11,
+ "list__reverse": 1,
+ "C": 34,
+ "Cs": 9,
+ "char__is_whitespace": 1,
+ "char__is_digit": 2,
+ "takewhile": 1,
+ "Digits": 2,
+ "Rest": 2,
+ "string__from_char_list": 1,
+ "NumStr": 2,
+ "string__det_to_int": 1,
+ "rot13_ralph.": 1,
+ "io__read_byte": 1,
+ "Result": 4,
+ "io__write_byte": 1,
+ "ErrNo": 2,
+ "z": 1,
+ "Rot13": 2,
+ "<": 14,
+ "rem": 1,
+ "ll_backend.code_info.": 1,
+ "hlds.code_model.": 1,
+ "hlds.hlds_llds.": 1,
+ "ll_backend.continuation_info.": 1,
+ "ll_backend.global_data.": 1,
+ "ll_backend.layout.": 1,
+ "ll_backend.llds.": 1,
+ "ll_backend.trace_gen.": 1,
+ "counter.": 1,
+ "set_tree234.": 1,
+ "backend_libs.builtin_ops.": 1,
+ "backend_libs.proc_label.": 1,
+ "hlds.arg_info.": 1,
+ "hlds.hlds_desc.": 1,
+ "libs.trace_params.": 1,
+ "ll_backend.code_util.": 1,
+ "ll_backend.opt_debug.": 1,
+ "ll_backend.var_locn.": 1,
+ "parse_tree.mercury_to_mercury.": 1,
+ "cord.": 1,
+ "stack.": 1,
+ "code_info.": 1,
+ "code_info_init": 2,
+ "globals": 5,
+ "abs_follow_vars": 3,
+ "static_cell_info": 4,
+ "const_struct_map": 3,
+ "resume_point_info": 11,
+ "trace_slot_info": 3,
+ "containing_goal_map": 4,
+ "code_info": 208,
+ "get_globals": 5,
+ "get_exprn_opts": 2,
+ "exprn_opts": 3,
+ "get_module_info": 7,
+ "get_pred_id": 6,
+ "get_proc_id": 5,
+ "get_pred_info": 2,
+ "get_proc_info": 4,
+ "get_varset": 3,
+ "get_var_types": 3,
+ "vartypes.": 1,
+ "get_maybe_trace_info": 2,
+ "trace_info": 3,
+ "get_emit_trail_ops": 2,
+ "add_trail_ops": 5,
+ "get_emit_region_ops": 2,
+ "add_region_ops": 6,
+ "get_forward_live_vars": 2,
+ "set_of_progvar": 10,
+ "set_forward_live_vars": 2,
+ "get_instmap": 4,
+ "instmap": 3,
+ "set_instmap": 3,
+ "get_par_conj_depth": 2,
+ "set_par_conj_depth": 2,
+ "get_label_counter": 3,
+ "counter": 6,
+ "get_succip_used": 2,
+ "get_layout_info": 4,
+ "proc_label_layout_info": 3,
+ "get_proc_trace_events": 2,
+ "set_proc_trace_events": 2,
+ "get_closure_layouts": 3,
+ "closure_proc_id_data": 4,
+ "get_max_reg_in_use_at_trace": 2,
+ "set_max_reg_in_use_at_trace": 2,
+ "get_created_temp_frame": 2,
+ "get_static_cell_info": 5,
+ "set_static_cell_info": 5,
+ "get_alloc_sites": 3,
+ "set_tree234": 3,
+ "alloc_site_info": 4,
+ "set_alloc_sites": 3,
+ "get_used_env_vars": 2,
+ "set_used_env_vars": 2,
+ "get_opt_trail_ops": 2,
+ "get_opt_region_ops": 2,
+ "get_auto_comments": 2,
+ "get_lcmc_null": 2,
+ "get_containing_goal_map": 3,
+ "get_containing_goal_map_det": 2,
+ "get_const_struct_map": 2,
+ "add_out_of_line_code": 2,
+ "llds_code": 21,
+ "get_out_of_line_code": 2,
+ "get_var_slot_count": 2,
+ "set_maybe_trace_info": 3,
+ "get_opt_no_return_calls": 2,
+ "get_zombies": 2,
+ "set_zombies": 2,
+ "get_var_locn_info": 7,
+ "var_locn_info": 3,
+ "set_var_locn_info": 4,
+ "get_temps_in_use": 6,
+ "lval": 114,
+ "set_temps_in_use": 4,
+ "get_fail_info": 13,
+ "fail_info": 24,
+ "set_fail_info": 9,
+ "set_label_counter": 3,
+ "set_succip_used": 3,
+ "set_layout_info": 4,
+ "get_max_temp_slot_count": 2,
+ "set_max_temp_slot_count": 2,
+ "get_temp_content_map": 3,
+ "slot_contents": 4,
+ "set_temp_content_map": 2,
+ "get_persistent_temps": 3,
+ "set_persistent_temps": 2,
+ "set_closure_layouts": 3,
+ "get_closure_seq_counter": 3,
+ "set_closure_seq_counter": 3,
+ "set_created_temp_frame": 2,
+ "code_info_static": 26,
+ "code_info_loc_dep": 22,
+ "code_info_persistent": 44,
+ "cis_globals": 2,
+ "cis_exprn_opts": 2,
+ "cis_module_info": 2,
+ "cis_pred_id": 2,
+ "cis_proc_id": 2,
+ "cis_pred_info": 2,
+ "cis_proc_info": 2,
+ "cis_proc_label": 1,
+ "proc_label": 2,
+ "cis_varset": 2,
+ "cis_var_slot_count": 2,
+ "cis_maybe_trace_info": 3,
+ "cis_opt_no_resume_calls": 2,
+ "cis_emit_trail_ops": 2,
+ "cis_opt_trail_ops": 2,
+ "cis_emit_region_ops": 2,
+ "cis_opt_region_ops": 2,
+ "cis_auto_comments": 2,
+ "cis_lcmc_null": 2,
+ "cis_containing_goal_map": 2,
+ "cis_const_struct_map": 2,
+ "cild_forward_live_vars": 3,
+ "cild_instmap": 3,
+ "cild_zombies": 3,
+ "cild_var_locn_info": 3,
+ "cild_temps_in_use": 3,
+ "cild_fail_info": 3,
+ "cild_par_conj_depth": 3,
+ "cip_label_num_src": 3,
+ "cip_store_succip": 3,
+ "cip_label_info": 3,
+ "cip_proc_trace_events": 3,
+ "cip_stackslot_max": 3,
+ "cip_temp_contents": 3,
+ "cip_persistent_temps": 3,
+ "cip_closure_layout_seq": 3,
+ "cip_closure_layouts": 3,
+ "cip_max_reg_r_used": 3,
+ "cip_max_reg_f_used": 2,
+ "cip_created_temp_frame": 3,
+ "cip_static_cell_info": 3,
+ "cip_alloc_sites": 3,
+ "cip_used_env_vars": 3,
+ "cip_ts_string_table_size": 3,
+ "cip_ts_rev_string_table": 4,
+ "cip_out_of_line_code": 4,
+ "SaveSuccip": 2,
+ "Globals": 32,
+ "FollowVars": 6,
+ "StaticCellInfo": 8,
+ "ConstStructMap": 2,
+ "ResumePoint": 13,
+ "TraceSlotInfo": 5,
+ "MaybeContainingGoalMap": 5,
+ "TSRevStringTable": 2,
+ "TSStringTableSize": 2,
+ "CodeInfo": 2,
+ "ProcLabel": 8,
+ "make_proc_label": 1,
+ "proc_info_get_initial_instmap": 1,
+ "InstMap": 6,
+ "proc_info_get_liveness_info": 1,
+ "Liveness": 4,
+ "CodeModel": 8,
+ "proc_info_interface_code_model": 2,
+ "build_input_arg_list": 1,
+ "ArgList": 2,
+ "proc_info_get_varset": 1,
+ "proc_info_get_vartypes": 2,
+ "proc_info_get_stack_slots": 1,
+ "StackSlots": 5,
+ "ExprnOpts": 4,
+ "init_exprn_opts": 3,
+ "globals.lookup_bool_option": 18,
+ "UseFloatRegs": 6,
+ "FloatRegType": 3,
+ "reg_f": 1,
+ "reg_r": 2,
+ "globals.get_trace_level": 1,
+ "TraceLevel": 5,
+ "eff_trace_level_is_none": 2,
+ "trace_fail_vars": 1,
+ "FailVars": 3,
+ "MaybeFailVars": 3,
+ "EffLiveness": 3,
+ "init_var_locn_state": 1,
+ "VarLocnInfo": 12,
+ "stack.init": 1,
+ "ResumePoints": 14,
+ "AllowHijack": 3,
+ "Hijack": 6,
+ "allowed": 6,
+ "not_allowed": 5,
+ "DummyFailInfo": 2,
+ "resume_point_unknown": 9,
+ "may_be_different": 7,
+ "not_inside_non_condition": 2,
+ "TempContentMap": 4,
+ "set.init": 7,
+ "PersistentTemps": 4,
+ "TempsInUse": 8,
+ "Zombies": 2,
+ "set_of_var.init": 1,
+ "LayoutMap": 2,
+ "max_var_slot": 1,
+ "VarSlotMax": 2,
+ "trace_reserved_slots": 1,
+ "FixedSlots": 2,
+ "int.max": 1,
+ "SlotMax": 2,
+ "OptNoReturnCalls": 2,
+ "UseTrail": 2,
+ "DisableTrailOps": 2,
+ "EmitTrailOps": 3,
+ "do_not_add_trail_ops": 1,
+ "OptTrailOps": 2,
+ "OptRegionOps": 2,
+ "UseRegions": 3,
+ "EmitRegionOps": 3,
+ "do_not_add_region_ops": 1,
+ "AutoComments": 2,
+ "LCMCNull": 2,
+ "CodeInfo0": 2,
+ "init_fail_info": 2,
+ "will": 1,
+ "override": 1,
+ "this": 4,
+ "dummy": 2,
+ "value": 16,
+ "nested": 1,
+ "conjunction": 1,
+ "depth": 1,
+ "counter.init": 2,
+ "set_tree234.init": 1,
+ "cord.empty": 1,
+ "init_maybe_trace_info": 3,
+ "CodeInfo1": 2,
+ "exprn_opts.": 1,
+ "OptNLG": 3,
+ "NLG": 3,
+ "have_non_local_gotos": 1,
+ "do_not_have_non_local_gotos": 1,
+ "OptASM": 3,
+ "ASM": 3,
+ "have_asm_labels": 1,
+ "do_not_have_asm_labels": 1,
+ "OptSGCell": 3,
+ "SGCell": 3,
+ "have_static_ground_cells": 1,
+ "do_not_have_static_ground_cells": 1,
+ "OptUBF": 3,
+ "UBF": 3,
+ "have_unboxed_floats": 1,
+ "do_not_have_unboxed_floats": 1,
+ "OptFloatRegs": 3,
+ "do_not_use_float_registers": 1,
+ "OptSGFloat": 3,
+ "SGFloat": 3,
+ "have_static_ground_floats": 1,
+ "do_not_have_static_ground_floats": 1,
+ "OptStaticCodeAddr": 3,
+ "StaticCodeAddrs": 3,
+ "have_static_code_addresses": 1,
+ "do_not_have_static_code_addresses": 1,
+ "CI": 294,
+ "proc_info_get_has_tail_call_events": 1,
+ "HasTailCallEvents": 3,
+ "tail_call_events": 1,
+ "get_next_label": 5,
+ "TailRecLabel": 2,
+ "MaybeTailRecLabel": 3,
+ "no_tail_call_events": 1,
+ "trace_setup": 1,
+ "TraceInfo": 2,
+ "MaxRegR": 4,
+ "MaxRegF": 4,
+ "cip_max_reg_f_used.": 1,
+ "TI": 4,
+ "LV": 2,
+ "IM": 2,
+ "Zs": 2,
+ "EI": 2,
+ "FI": 2,
+ "LC": 2,
+ "SU": 2,
+ "LI": 2,
+ "PTE": 2,
+ "TM": 2,
+ "CM": 2,
+ "PT": 2,
+ "CLS": 2,
+ "CG": 2,
+ "MR": 4,
+ "MF": 1,
+ "MF.": 1,
+ "SCI": 2,
+ "ASI": 2,
+ "UEV": 2,
+ "ContainingGoalMap": 2,
+ "NewCode": 2,
+ "Code0": 2,
+ ".CI": 29,
+ "Code": 36,
+ "Code.": 1,
+ "get_stack_slots": 2,
+ "stack_slots": 1,
+ "get_follow_var_map": 2,
+ "abs_follow_vars_map": 1,
+ "get_next_non_reserved": 2,
+ "reg_type": 1,
+ "set_follow_vars": 4,
+ "pre_goal_update": 3,
+ "has_subgoals": 2,
+ "post_goal_update": 3,
+ "variable_type": 3,
+ "mer_type.": 1,
+ "variable_is_of_dummy_type": 2,
+ "is_dummy_type.": 1,
+ "search_type_defn": 4,
+ "hlds_type_defn": 1,
+ "lookup_type_defn": 2,
+ "hlds_type_defn.": 1,
+ "lookup_cheaper_tag_test": 2,
+ "maybe_cheaper_tag_test.": 1,
+ "filter_region_vars": 2,
+ "set_of_progvar.": 2,
+ "get_proc_model": 2,
+ "code_model.": 1,
+ "get_headvars": 2,
+ "get_arginfo": 2,
+ "arg_info": 2,
+ "get_pred_proc_arginfo": 3,
+ "current_resume_point_vars": 2,
+ "variable_name": 2,
+ "make_proc_entry_label": 2,
+ "code_addr.": 1,
+ "label": 5,
+ "succip_is_used": 2,
+ "add_trace_layout_for_label": 2,
+ "trace_port": 1,
+ "forward_goal_path": 1,
+ "user_event_info": 1,
+ "layout_label_info": 2,
+ "get_cur_proc_label": 4,
+ "get_next_closure_seq_no": 2,
+ "add_closure_layout": 2,
+ "add_threadscope_string": 2,
+ "get_threadscope_rev_string_table": 2,
+ "add_scalar_static_cell": 2,
+ "typed_rval": 1,
+ "data_id": 3,
+ "add_scalar_static_cell_natural_types": 2,
+ "rval": 3,
+ "add_vector_static_cell": 2,
+ "llds_type": 1,
+ "add_alloc_site_info": 2,
+ "prog_context": 1,
+ "alloc_site_id": 2,
+ "add_resume_layout_for_label": 2,
+ "var_locn_get_stack_slots": 1,
+ "FollowVarMap": 2,
+ "var_locn_get_follow_var_map": 1,
+ "RegType": 2,
+ "NextNonReserved": 2,
+ "var_locn_get_next_non_reserved": 1,
+ "VarLocnInfo0": 4,
+ "var_locn_set_follow_vars": 1,
+ "HasSubGoals": 3,
+ "goal_info_get_resume_point": 1,
+ "no_resume_point": 1,
+ "resume_point": 1,
+ "goal_info_get_follow_vars": 1,
+ "MaybeFollowVars": 3,
+ "goal_info_get_pre_deaths": 1,
+ "PreDeaths": 3,
+ "rem_forward_live_vars": 3,
+ "maybe_make_vars_forward_dead": 2,
+ "goal_info_get_pre_births": 1,
+ "PreBirths": 2,
+ "add_forward_live_vars": 2,
+ "does_not_have_subgoals": 2,
+ "goal_info_get_post_deaths": 2,
+ "PostDeaths": 5,
+ "goal_info_get_post_births": 1,
+ "PostBirths": 3,
+ "make_vars_forward_live": 1,
+ "InstMapDelta": 2,
+ "goal_info_get_instmap_delta": 1,
+ "InstMap0": 2,
+ "instmap.apply_instmap_delta": 1,
+ "TypeInfoLiveness": 2,
+ "body_should_use_typeinfo_liveness": 1,
+ "IsDummy": 2,
+ "VarType": 2,
+ "check_dummy_type": 1,
+ "TypeDefn": 6,
+ "type_to_ctor_det": 1,
+ "TypeCtor": 2,
+ "module_info_get_type_table": 1,
+ "TypeTable": 2,
+ "search_type_ctor_defn": 1,
+ "TypeDefnPrime": 2,
+ "CheaperTagTest": 3,
+ "get_type_defn_body": 1,
+ "TypeBody": 2,
+ "hlds_du_type": 1,
+ "CheaperTagTestPrime": 2,
+ "no_cheaper_tag_test": 1,
+ "ForwardLiveVarsBeforeGoal": 6,
+ "RegionVars": 2,
+ "code_info.get_var_types": 1,
+ "set_of_var.filter": 1,
+ "is_region_var": 1,
+ "ArgInfo": 4,
+ "proc_info_arg_info": 1,
+ "ResumeVars": 4,
+ "FailInfo": 19,
+ "ResumePointStack": 2,
+ "stack.det_top": 5,
+ "ResumePointInfo": 2,
+ "pick_first_resume_point": 1,
+ "ResumeMap": 8,
+ "ResumeMapVarList": 2,
+ "Varset": 2,
+ "Immed0": 3,
+ "CodeAddr": 2,
+ "Immed": 3,
+ "globals.lookup_int_option": 1,
+ "ProcsPerFunc": 2,
+ "CurPredId": 2,
+ "CurProcId": 2,
+ "make_entry_label": 1,
+ "Label": 8,
+ "C0": 4,
+ "counter.allocate": 2,
+ "internal_label": 3,
+ "Port": 2,
+ "IsHidden": 2,
+ "GoalPath": 2,
+ "MaybeSolverEventInfo": 2,
+ "Layout": 2,
+ "Internals0": 8,
+ "Exec": 5,
+ "trace_port_layout_info": 1,
+ "LabelNum": 8,
+ "entry_label": 2,
+ "map.search": 2,
+ "Internal0": 4,
+ "internal_layout_info": 6,
+ "Exec0": 3,
+ "Resume": 5,
+ "Return": 6,
+ "Internal": 8,
+ "Internals": 6,
+ "map.det_insert": 3,
+ "LayoutInfo": 2,
+ "Resume0": 3,
+ "get_active_temps_data": 2,
+ "assoc_list": 1,
+ "Temps": 2,
+ "map.select": 1,
+ "TempsInUseContentMap": 2,
+ "map.to_assoc_list": 3,
+ "cis_proc_label.": 1,
+ "SeqNo": 2,
+ "ClosureLayout": 2,
+ "ClosureLayouts": 2,
+ "String": 2,
+ "SlotNum": 2,
+ "Size0": 3,
+ "RevTable0": 2,
+ "Size": 4,
+ "RevTable": 3,
+ "RevTable.": 1,
+ "TableSize": 2,
+ "cip_ts_string_table_size.": 1,
+ "RvalsTypes": 2,
+ "DataAddr": 6,
+ "StaticCellInfo0": 6,
+ "global_data.add_scalar_static_cell": 1,
+ "Rvals": 2,
+ "global_data.add_scalar_static_cell_natural_types": 1,
+ "Vector": 2,
+ "global_data.add_vector_static_cell": 1,
+ "AllocId": 2,
+ "AllocSite": 3,
+ "AllocSites0": 2,
+ "set_tree234.insert": 1,
+ "AllocSites": 2,
+ "position_info.": 1,
+ "branch_end_info.": 1,
+ "branch_end": 4,
+ "branch_end_info": 7,
+ "remember_position": 3,
+ "position_info": 14,
+ "reset_to_position": 4,
+ "reset_resume_known": 2,
+ "generate_branch_end": 2,
+ "abs_store_map": 3,
+ "after_all_branches": 2,
+ "save_hp_in_branch": 2,
+ "pos_get_fail_info": 3,
+ "fail_info.": 2,
+ "LocDep": 6,
+ "cild_fail_info.": 1,
+ "CurCI": 2,
+ "NextCI": 2,
+ "Static": 2,
+ "Persistent": 2,
+ "NextCI0": 4,
+ "TempsInUse0": 4,
+ "set.union": 2,
+ "BranchStart": 2,
+ "BranchStartFailInfo": 2,
+ "BSResumeKnown": 2,
+ "CurFailInfo": 2,
+ "CurFailStack": 2,
+ "CurCurfMaxfr": 2,
+ "CurCondEnv": 2,
+ "CurHijack": 2,
+ "NewFailInfo": 2,
+ "StoreMap": 8,
+ "MaybeEnd0": 3,
+ "MaybeEnd": 6,
+ "AbsVarLocs": 3,
+ "assoc_list.values": 1,
+ "AbsLocs": 2,
+ "code_util.max_mentioned_abs_regs": 1,
+ "instmap_is_reachable": 1,
+ "VarLocs": 2,
+ "assoc_list.map_values_only": 2,
+ "abs_locn_to_lval": 2,
+ "place_vars": 1,
+ "remake_with_store_map": 4,
+ "empty": 9,
+ "EndCodeInfo1": 5,
+ "EndCodeInfo0": 3,
+ "FailInfo0": 13,
+ "FailInfo1": 2,
+ "ResumeKnown0": 5,
+ "CurfrMaxfr0": 2,
+ "CondEnv0": 3,
+ "Hijack0": 2,
+ "R": 2,
+ "ResumeKnown1": 2,
+ "CurfrMaxfr1": 2,
+ "CondEnv1": 2,
+ "Hijack1": 2,
+ "resume_point_known": 15,
+ "Redoip0": 3,
+ "Redoip1": 2,
+ "ResumeKnown": 21,
+ "must_be_equal": 11,
+ "CurfrMaxfr": 24,
+ "EndCodeInfoA": 2,
+ "TempsInUse1": 2,
+ "EndCodeInfo": 2,
+ "BranchEnd": 2,
+ "BranchEndCodeInfo": 2,
+ "BranchEndLocDep": 2,
+ "VarLocns": 2,
+ "VarLvals": 2,
+ "reinit_var_locn_state": 1,
+ "Slot": 2,
+ "Pos0": 2,
+ "Pos": 2,
+ "CI0": 2,
+ "CIStatic0": 2,
+ "CILocDep0": 2,
+ "CIPersistent0": 2,
+ "LocDep0": 2,
+ "CI1": 2,
+ "save_hp": 1,
+ "CI2": 2,
+ "CIStatic": 2,
+ "CIPersistent": 2,
+ "resume_map.": 1,
+ "resume_point_info.": 1,
+ "disj_hijack_info.": 1,
+ "prepare_for_disj_hijack": 2,
+ "code_model": 3,
+ "disj_hijack_info": 3,
+ "undo_disj_hijack": 2,
+ "ite_hijack_info.": 1,
+ "prepare_for_ite_hijack": 2,
+ "embedded_stack_frame_id": 3,
+ "ite_hijack_info": 3,
+ "ite_enter_then": 2,
+ "simple_neg_info.": 1,
+ "enter_simple_neg": 2,
+ "simple_neg_info": 3,
+ "leave_simple_neg": 2,
+ "det_commit_info.": 1,
+ "prepare_for_det_commit": 2,
+ "det_commit_info": 6,
+ "generate_det_commit": 2,
+ "semi_commit_info.": 1,
+ "prepare_for_semi_commit": 2,
+ "semi_commit_info": 6,
+ "generate_semi_commit": 2,
+ "effect_resume_point": 2,
+ "pop_resume_point": 1,
+ "top_resume_point": 1,
+ "set_resume_point_to_unknown": 1,
+ "set_resume_point_and_frame_to_unknown": 1,
+ "generate_failure": 2,
+ "fail_if_rval_is_false": 1,
+ "failure_is_direct_branch": 1,
+ "code_addr": 8,
+ "may_use_nondet_tailcall": 1,
+ "nondet_tail_call": 1,
+ "produce_vars": 1,
+ "resume_map": 9,
+ "flush_resume_vars_to_stack": 1,
+ "make_resume_point": 1,
+ "resume_locs": 1,
+ "generate_resume_point": 2,
+ "resume_point_vars": 1,
+ "resume_point_stack_addr": 2,
+ "stack": 1,
+ "curfr_vs_maxfr": 2,
+ "condition_env": 3,
+ "hijack_allowed": 2,
+ "orig_only": 2,
+ "stack_only": 2,
+ "orig_and_stack": 1,
+ "stack_and_orig": 1,
+ "redoip_update": 2,
+ "has_been_done": 5,
+ "wont_be_done.": 1,
+ "resume_point_unknown.": 1,
+ "may_be_different.": 1,
+ "inside_non_condition": 6,
+ "not_inside_non_condition.": 1,
+ "not_allowed.": 1,
+ "disj_no_hijack": 4,
+ "disj_temp_frame": 4,
+ "disj_quarter_hijack": 4,
+ "disj_half_hijack": 3,
+ "disj_full_hijack": 3,
+ "HijackInfo": 29,
+ "CondEnv": 12,
+ "Allow": 12,
+ "model_det": 2,
+ "model_semi": 3,
+ "singleton": 28,
+ "llds_instr": 64,
+ "comment": 5,
+ "model_non": 2,
+ "create_temp_frame": 4,
+ "do_fail": 6,
+ "stack.pop": 1,
+ "TopResumePoint": 6,
+ "RestResumePoints": 2,
+ "stack.is_empty": 1,
+ "wont_be_done": 2,
+ "acquire_temp_slot": 15,
+ "slot_lval": 14,
+ "redoip_slot": 30,
+ "curfr": 18,
+ "non_persistent_temp_slot": 15,
+ "RedoipSlot": 33,
+ "maxfr": 42,
+ "redofr_slot": 14,
+ "RedofrSlot": 17,
+ "from_list": 13,
+ "prevfr_slot": 3,
+ "pick_stack_resume_point": 3,
+ "StackLabel": 9,
+ "LabelConst": 4,
+ "const": 10,
+ "llconst_code_addr": 6,
+ "ite_region_info": 5,
+ "ite_info": 3,
+ "ite_hijack_type": 2,
+ "ite_no_hijack": 3,
+ "ite_temp_frame": 3,
+ "ite_quarter_hijack": 3,
+ "ite_half_hijack": 3,
+ "ite_full_hijack": 3,
+ "CondCodeModel": 4,
+ "MaybeEmbeddedFrameId": 5,
+ "HijackType": 12,
+ "MaybeRegionInfo": 12,
+ "MaxfrSlot": 30,
+ "TempFrameCode": 4,
+ "MaxfrCode": 7,
+ "EmbeddedFrameId": 2,
+ "slot_success_record": 1,
+ "persistent_temp_slot": 1,
+ "SuccessRecordSlot": 6,
+ "InitSuccessCode": 3,
+ "llconst_false": 1,
+ "ITEResumePoint": 2,
+ "ThenCode": 10,
+ "ElseCode": 7,
+ "ResumePoints0": 5,
+ "stack.det_pop": 1,
+ "HijackResumeKnown": 2,
+ "OldCondEnv": 2,
+ "RegionInfo": 2,
+ "EmbeddedStackFrameId": 2,
+ "ITEStackResumeCodeAddr": 2,
+ "llconst_true": 1,
+ "AfterRegionOp": 3,
+ "if_val": 1,
+ "unop": 1,
+ "logical_not": 1,
+ "code_label": 2,
+ "use_and_maybe_pop_region_frame": 1,
+ "region_ite_nondet_cond_fail": 1,
+ "goto": 2,
+ "maybe_pick_stack_resume_point": 1,
+ "ResumeMap0": 2,
+ "make_fake_resume_map": 5,
+ "do_redo": 1,
+ "is_empty": 1,
+ "Locns": 2,
+ "set.make_singleton_set": 1,
+ "reg": 1,
+ "region_commit_stack_frame": 5,
+ "AddTrailOps": 4,
+ "AddRegionOps": 5,
+ "CommitGoalInfo": 4,
+ "DetCommitInfo": 4,
+ "SaveMaxfrCode": 3,
+ "save_maxfr": 3,
+ "MaybeMaxfrSlot": 6,
+ "maybe_save_trail_info": 2,
+ "MaybeTrailSlots": 8,
+ "SaveTrailCode": 4,
+ "maybe_save_region_commit_frame": 4,
+ "MaybeRegionCommitFrameInfo": 8,
+ "SaveRegionCommitFrameCode": 2,
+ "SaveRegionCommitFrameCode.": 2,
+ "RestoreMaxfrCode": 3,
+ "restore_maxfr": 3,
+ "release_temp_slot": 1,
+ "maybe_restore_trail_info": 2,
+ "CommitTrailCode": 4,
+ "maybe_restore_region_commit_frame": 2,
+ "SuccessRegionCode": 3,
+ "_FailureRegionCode": 1,
+ "SuccessRegionCode.": 1,
+ "commit_hijack_info": 2,
+ "commit_temp_frame": 3,
+ "commit_quarter_hijack": 3,
+ "commit_half_hijack": 3,
+ "commit_full_hijack": 3,
+ "SemiCommitInfo": 4,
+ "clone_resume_point": 1,
+ "NewResumePoint": 4,
+ "stack.push": 1,
+ "StackLabelConst": 7,
+ "UseMinimalModelStackCopyCut": 4,
+ "Components": 4,
+ "foreign_proc_raw_code": 4,
+ "cannot_branch_away": 4,
+ "proc_affects_liveness": 2,
+ "live_lvals_info": 4,
+ "proc_does_not_affect_liveness": 2,
+ "MD": 4,
+ "proc_may_duplicate": 2,
+ "MarkCode": 3,
+ "foreign_proc_code": 2,
+ "proc_will_not_call_mercury": 2,
+ "HijackCode": 5,
+ "UseMinimalModel": 3,
+ "CutCode": 4,
+ "SuccessUndoCode": 5,
+ "FailureUndoCode": 5,
+ "AfterCommit": 2,
+ "ResumePointCode": 2,
+ "FailCode": 2,
+ "RestoreTrailCode": 2,
+ "FailureRegionCode": 2,
+ "SuccLabel": 3,
+ "GotoSuccLabel": 2,
+ "SuccLabelCode": 1,
+ "SuccessCode": 2,
+ "FailureCode": 2,
+ "SuccLabelCode.": 1,
+ "_ForwardLiveVarsBeforeGoal": 1,
+ "store.": 1,
+ "typeclass": 1,
+ "store": 52,
+ "T": 52,
+ "where": 8,
+ "S": 133,
+ "instance": 4,
+ "io.state": 3,
+ "store.init": 2,
+ "generic_mutvar": 15,
+ "io_mutvar": 1,
+ "store_mutvar": 1,
+ "store.new_mutvar": 1,
+ "store.copy_mutvar": 1,
+ "store.get_mutvar": 1,
+ "store.set_mutvar": 1,
+ "<=>": 5,
+ "new_cyclic_mutvar": 2,
+ "Func": 4,
+ "Mutvar": 23,
+ "Create": 1,
+ "new": 25,
+ "variable": 1,
+ "whose": 2,
+ "initialized": 2,
+ "with": 5,
+ "returned": 1,
+ "from": 1,
+ "specified": 1,
+ "function": 3,
+ "The": 2,
+ "argument": 6,
+ "passed": 2,
+ "mutvar": 6,
+ "itself": 4,
+ "has": 4,
+ "yet": 1,
+ "been": 1,
+ "safe": 2,
+ "because": 1,
+ "does": 3,
+ "get": 2,
+ "so": 3,
+ "it": 1,
+ "can": 1,
+ "t": 5,
+ "examine": 1,
+ "uninitialized": 1,
+ "predicate": 1,
+ "useful": 1,
+ "creating": 1,
+ "self": 1,
+ "referential": 1,
+ "values": 1,
+ "such": 2,
+ "as": 5,
+ "circular": 1,
+ "linked": 1,
+ "lists": 1,
+ "For": 1,
+ "example": 1,
+ "clist": 2,
+ "node": 1,
+ "store.new_cyclic_mutvar": 1,
+ "generic_ref": 20,
+ "io_ref": 1,
+ "store_ref": 1,
+ "store.new_ref": 1,
+ "store.ref_functor": 1,
+ "store.arg_ref": 1,
+ "ArgT": 4,
+ "store.new_arg_ref": 3,
+ "store.set_ref": 1,
+ "store.set_ref_value": 1,
+ "store.copy_ref_value": 1,
+ "store.extract_ref_value": 1,
+ "Nasty": 1,
+ "performance": 2,
+ "hacks": 1,
+ "WARNING": 1,
+ "use": 1,
+ "of": 10,
+ "these": 1,
+ "procedures": 2,
+ "dangerous": 1,
+ "Use": 1,
+ "them": 1,
+ "last": 1,
+ "resort": 1,
+ "critical": 1,
+ "and": 6,
+ "shows": 1,
+ "that": 2,
+ "using": 1,
+ "versions": 1,
+ "bottleneck": 1,
+ "These": 1,
+ "may": 1,
+ "vanish": 1,
+ "future": 1,
+ "Mercury": 1,
+ "unsafe_arg_ref": 1,
+ "same": 2,
+ "arg_ref": 12,
+ "unsafe_new_arg_ref": 1,
+ "new_arg_ref": 1,
+ "except": 1,
+ "they": 4,
+ "doesn": 1,
+ "check": 1,
+ "errors": 1,
+ "don": 3,
+ "work": 3,
+ "no_tag": 1,
+ "types": 3,
+ "exactly": 2,
+ "one": 2,
+ "functor": 2,
+ "which": 2,
+ "arguments": 2,
+ "occupy": 1,
+ "word": 2,
+ "other": 1,
+ "functors.": 1,
+ "store.unsafe_arg_ref": 1,
+ "store.unsafe_new_arg_ref": 1,
+ "implementation": 1,
+ "require": 1,
+ "just": 1,
+ "real": 1,
+ "representation": 1,
+ "pragma": 41,
+ "foreign_type": 10,
+ "MR_Word": 24,
+ "can_pass_as_mercury_type": 5,
+ "equality": 5,
+ "store_equal": 7,
+ "comparison": 5,
+ "store_compare": 7,
+ "int32": 1,
+ "Java": 12,
+ "Erlang": 3,
+ "attempt": 2,
+ "two": 2,
+ "stores": 2,
+ "comparison_result": 1,
+ "compare": 1,
+ "Mutvars": 1,
+ "references": 1,
+ "are": 1,
+ "each": 1,
+ "represented": 1,
+ "pointer": 1,
+ "single": 1,
+ "on": 1,
+ "heap": 1,
+ "private_builtin.ref": 2,
+ "ref": 2,
+ "store.do_init": 6,
+ "foreign_proc": 28,
+ "_S0": 16,
+ "will_not_call_mercury": 28,
+ "will_not_modify_trail": 7,
+ "new_mutvar": 5,
+ "Val": 45,
+ "S0": 23,
+ "get_mutvar": 5,
+ "set_mutvar": 5,
+ "_S": 12,
+ "copy_mutvar": 1,
+ "Copy": 2,
+ "Value": 4,
+ "store.unsafe_new_uninitialized_mutvar": 1,
+ "unsafe_new_uninitialized_mutvar": 4,
+ "MR_offset_incr_hp_msg": 5,
+ "MR_SIZE_SLOT_SIZE": 10,
+ "1": 5,
+ "MR_ALLOC_ID": 5,
+ "2": 2,
+ "MR_define_size_slot": 5,
+ "0": 2,
+ "object": 21,
+ "MutVar": 4,
+ "Store": 5,
+ "apply": 1,
+ "Ref": 41,
+ "foreign_code": 2,
+ "public": 17,
+ "class": 4,
+ "Object": 9,
+ "referenced": 4,
+ "obj": 7,
+ "Specific": 2,
+ "field": 20,
+ "or": 2,
+ "null": 8,
+ "specify": 2,
+ "GetFields": 2,
+ "return": 6,
+ "fields": 3,
+ "any": 2,
+ "particular": 2,
+ "order": 2,
+ "really": 2,
+ "usable": 2,
+ "System": 1,
+ "Reflection": 1,
+ "FieldInfo": 1,
+ "Constructors": 2,
+ "init": 8,
+ "setField": 4,
+ "Set": 2,
+ "according": 2,
+ "given": 2,
+ "index": 2,
+ "void": 4,
+ "GetType": 1,
+ "reference": 4,
+ "getValue": 4,
+ "GetValue": 1,
+ "Update": 2,
+ "setValue": 2,
+ "SetValue": 1,
+ "static": 1,
+ "lang": 28,
+ "getDeclaredFields": 2,
+ "reflect": 1,
+ "Field": 5,
+ "try": 3,
+ "getClass": 1,
+ "catch": 11,
+ "SecurityException": 1,
+ "se": 1,
+ "throw": 11,
+ "RuntimeException": 11,
+ "Security": 1,
+ "manager": 1,
+ "denied": 1,
+ "access": 3,
+ "ArrayIndexOutOfBoundsException": 1,
+ "e": 13,
+ "No": 1,
+ "Exception": 3,
+ "Unable": 3,
+ "getMessage": 3,
+ "IllegalAccessException": 2,
+ "inaccessible": 2,
+ "IllegalArgumentException": 2,
+ "mismatch": 2,
+ "NullPointerException": 2,
+ "new_ref": 4,
+ "ets": 3,
+ "insert": 1,
+ "copy_ref_value": 1,
+ "unsafe_ref_value": 6,
+ "store.unsafe_ref_value": 1,
+ "lookup": 1,
+ "ref_functor": 1,
+ "canonicalize": 1,
+ "foreign_decl": 1,
+ "include": 4,
+ "mercury_type_info": 1,
+ "h": 4,
+ "mercury_heap": 1,
+ "mercury_misc": 1,
+ "MR_fatal_error": 5,
+ "mercury_deconstruct": 1,
+ "MR_arg": 3,
+ "ArgNum": 7,
+ "ArgRef": 22,
+ "may_not_duplicate": 1,
+ "MR_TypeInfo": 10,
+ "arg_type_info": 6,
+ "exp_arg_type_info": 6,
+ "MR_DuArgLocn": 2,
+ "arg_locn": 9,
+ "TypeInfo_for_T": 2,
+ "TypeInfo_for_ArgT": 2,
+ "MR_save_transient_registers": 2,
+ "MR_NONCANON_ABORT": 2,
+ "number": 2,
+ "range": 2,
+ "MR_compare_type_info": 2,
+ "MR_COMPARE_EQUAL": 2,
+ "wrong": 2,
+ "MR_restore_transient_registers": 2,
+ "NULL": 2,
+ "MR_arg_bits": 2,
+ "store.ref/2": 3,
+ "MR_arg_value": 2,
+ "C#": 6,
+ "store.Ref": 8,
+ "Ref.getValue": 6,
+ "*arg_ref": 1,
+ "*arg_locn": 1,
+ "&": 7,
+ "&&": 1,
+ "ValRef": 1,
+ "Ref.setValue": 3,
+ "ValRef.getValue": 2,
+ "*Ptr": 2,
+ "Ptr": 4,
+ "MR_strip_tag": 2,
+ "Arg": 6
+ },
+ "Perl6": {
+ "role": 10,
+ "q": 5,
+ "{": 29,
+ "token": 6,
+ "stopper": 2,
+ "MAIN": 1,
+ "quote": 1,
+ ")": 19,
+ "}": 27,
+ "backslash": 3,
+ "sym": 3,
+ "<\\\\>": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ ".": 1,
+ "method": 2,
+ "tweak_q": 1,
+ "(": 16,
+ "v": 2,
+ "self.panic": 2,
+ "tweak_qq": 1,
+ "qq": 5,
+ "does": 7,
+ "b1": 1,
+ "c1": 1,
+ "s1": 1,
+ "a1": 1,
+ "h1": 1,
+ "f1": 1,
+ "Too": 2,
+ "late": 2,
+ "for": 2,
+ "SHEBANG#!perl": 1,
+ "use": 1,
+ "v6": 1,
+ ";": 19,
+ "my": 10,
+ "string": 7,
+ "if": 1,
+ "eq": 1,
+ "say": 10,
+ "regex": 2,
+ "http": 1,
+ "-": 3,
+ "verb": 1,
+ "|": 9,
+ "#": 13,
+ "multi": 2,
+ "line": 5,
+ "comment": 2,
+ "I": 1,
+ "there": 1,
+ "m": 2,
+ "even": 1,
+ "specialer": 1,
+ "nesting": 1,
+ "work": 1,
+ "<": 3,
+ "trying": 1,
+ "mixed": 1,
+ "delimiters": 1,
+ "": 1,
+ "arbitrary": 2,
+ "delimiter": 2,
+ "Hooray": 1,
+ "": 1,
+ "with": 9,
+ "whitespace": 1,
+ "<<": 1,
+ "more": 1,
+ "strings": 1,
+ "%": 1,
+ "hash": 1,
+ "Hash.new": 1,
+ "begin": 1,
+ "pod": 1,
+ "Here": 1,
+ "t": 2,
+ "highlighted": 1,
+ "table": 1,
+ "Of": 1,
+ "things": 1,
+ "A": 3,
+ "single": 3,
+ "declarator": 7,
+ "a": 8,
+ "keyword": 7,
+ "like": 7,
+ "Another": 2,
+ "block": 2,
+ "brace": 1,
+ "More": 2,
+ "blocks": 2,
+ "don": 2,
+ "x": 2,
+ "foo": 3,
+ "Rob": 1,
+ "food": 1,
+ "match": 1,
+ "sub": 1,
+ "something": 1,
+ "Str": 1,
+ "D": 1,
+ "value": 1,
+ "...": 1,
+ "s": 1,
+ "some": 2,
+ "stuff": 1,
+ "chars": 1,
+ "/": 1,
+ "": 1,
+ "] |