From 37962c4944a087afad27ce931265fd30fe01f6e0 Mon Sep 17 00:00:00 2001 From: cgay Date: Fri, 24 May 2024 04:09:25 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20dylan-la?= =?UTF-8?q?ng/opendylan@b2280c32246c29f61651528a3fb186a29dbc0690=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../intro-dylan/modules-libraries.rst.txt | 82 ++++++++--------- intro-dylan/modules-libraries.html | 87 ++++++++++--------- searchindex.js | 2 +- 3 files changed, 86 insertions(+), 85 deletions(-) diff --git a/_sources/intro-dylan/modules-libraries.rst.txt b/_sources/intro-dylan/modules-libraries.rst.txt index 833bbc557..9192473e1 100644 --- a/_sources/intro-dylan/modules-libraries.rst.txt +++ b/_sources/intro-dylan/modules-libraries.rst.txt @@ -3,9 +3,10 @@ Modules & Libraries ******************* Modules and libraries provide the structure of a Dylan program. Modules -represent namespaces and control access to objects and functions. -Libraries contain modules, and act as units of compilation in a Dylan -program. +represent namespaces and control access to objects such as classes, functions, +variables, and constants. Libraries are the unit of compilation in a Dylan +program. A library contains any number of modules, which may or may not be +exported for other libraries to use. Simple Modules ============== @@ -26,24 +27,24 @@ chapters might look like this: use dylan; export , - serial-number, - owner, owner-setter, - tax, + serial-number, + owner, + owner-setter, + tax, , , - capacity; + capacity; end module; Like all normal modules, this one uses the ``dylan`` module, which contains all of the standard built-in functions and classes. In turn, the ``vehicles`` module exports all three of the vehicle classes, the -generic function ``tax``, several getter functions and a single -setter function. +generic function ``tax``, several getter functions, and a single +:drm:`setter ` function. -To control access to a slot, export some combination of its getter and -setter functions. To make a slot public, export both. To make it -read-only, export just the getter function. To make it private, export -neither. In the above example, the slot ``serial-number`` is read-only, +To make a :drm:`slot ` public export its getter and setter functions. To +make the slot read-only, export just the getter function. To make it private, +export neither. In the above example, the slot ``serial-number`` is read-only, while the slot ``owner`` is read/write. Note that when a module adds a method to an imported generic function, @@ -51,7 +52,7 @@ the change affects all modules using that function. :drm:`define method` adds the new method to the existing generic function object, which may be referenced by any module importing its binding. The module that originally defined the generic function may prevent this behavior by -"sealing" it over specific argument types. +:drm:`sealing` it over specific argument types. Import Options ============== @@ -60,40 +61,35 @@ Dylan allows very precise control over how bindings are imported from other modules. For example, individual bindings may be imported by name. They may be renamed, either one at a time, or by adding a prefix to all of a module's names at once. Some or all of them may be -re-exported immediately. See the DRM for specific examples. +re-exported immediately. See the DRM for :drm:`specific examples `. -Dylan's import system has a number of advantages. Name conflicts +Dylan's module system has a number of advantages. Name conflicts occur rarely. Programmers don't need to define or maintain function prototypes. There's no need for header files. Modules may also provide different interfaces to the same objects -- one module exports a complete interface, which another module imports, redefines -and re-exports. +and re-exports. For example, it is common to use one or more unexported modules +for implementation and export a separate public API module. Libraries ========= Libraries contain modules. For example, the ``dylan`` library contains the ``dylan`` module -described earlier, the ``extensions`` module, and -possibly several other implementation-dependent modules. Note that +described earlier, the ``dylan-extensions`` module, and +several other implementation-dependent modules. Note that a library and a module may share the same name. Modules with the same name may also appear in more than one library. -By default, a Dylan environment provides a library called -``dylan-user`` for the convenience of the programmer. -This is typically used for short, single library programs which -depend only on modules found in the Dylan library. - -Additionally, every library contains an implicit module, also -known as ``dylan-user``, which imports all of the -modules found in the ``dylan`` library. This may be -used for single module programs. Many Dylan environments, however, -use it to bootstrap new library definitions. The vehicle library, -for example, might be defined as follows in a ``dylan-user`` -module: +Every library contains an implicit module called ``dylan-user`` which imports +all the names from the ``dylan`` module. This module is only used to define +your library and module definitions. The ``vehicle`` library, for example, might be +defined as follows in the ``dylan-user`` module: .. code-block:: dylan + Module: dylan-user + define library vehicles use dylan; // This is the library! export // These are modules. @@ -107,27 +103,31 @@ This library could in turn be imported by another library: .. code-block:: dylan + Module: dylan-user + define library vehicle-application use dylan; use my-gui-classes; use vehicles; end; -Libraries import other libraries and export modules, whereas -modules import other modules and export variables. In general, a -module may import any module found in its own library or exported +Libraries use other libraries and export modules, whereas +modules use other modules and export bindings. In general, a +module may use any module found in its own library or exported from a library imported by its own library. The following module, for example, could belong to the ``vehicle-application`` library. .. code-block:: dylan + Module: dylan-user + define module sample-module - // module name source library - use dylan; // dylan - use extensions; // dylan - use menus; // my-gui-classes - use vehicles; // vehicles - use inspection; // vehicles + // module name source library + use dylan; // dylan + use dylan-extensions; // dylan + use menus; // my-gui-classes + use vehicles; // vehicles + use inspection; // vehicles end module; Sealing @@ -135,7 +135,7 @@ Sealing Classes and generic functions may be :drm:`sealed `, preventing code in other libraries from subclassing objects or adding methods to generic -functions. This allows the compiler optimize more effectively. Both classes and +functions. This allows the compiler to optimize more effectively. Both classes and generic functions are sealed by default. To allow code in other libraries to subclass a given class, diff --git a/intro-dylan/modules-libraries.html b/intro-dylan/modules-libraries.html index 36d0c83d0..f9c00e9cf 100644 --- a/intro-dylan/modules-libraries.html +++ b/intro-dylan/modules-libraries.html @@ -548,9 +548,10 @@

Modules & Libraries

Modules and libraries provide the structure of a Dylan program. Modules -represent namespaces and control access to objects and functions. -Libraries contain modules, and act as units of compilation in a Dylan -program.

+represent namespaces and control access to objects such as classes, functions, +variables, and constants. Libraries are the unit of compilation in a Dylan +program. A library contains any number of modules, which may or may not be +exported for other libraries to use.

Simple Modules

Modules import names (or bindings) from other modules and export names @@ -565,31 +566,31 @@

Simple Modules use dylan; export <vehicle>, - serial-number, - owner, owner-setter, - tax, + serial-number, + owner, + owner-setter, + tax, <car>, <truck>, - capacity; + capacity; end module;

Like all normal modules, this one uses the dylan module, which contains all of the standard built-in functions and classes. In turn, the vehicles module exports all three of the vehicle classes, the -generic function tax, several getter functions and a single -setter function.

-

To control access to a slot, export some combination of its getter and -setter functions. To make a slot public, export both. To make it -read-only, export just the getter function. To make it private, export -neither. In the above example, the slot serial-number is read-only, +generic function tax, several getter functions, and a single +setter function.

+

To make a slot public export its getter and setter functions. To +make the slot read-only, export just the getter function. To make it private, +export neither. In the above example, the slot serial-number is read-only, while the slot owner is read/write.

Note that when a module adds a method to an imported generic function, the change affects all modules using that function. define method adds the new method to the existing generic function object, which may be referenced by any module importing its binding. The module that originally defined the generic function may prevent this behavior by -“sealing” it over specific argument types.

+sealing it over specific argument types.

Import Options

@@ -597,34 +598,30 @@

Import Optionsspecific examples <define module>.

+

Dylan’s module system has a number of advantages. Name conflicts occur rarely. Programmers don’t need to define or maintain function prototypes. There’s no need for header files. Modules may also provide different interfaces to the same objects – one module exports a complete interface, which another module imports, redefines -and re-exports.

+and re-exports. For example, it is common to use one or more unexported modules +for implementation and export a separate public API module.

Libraries

Libraries contain modules. For example, the dylan library contains the dylan module -described earlier, the extensions module, and -possibly several other implementation-dependent modules. Note that +described earlier, the dylan-extensions module, and +several other implementation-dependent modules. Note that a library and a module may share the same name. Modules with the same name may also appear in more than one library.

-

By default, a Dylan environment provides a library called -dylan-user for the convenience of the programmer. -This is typically used for short, single library programs which -depend only on modules found in the Dylan library.

-

Additionally, every library contains an implicit module, also -known as dylan-user, which imports all of the -modules found in the dylan library. This may be -used for single module programs. Many Dylan environments, however, -use it to bootstrap new library definitions. The vehicle library, -for example, might be defined as follows in a dylan-user -module:

-
define library vehicles
+

Every library contains an implicit module called dylan-user which imports +all the names from the dylan module. This module is only used to define +your library and module definitions. The vehicle library, for example, might be +defined as follows in the dylan-user module:

+
Module: dylan-user
+
+define library vehicles
   use dylan;            // This is the library!
   export                // These are modules.
     vehicles,           // (Defined above.)
@@ -635,25 +632,29 @@ 

Libraries
define library vehicle-application
+
Module: dylan-user
+
+define library vehicle-application
   use dylan;
   use my-gui-classes;
   use vehicles;
 end;
 
-

Libraries import other libraries and export modules, whereas -modules import other modules and export variables. In general, a -module may import any module found in its own library or exported +

Libraries use other libraries and export modules, whereas +modules use other modules and export bindings. In general, a +module may use any module found in its own library or exported from a library imported by its own library. The following module, for example, could belong to the vehicle-application library.

-
define module sample-module
-  // module name         source library
-  use dylan;          // dylan
-  use extensions;     // dylan
-  use menus;          // my-gui-classes
-  use vehicles;       // vehicles
-  use inspection;     // vehicles
+
Module: dylan-user
+
+define module sample-module
+  // module name        source library
+  use dylan;            // dylan
+  use dylan-extensions; // dylan
+  use menus;            // my-gui-classes
+  use vehicles;         // vehicles
+  use inspection;       // vehicles
 end module;
 
@@ -662,7 +663,7 @@

Libraries

Classes and generic functions may be sealed, preventing code in other libraries from subclassing objects or adding methods to generic -functions. This allows the compiler optimize more effectively. Both classes and +functions. This allows the compiler to optimize more effectively. Both classes and generic functions are sealed by default.

To allow code in other libraries to subclass a given class, declare it as open:

diff --git a/searchindex.js b/searchindex.js index 52319ec8d..32dbaaa9f 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["about/examples/classes", "about/examples/everything_value", "about/examples/generic_functions", "about/examples/getters_setters_functions", "about/examples/hello_world", "about/examples/keyword_arguments", "about/examples/limited_types", "about/examples/macros", "about/examples/multiple_return_values", "about/index", "articles/beyond-java", "articles/macro-system", "articles/procedural-dylan/1-distance", "articles/procedural-dylan/2-quadratic", "articles/procedural-dylan/3-dot-product", "articles/procedural-dylan/index", "building-with-duim/callbacks", "building-with-duim/commands", "building-with-duim/copyright", "building-with-duim/design", "building-with-duim/improve", "building-with-duim/index", "building-with-duim/intro", "building-with-duim/menus", "building-with-duim/preface", "building-with-duim/source", "building-with-duim/tour", "community/gsoc/2012/cilk", "community/gsoc/2012/cocoa", "community/gsoc/2012/dispatch", "community/gsoc/2012/documentation", "community/gsoc/2012/dylint", "community/gsoc/2012/frontend-lisp", "community/gsoc/2012/gtk", "community/gsoc/2012/index", "community/gsoc/2012/javascript", "community/gsoc/2012/numerics", "community/gsoc/2012/project_manager", "community/gsoc/2012/speed", "community/gsoc/2012/staticlink", "community/gsoc/2012/tracing", "community/gsoc/index", "community/index", "corba-guide/bank-client", "corba-guide/bank-idl", "corba-guide/bank-server", "corba-guide/bank-setup", "corba-guide/getstart", "corba-guide/idl-app", "corba-guide/index", "corba-guide/intro", "corba-guide/preface", "corba-guide/projects", "corba-guide/rundebug", "corba-guide/scepter", "documentation/cheatsheets/collections", "documentation/cheatsheets/conditionals", "documentation/cheatsheets/index", "documentation/cheatsheets/iteration", "documentation/cheatsheets/scheme", "documentation/cheatsheets/syntax", "documentation/index", "documentation/publications", "download/index", "duim-reference/conventions", "duim-reference/copyright", "duim-reference/dcs", "duim-reference/ext-geom", "duim-reference/frames", "duim-reference/gadgets", "duim-reference/geom", "duim-reference/graphics", "duim-reference/index", "duim-reference/layouts", "duim-reference/sheets", "getting-started-cli/copyright", "getting-started-cli/cross-compilation", "getting-started-cli/debugging-with-gdb-lldb", "getting-started-cli/dylan-compiler", "getting-started-cli/dylan-environment", "getting-started-cli/dylan-mode-for-emacs", "getting-started-cli/editor-support", "getting-started-cli/environment-variables", "getting-started-cli/hello-world", "getting-started-cli/index", "getting-started-cli/managing-dependencies", "getting-started-cli/platform-specific", "getting-started-cli/quick-tips", "getting-started-cli/source-registries", "getting-started-cli/windows", "getting-started-ide/browsing", "getting-started-ide/coloring", "getting-started-ide/com-projects", "getting-started-ide/copyright", "getting-started-ide/debug", "getting-started-ide/delivery", "getting-started-ide/editopt", "getting-started-ide/expanding", "getting-started-ide/index", "getting-started-ide/model", "getting-started-ide/preface", "getting-started-ide/projects", "getting-started-ide/quick-start", "getting-started-ide/remotedbg", "hacker-guide/build-system", "hacker-guide/compiler/index", "hacker-guide/compiler/notes-warnings-errors", "hacker-guide/compiler/old/design", "hacker-guide/compiler/old/internals", "hacker-guide/copyright", "hacker-guide/documentation/doctower", "hacker-guide/documentation/example", "hacker-guide/documentation/generating", "hacker-guide/documentation/guidelines", "hacker-guide/documentation/index", "hacker-guide/duim/index", "hacker-guide/glossary", "hacker-guide/index", "hacker-guide/runtime-manager/access-path", "hacker-guide/runtime-manager/debugger-manager", "hacker-guide/runtime-manager/index", "hacker-guide/runtime/calling-convention", "hacker-guide/runtime/index", "hacker-guide/runtime/mangling", "hacker-guide/runtime/object-representation", "hacker-guide/runtime/special-features", "hacker-guide/runtime/startup", "hacker-guide/runtime/threads", "hacker-guide/topics/debugging", "hacker-guide/topics/index", "hacker-guide/topics/making-a-release", "hacker-guide/topics/method-dispatch", "hacker-guide/topics/porting", "hacker-guide/topics/ppml", "history/apple-dylan/apple-cambridge", "history/apple-dylan/eulogy", "history/apple-dylan/index", "history/apple-dylan/screenshots/browsers", "history/apple-dylan/screenshots/dynamic", "history/apple-dylan/screenshots/index", "history/apple-dylan/screenshots/misc", "history/apple-dylan/technology-release", "history/apple-dylan/today", "history/index", "index", "intro-dylan/conditions", "intro-dylan/copyright", "intro-dylan/expressions-variables", "intro-dylan/index", "intro-dylan/methods-generic-functions", "intro-dylan/modules-libraries", "intro-dylan/multiple-dispatch", "intro-dylan/objects", "intro-dylan/why-dylan", "library-reference/c-ffi/index", "library-reference/collections/bit-set", "library-reference/collections/bit-vector", "library-reference/collections/collectors", "library-reference/collections/index", "library-reference/collections/plists", "library-reference/collections/set", "library-reference/collections/table-extensions", "library-reference/coloring-stream/index", "library-reference/common-dylan/byte-vector", "library-reference/common-dylan/common-extensions", "library-reference/common-dylan/index", "library-reference/common-dylan/machine-words", "library-reference/common-dylan/simple-format", "library-reference/common-dylan/simple-profiling", "library-reference/common-dylan/simple-random", "library-reference/common-dylan/simple-timers", "library-reference/common-dylan/transcendentals", "library-reference/copyright", "library-reference/dood/index", "library-reference/dylan/finalization", "library-reference/dylan/index", "library-reference/dylan/primitives", "library-reference/dylan/threads", "library-reference/index", "library-reference/io/format", "library-reference/io/format-out", "library-reference/io/index", "library-reference/io/print", "library-reference/io/standard-io", "library-reference/io/streams", "library-reference/language-extensions/alternative-curry-syntax", "library-reference/language-extensions/define-function", "library-reference/language-extensions/for-iteration", "library-reference/language-extensions/index", "library-reference/language-extensions/inlining", "library-reference/language-extensions/language-differences", "library-reference/language-extensions/macro-system-extensions", "library-reference/language-extensions/numbers", "library-reference/language-extensions/numeric-literals", "library-reference/language-extensions/object-with-elements", "library-reference/language-extensions/parser-expansions", "library-reference/language-extensions/string-literals", "library-reference/language-extensions/weak-tables", "library-reference/lid", "library-reference/network/index", "library-reference/progress-stream/index", "library-reference/sql/index", "library-reference/system/date", "library-reference/system/file-system", "library-reference/system/index", "library-reference/system/locators", "library-reference/system/operating-system", "library-reference/t-lists/index", "library-reference/win32/index", "man-pages/dylan-compiler", "man-pages/index", "news/2011/11/22/new_documentation", "news/2011/11/22/welcome", "news/2011/12/10/new_release", "news/2011/12/12/dswank", "news/2012/01/25/c3", "news/2012/05/18/strings", "news/2012/10/15/command-line-parser", "news/2012/10/18/editor-support", "news/2012/12/20/new-release", "news/2013/01/21/dylan-programming-guide", "news/2013/06/30/dylan-hack-a-thon", "news/2013/07/11/new-release", "news/2013/08/15/duim-gtk", "news/2013/12/23/new-release", "news/2014/01/28/call-for-help", "news/2014/05/28/nix-packages-available", "news/2015/01/01/new-release", "news/2019/03/31/new-release", "news/2020/10/10/new-release", "news/2020/12/30/playground", "news/2022/11/28/new-release", "news/index", "proposals/dep-0001-dep-process", "proposals/dep-0002-define-function", "proposals/dep-0003-c3-linearization", "proposals/dep-0004-strings-library", "proposals/dep-0005-subclass-function", "proposals/dep-0006-single-file-library", "proposals/dep-0007-collection-type-safety", "proposals/dep-0008-multi-line-strings", "proposals/dep-0010-element-otherwise", "proposals/dep-0011-numeric-literal-syntax", "proposals/dep-0012-string-literals", "proposals/index", "release-notes/2011.1", "release-notes/2012.1", "release-notes/2013.1", "release-notes/2013.2", "release-notes/2014.1", "release-notes/2019.1", "release-notes/2020.1", "release-notes/2022.1", "release-notes/2023.1", "release-notes/2024.1", "release-notes/2024.2", "release-notes/index", "style-guide/index"], "filenames": ["about/examples/classes.rst", "about/examples/everything_value.rst", "about/examples/generic_functions.rst", "about/examples/getters_setters_functions.rst", "about/examples/hello_world.rst", "about/examples/keyword_arguments.rst", "about/examples/limited_types.rst", "about/examples/macros.rst", "about/examples/multiple_return_values.rst", "about/index.rst", "articles/beyond-java.rst", "articles/macro-system.rst", "articles/procedural-dylan/1-distance.rst", "articles/procedural-dylan/2-quadratic.rst", "articles/procedural-dylan/3-dot-product.rst", "articles/procedural-dylan/index.rst", "building-with-duim/callbacks.rst", "building-with-duim/commands.rst", "building-with-duim/copyright.rst", "building-with-duim/design.rst", "building-with-duim/improve.rst", "building-with-duim/index.rst", "building-with-duim/intro.rst", "building-with-duim/menus.rst", "building-with-duim/preface.rst", "building-with-duim/source.rst", "building-with-duim/tour.rst", "community/gsoc/2012/cilk.rst", "community/gsoc/2012/cocoa.rst", "community/gsoc/2012/dispatch.rst", "community/gsoc/2012/documentation.rst", "community/gsoc/2012/dylint.rst", "community/gsoc/2012/frontend-lisp.rst", "community/gsoc/2012/gtk.rst", "community/gsoc/2012/index.rst", "community/gsoc/2012/javascript.rst", "community/gsoc/2012/numerics.rst", "community/gsoc/2012/project_manager.rst", "community/gsoc/2012/speed.rst", "community/gsoc/2012/staticlink.rst", "community/gsoc/2012/tracing.rst", "community/gsoc/index.rst", "community/index.rst", "corba-guide/bank-client.rst", "corba-guide/bank-idl.rst", "corba-guide/bank-server.rst", "corba-guide/bank-setup.rst", "corba-guide/getstart.rst", "corba-guide/idl-app.rst", "corba-guide/index.rst", "corba-guide/intro.rst", "corba-guide/preface.rst", "corba-guide/projects.rst", "corba-guide/rundebug.rst", "corba-guide/scepter.rst", "documentation/cheatsheets/collections.rst", "documentation/cheatsheets/conditionals.rst", "documentation/cheatsheets/index.rst", "documentation/cheatsheets/iteration.rst", "documentation/cheatsheets/scheme.rst", "documentation/cheatsheets/syntax.rst", "documentation/index.rst", "documentation/publications.rst", "download/index.rst", "duim-reference/conventions.rst", "duim-reference/copyright.rst", "duim-reference/dcs.rst", "duim-reference/ext-geom.rst", "duim-reference/frames.rst", "duim-reference/gadgets.rst", "duim-reference/geom.rst", "duim-reference/graphics.rst", "duim-reference/index.rst", "duim-reference/layouts.rst", "duim-reference/sheets.rst", "getting-started-cli/copyright.rst", "getting-started-cli/cross-compilation.rst", "getting-started-cli/debugging-with-gdb-lldb.rst", "getting-started-cli/dylan-compiler.rst", "getting-started-cli/dylan-environment.rst", "getting-started-cli/dylan-mode-for-emacs.rst", "getting-started-cli/editor-support.rst", "getting-started-cli/environment-variables.rst", "getting-started-cli/hello-world.rst", "getting-started-cli/index.rst", "getting-started-cli/managing-dependencies.rst", "getting-started-cli/platform-specific.rst", "getting-started-cli/quick-tips.rst", "getting-started-cli/source-registries.rst", "getting-started-cli/windows.rst", "getting-started-ide/browsing.rst", "getting-started-ide/coloring.rst", "getting-started-ide/com-projects.rst", "getting-started-ide/copyright.rst", "getting-started-ide/debug.rst", "getting-started-ide/delivery.rst", "getting-started-ide/editopt.rst", "getting-started-ide/expanding.rst", "getting-started-ide/index.rst", "getting-started-ide/model.rst", "getting-started-ide/preface.rst", "getting-started-ide/projects.rst", "getting-started-ide/quick-start.rst", "getting-started-ide/remotedbg.rst", "hacker-guide/build-system.rst", "hacker-guide/compiler/index.rst", "hacker-guide/compiler/notes-warnings-errors.rst", "hacker-guide/compiler/old/design.rst", "hacker-guide/compiler/old/internals.rst", "hacker-guide/copyright.rst", "hacker-guide/documentation/doctower.rst", "hacker-guide/documentation/example.rst", "hacker-guide/documentation/generating.rst", "hacker-guide/documentation/guidelines.rst", "hacker-guide/documentation/index.rst", "hacker-guide/duim/index.rst", "hacker-guide/glossary.rst", "hacker-guide/index.rst", "hacker-guide/runtime-manager/access-path.rst", "hacker-guide/runtime-manager/debugger-manager.rst", "hacker-guide/runtime-manager/index.rst", "hacker-guide/runtime/calling-convention.rst", "hacker-guide/runtime/index.rst", "hacker-guide/runtime/mangling.rst", "hacker-guide/runtime/object-representation.rst", "hacker-guide/runtime/special-features.rst", "hacker-guide/runtime/startup.rst", "hacker-guide/runtime/threads.rst", "hacker-guide/topics/debugging.rst", "hacker-guide/topics/index.rst", "hacker-guide/topics/making-a-release.rst", "hacker-guide/topics/method-dispatch.rst", "hacker-guide/topics/porting.rst", "hacker-guide/topics/ppml.rst", "history/apple-dylan/apple-cambridge.rst", "history/apple-dylan/eulogy.rst", "history/apple-dylan/index.rst", "history/apple-dylan/screenshots/browsers.rst", "history/apple-dylan/screenshots/dynamic.rst", "history/apple-dylan/screenshots/index.rst", "history/apple-dylan/screenshots/misc.rst", "history/apple-dylan/technology-release.rst", "history/apple-dylan/today.rst", "history/index.rst", "index.rst", "intro-dylan/conditions.rst", "intro-dylan/copyright.rst", "intro-dylan/expressions-variables.rst", "intro-dylan/index.rst", "intro-dylan/methods-generic-functions.rst", "intro-dylan/modules-libraries.rst", "intro-dylan/multiple-dispatch.rst", "intro-dylan/objects.rst", "intro-dylan/why-dylan.rst", "library-reference/c-ffi/index.rst", "library-reference/collections/bit-set.rst", "library-reference/collections/bit-vector.rst", "library-reference/collections/collectors.rst", "library-reference/collections/index.rst", "library-reference/collections/plists.rst", "library-reference/collections/set.rst", "library-reference/collections/table-extensions.rst", "library-reference/coloring-stream/index.rst", "library-reference/common-dylan/byte-vector.rst", "library-reference/common-dylan/common-extensions.rst", "library-reference/common-dylan/index.rst", "library-reference/common-dylan/machine-words.rst", "library-reference/common-dylan/simple-format.rst", "library-reference/common-dylan/simple-profiling.rst", "library-reference/common-dylan/simple-random.rst", "library-reference/common-dylan/simple-timers.rst", "library-reference/common-dylan/transcendentals.rst", "library-reference/copyright.rst", "library-reference/dood/index.rst", "library-reference/dylan/finalization.rst", "library-reference/dylan/index.rst", "library-reference/dylan/primitives.rst", "library-reference/dylan/threads.rst", "library-reference/index.rst", "library-reference/io/format.rst", "library-reference/io/format-out.rst", "library-reference/io/index.rst", "library-reference/io/print.rst", "library-reference/io/standard-io.rst", "library-reference/io/streams.rst", "library-reference/language-extensions/alternative-curry-syntax.rst", "library-reference/language-extensions/define-function.rst", "library-reference/language-extensions/for-iteration.rst", "library-reference/language-extensions/index.rst", "library-reference/language-extensions/inlining.rst", "library-reference/language-extensions/language-differences.rst", "library-reference/language-extensions/macro-system-extensions.rst", "library-reference/language-extensions/numbers.rst", "library-reference/language-extensions/numeric-literals.rst", "library-reference/language-extensions/object-with-elements.rst", "library-reference/language-extensions/parser-expansions.rst", "library-reference/language-extensions/string-literals.rst", "library-reference/language-extensions/weak-tables.rst", "library-reference/lid.rst", "library-reference/network/index.rst", "library-reference/progress-stream/index.rst", "library-reference/sql/index.rst", "library-reference/system/date.rst", "library-reference/system/file-system.rst", "library-reference/system/index.rst", "library-reference/system/locators.rst", "library-reference/system/operating-system.rst", "library-reference/t-lists/index.rst", "library-reference/win32/index.rst", "man-pages/dylan-compiler.rst", "man-pages/index.rst", "news/2011/11/22/new_documentation.rst", "news/2011/11/22/welcome.rst", "news/2011/12/10/new_release.rst", "news/2011/12/12/dswank.rst", "news/2012/01/25/c3.rst", "news/2012/05/18/strings.rst", "news/2012/10/15/command-line-parser.rst", "news/2012/10/18/editor-support.rst", "news/2012/12/20/new-release.rst", "news/2013/01/21/dylan-programming-guide.rst", "news/2013/06/30/dylan-hack-a-thon.rst", "news/2013/07/11/new-release.rst", "news/2013/08/15/duim-gtk.rst", "news/2013/12/23/new-release.rst", "news/2014/01/28/call-for-help.rst", "news/2014/05/28/nix-packages-available.rst", "news/2015/01/01/new-release.rst", "news/2019/03/31/new-release.rst", "news/2020/10/10/new-release.rst", "news/2020/12/30/playground.rst", "news/2022/11/28/new-release.rst", "news/index.rst", "proposals/dep-0001-dep-process.rst", "proposals/dep-0002-define-function.rst", "proposals/dep-0003-c3-linearization.rst", "proposals/dep-0004-strings-library.rst", "proposals/dep-0005-subclass-function.rst", "proposals/dep-0006-single-file-library.rst", "proposals/dep-0007-collection-type-safety.rst", "proposals/dep-0008-multi-line-strings.rst", "proposals/dep-0010-element-otherwise.rst", "proposals/dep-0011-numeric-literal-syntax.rst", "proposals/dep-0012-string-literals.rst", "proposals/index.rst", "release-notes/2011.1.rst", "release-notes/2012.1.rst", "release-notes/2013.1.rst", "release-notes/2013.2.rst", "release-notes/2014.1.rst", "release-notes/2019.1.rst", "release-notes/2020.1.rst", "release-notes/2022.1.rst", "release-notes/2023.1.rst", "release-notes/2024.1.rst", "release-notes/2024.2.rst", "release-notes/index.rst", "style-guide/index.rst"], "titles": ["Classes & Instantiation", "Everything is a value", "Generic Functions", "Getters & Setters are functions", "Hello, World!", "Keyword Arguments", "Limited Types", "Macros", "Multiple Return Values", "A Quick Tour of Dylan", "Beyond Java?", "The Dylan Macro System", "A Simple Function: Distance", "Conditions and Multiple Values: The Quadratic Formula", "Iteration and Sequences: Dot Product", "Procedural Dylan", "Adding Callbacks to the Application", "Using Command Tables", "Copyright", "Designing A Simple DUIM Application", "Improving The Design", "Building Applications With DUIM", "Introduction", "Adding Menus To The Application", "Preface", "Source Code For The Task List Manager", "A Tour of the DUIM Libraries", "Dylan / Cilk", "Dylan / Cocoa", "Dispatch Optimization", "Dylan Documentation Tools", "DyLint", "Frontend/LISP", "Dylan / Gtk+", "Google Summer of Code - 2012", "JavaScript Compiler Backend", "Dylan / Numerics", "Rethinking the Project Manager", "Speed", "Static Linking", "Tracing", "Google Summer of Code", "Connect with the Dylan Community", "The Bank Client", "Writing and Compiling IDL", "The Bank Server", "Setting up the Bank Example", "Quick Start Tutorial", "An IDL Binding for Dylan", "Developing Component Software with CORBA", "About Open Dylan CORBA", "Preface", "Creating CORBA Projects", "Running and Debugging CORBA Applications", "Using the Dylan IDL Compiler", "Collections Cheat Sheet", "Conditionals Cheat Sheet", "Cheat Sheets", "Iteration Cheat Sheet", "A Dylan Primer for Scheme Programmers", "Syntax Cheat Sheet", "Documentation", "Publications about Dylan", "Install Open Dylan", "Conventions in this Manual", "Copyright", "DUIM-DCs Library", "DUIM-Extended-Geometry Library", "DUIM-Frames Library", "DUIM-Gadgets Library", "DUIM-Geometry Library", "DUIM-Graphics Library", "DUIM Reference", "DUIM-Layouts Library", "DUIM-Sheets Library", "Copyright", "Cross Compilation", "Debugging with GDB or LLDB", "Using dylan-compiler interactively", "An example of dylan-environment interactive functionality", "Dylan Interactor Mode for Emacs (DIME)", "Editor Support", "Environment Variables", "Hello World", "Getting Started with the Open Dylan Command Line Tools", "Managing Dependencies", "Platform Specific Projects", "A Few More Quick Tips", "Using Source Registries", "Notes for Windows Users", "Learning More About an Application", "Dispatch Optimization Coloring in the Editor", "Creating COM Projects", "Copyright", "Debugging and Interactive Development", "Delivering Dylan Applications", "The Interactive Editor", "Fixing Bugs", "Getting Started with the Open Dylan IDE", "Programming in Open Dylan", "Preface", "Creating and Using Projects", "Quick Start", "Remote Debugging", "Jam-based Build System", "DFMC, The Dylan Flow Machine Compiler", "Notes, Warnings and Errors", "Compiler Design (Old)", "Compiler Internals (Old)", "Copyright", "Doctower", "Example documentation", "Generating Documentation", "Guidelines", "Writing Documentation", "DUIM - Dylan User Interface Manager", "Glossary", "Open Dylan Hacker\u2019s Guide", "The ACCESS-PATH library", "The DEBUGGER-MANAGER library", "Runtime Manager", "Calling Convention", "The Runtime", "Name Mangling", "Object Representation", "Special Features", "Startup", "Compiler Support for Threads", "Debugging", "Topics", "Release Check-list", "Method Dispatch", "Porting to a New Target Platform", "The PPML library", "Apple Cambridge", "Apple Dylan Eulogy", "Apple Dylan", "Apple Dylan Screenshots - Browsers", "Apple Dylan Screenshots - Dynamic", "Apple Dylan Screenshots", "Apple Dylan Screenshots - Misc", "Apple Dylan Technology Release", "Apple Dylan Today", "History", "Open Dylan", "Conditions", "Copyright", "Expressions & Variables", "An Introduction to Dylan", "Methods & Generic Functions", "Modules & Libraries", "Multiple Dispatch", "Objects", "Why Dylan?", "The c-ffi Library", "The bit-set Module", "The bit-vector Module", "The collectors Module", "The collections Library", "The plists Module", "The set Module", "The table-extensions Module", "The coloring-stream Library", "The byte-vector Module", "The common-extensions Module", "The common-dylan Library", "The machine-words Module", "The simple-format Module", "The simple-profiling Module", "The simple-random Module", "The simple-timers Module", "The transcendentals Module", "Copyright", "The DOOD library", "The finalization Module", "The dylan Library", "The dylan-primitives Module", "The threads Module", "Dylan Library Reference", "The format Module", "The format-out Module", "The io Library", "The print and pprint Modules", "The standard-io Module", "The streams Module", "Alternative Curry Syntax", "Function Definition", "Extensions to the FOR iteration construct", "Dylan Language Extensions", "Inlining adjectives for methods, constants, functions, and slots", "Language Differences", "Macro System Extensions", "Integers", "Numeric Literal Syntax", "object-with-elements", "Parser Expansions", "String Literal Syntax", "Weak tables", "LID File Format", "The network Library", "The progress-stream Library", "The sql Library", "The date Module", "The file-system Module", "The system Library", "The locators Module", "The operating-system Module", "The t-lists Library", "The Win32 API Libraries", "dylan-compiler", "Welcome to Open Dylan\u2019s documentation!", "New Documentation", "Welcome to the new website!", "Open Dylan 2011.1 released", "Development inside of Emacs using DIME", "C3 linearization", "New Strings Library", "New command-line-parser Library", "Improving Editor Support", "Open Dylan 2012.1 released", "Dylan Programming Guide", "Dylan Hack-a-thon: July 13-14, 2013", "Open Dylan 2013.1 released", "Bringing back DUIM/Gtk", "Open Dylan 2013.2 released", "A Call For Help", "Nix Packages Available", "Open Dylan 2014.1 released", "Open Dylan 2019.1 Released", "Open Dylan 2020.1 Released", "Dylan Playground Launched", "Open Dylan 2022.1 Released", "News", "DEP Purpose and Guidelines", "Define Function", "C3 superclass linearization", "New strings Library", "Subclass", "Single File Libraries", "Type-Safe Limited Collections", "Multi-line Strings", "Defaulted Element Reference Syntax", "Numeric Literal Syntax", "String Literal Syntax", "Dylan Enhancement Proposals", "Open Dylan 2011.1 Release Notes", "Open Dylan 2012.1 Release Notes", "Open Dylan 2013.1 Release Notes", "Open Dylan 2013.2 Release Notes", "Open Dylan 2014.1 Release Notes", "Open Dylan 2019.1", "Open Dylan 2020.1", "Open Dylan 2022.1", "Open Dylan 2023.1", "Open Dylan 2024.1", "Open Dylan 2024.2", "Open Dylan Release Notes", "Dylan Style Guide"], "terms": {"dylan": [0, 1, 2, 3, 4, 6, 7, 8, 10, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 26, 29, 31, 32, 34, 35, 37, 38, 41, 43, 46, 47, 49, 51, 52, 53, 55, 56, 58, 60, 64, 65, 68, 69, 73, 74, 75, 76, 81, 82, 83, 85, 86, 87, 88, 90, 91, 92, 93, 96, 97, 101, 104, 106, 107, 108, 109, 110, 112, 114, 116, 120, 121, 122, 123, 124, 125, 126, 128, 129, 130, 131, 134, 145, 146, 147, 149, 150, 151, 158, 159, 161, 164, 167, 168, 169, 170, 171, 172, 174, 179, 182, 183, 184, 185, 186, 189, 190, 191, 193, 194, 195, 196, 197, 203, 205, 206, 211, 212, 214, 215, 218, 223, 225, 226, 233, 234, 235, 236, 237, 239, 240, 241, 242, 243], "make": [0, 2, 3, 7, 9, 10, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 37, 43, 44, 45, 47, 48, 52, 53, 58, 59, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 80, 83, 87, 88, 90, 91, 92, 94, 95, 96, 97, 98, 99, 100, 101, 104, 106, 107, 108, 115, 118, 119, 121, 123, 125, 126, 127, 130, 132, 133, 135, 141, 142, 147, 149, 150, 151, 153, 154, 159, 161, 162, 164, 172, 173, 174, 176, 177, 182, 184, 192, 195, 197, 198, 199, 201, 202, 203, 205, 208, 211, 214, 223, 225, 226, 227, 229, 230, 231, 232, 233, 234, 236, 237, 238, 239, 243, 246, 248, 250, 251, 253, 257], "easi": [0, 11, 14, 17, 61, 62, 64, 67, 77, 96, 107, 117, 130, 132, 162, 168, 184, 185, 208, 211, 230, 232, 233, 246, 249, 257], "defin": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 17, 21, 22, 23, 25, 43, 44, 45, 48, 49, 50, 51, 52, 54, 56, 58, 59, 61, 62, 64, 66, 67, 68, 69, 71, 73, 74, 77, 79, 80, 83, 90, 91, 92, 94, 96, 97, 99, 101, 102, 104, 105, 108, 111, 118, 119, 121, 123, 126, 127, 130, 131, 132, 133, 139, 142, 143, 144, 147, 149, 150, 151, 152, 153, 159, 161, 164, 165, 166, 167, 173, 174, 176, 177, 179, 180, 182, 184, 185, 186, 188, 189, 191, 192, 195, 197, 198, 199, 201, 202, 203, 206, 218, 235, 237, 238, 239, 242, 243, 244, 246, 248, 249, 250, 251, 257], "you": [0, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 23, 24, 25, 26, 34, 37, 42, 43, 44, 45, 46, 47, 50, 52, 53, 54, 55, 56, 58, 59, 62, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 78, 80, 83, 84, 85, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 99, 100, 101, 102, 103, 104, 106, 107, 108, 112, 114, 115, 117, 118, 119, 128, 130, 132, 135, 137, 138, 139, 140, 141, 142, 144, 145, 149, 153, 154, 161, 162, 164, 166, 173, 174, 177, 179, 182, 184, 187, 189, 190, 191, 192, 195, 197, 198, 199, 201, 202, 203, 206, 208, 212, 213, 214, 218, 219, 221, 222, 223, 224, 225, 226, 227, 232, 233, 236, 237, 238, 239, 240, 242, 246, 247, 248, 249, 250, 251, 257], "don": [0, 8, 10, 11, 12, 13, 14, 37, 42, 55, 77, 85, 86, 87, 97, 101, 104, 107, 110, 113, 117, 119, 130, 132, 133, 141, 144, 147, 150, 152, 168, 177, 198, 232, 233, 237, 246, 249, 257], "t": [0, 2, 3, 5, 7, 8, 10, 12, 13, 14, 16, 25, 26, 37, 42, 45, 48, 55, 56, 59, 60, 63, 66, 67, 68, 69, 70, 71, 73, 74, 77, 80, 85, 86, 87, 88, 92, 97, 101, 104, 106, 107, 108, 110, 111, 113, 115, 117, 118, 119, 121, 123, 126, 127, 128, 130, 131, 132, 133, 135, 141, 142, 143, 144, 145, 147, 149, 150, 151, 152, 153, 155, 161, 162, 164, 166, 168, 174, 176, 177, 178, 179, 182, 184, 185, 192, 194, 195, 198, 199, 201, 202, 203, 205, 206, 208, 211, 218, 219, 223, 225, 232, 233, 234, 236, 237, 238, 239, 243, 246, 248, 249, 250, 252, 257], "normal": [0, 3, 11, 12, 13, 14, 20, 26, 43, 44, 47, 48, 66, 68, 69, 70, 71, 74, 77, 86, 91, 92, 94, 95, 97, 99, 101, 102, 103, 104, 106, 107, 118, 119, 121, 124, 125, 126, 127, 130, 135, 145, 147, 150, 154, 162, 164, 174, 176, 177, 183, 184, 191, 192, 197, 199, 201, 206, 208, 233, 238, 246, 250, 251, 252], "need": [0, 4, 5, 8, 10, 11, 12, 14, 16, 17, 19, 20, 22, 23, 26, 29, 30, 37, 43, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 58, 59, 62, 63, 64, 66, 67, 68, 69, 71, 73, 74, 77, 80, 83, 85, 86, 88, 90, 91, 92, 94, 95, 97, 99, 101, 102, 103, 104, 106, 107, 108, 112, 113, 116, 117, 118, 119, 121, 125, 126, 127, 128, 130, 131, 132, 133, 135, 138, 139, 142, 145, 150, 152, 153, 154, 164, 167, 168, 171, 173, 176, 177, 179, 182, 184, 185, 186, 189, 190, 191, 192, 198, 199, 201, 202, 203, 208, 213, 214, 219, 222, 224, 225, 226, 227, 231, 233, 234, 235, 236, 237, 238, 239, 240, 242, 243, 246, 247, 248, 249, 250, 251, 252, 257], "write": [0, 2, 3, 7, 10, 13, 14, 16, 20, 22, 30, 32, 37, 43, 45, 47, 49, 50, 52, 53, 60, 61, 62, 64, 66, 69, 74, 83, 88, 92, 94, 96, 97, 99, 101, 102, 106, 119, 120, 127, 133, 135, 137, 138, 139, 141, 142, 147, 149, 150, 152, 153, 154, 162, 164, 167, 173, 177, 179, 181, 182, 183, 190, 191, 192, 198, 199, 201, 203, 206, 208, 211, 213, 225, 233, 236, 239, 240, 241, 247, 249, 250, 251, 252], "constructor": [0, 48, 67, 77, 108, 126, 129, 152, 161, 206, 237, 248], "accessor": [0, 3, 10, 16, 26, 48, 86, 91, 94, 97, 102, 119, 131, 152, 154, 184, 199, 201, 208, 213, 246, 257], "function": [0, 1, 4, 5, 6, 7, 8, 9, 10, 13, 14, 18, 19, 20, 22, 23, 24, 25, 26, 29, 43, 44, 45, 47, 48, 51, 52, 55, 60, 61, 62, 65, 66, 67, 68, 69, 70, 72, 73, 74, 77, 80, 84, 86, 90, 91, 92, 93, 97, 98, 99, 102, 104, 106, 107, 108, 109, 111, 113, 115, 116, 120, 121, 122, 123, 125, 126, 127, 129, 133, 134, 137, 138, 139, 142, 143, 144, 145, 147, 150, 151, 155, 156, 157, 158, 159, 162, 163, 164, 167, 168, 169, 170, 172, 173, 174, 177, 179, 180, 181, 183, 185, 188, 190, 191, 192, 195, 198, 199, 200, 202, 203, 205, 206, 213, 218, 223, 224, 225, 226, 227, 228, 229, 233, 236, 237, 239, 240, 241, 243, 244, 246, 248, 249, 250, 251, 252, 253, 254], "which": [0, 2, 4, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 26, 29, 32, 37, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 58, 60, 61, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 79, 80, 83, 84, 86, 87, 88, 90, 91, 92, 94, 96, 97, 99, 100, 101, 102, 103, 104, 106, 107, 108, 116, 117, 118, 119, 121, 123, 124, 125, 126, 127, 130, 131, 132, 135, 137, 140, 142, 143, 145, 147, 149, 150, 151, 152, 153, 154, 155, 156, 161, 164, 165, 166, 167, 168, 169, 171, 173, 174, 176, 177, 179, 182, 183, 184, 185, 189, 190, 191, 192, 194, 197, 198, 199, 201, 202, 203, 205, 206, 208, 213, 216, 218, 219, 223, 225, 228, 233, 234, 235, 236, 237, 238, 239, 240, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 257], "save": [0, 17, 19, 20, 23, 25, 26, 47, 68, 69, 74, 91, 94, 96, 98, 99, 102, 103, 108, 119, 125, 133, 173, 198, 202, 233], "lot": [0, 10, 20, 26, 28, 30, 83, 97, 102, 107, 115, 117, 135, 212, 213, 223, 232, 238, 249, 257], "bore": 0, "type": [0, 1, 2, 9, 12, 13, 14, 16, 19, 20, 22, 25, 26, 29, 32, 43, 45, 47, 52, 58, 60, 61, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 78, 80, 87, 90, 91, 94, 96, 97, 98, 99, 102, 104, 106, 107, 108, 111, 116, 118, 119, 121, 122, 124, 125, 129, 131, 132, 135, 138, 139, 142, 149, 150, 151, 152, 153, 156, 161, 162, 163, 164, 166, 167, 168, 171, 173, 176, 177, 179, 182, 183, 186, 194, 199, 202, 204, 205, 206, 228, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 246, 247, 249, 250, 251, 252, 257], "can": [0, 1, 2, 3, 5, 6, 7, 8, 10, 12, 13, 14, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 31, 32, 34, 37, 38, 42, 43, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 58, 60, 62, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 77, 78, 79, 80, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 96, 97, 99, 100, 101, 102, 103, 104, 106, 107, 108, 111, 112, 115, 116, 117, 118, 119, 121, 124, 125, 127, 128, 130, 131, 132, 133, 135, 136, 139, 140, 142, 143, 145, 147, 149, 151, 152, 153, 154, 155, 159, 161, 162, 164, 166, 173, 176, 177, 179, 182, 184, 185, 189, 190, 191, 192, 195, 197, 198, 199, 200, 201, 202, 203, 205, 206, 208, 211, 212, 213, 214, 218, 219, 220, 221, 222, 224, 225, 226, 227, 232, 233, 236, 237, 238, 239, 240, 241, 243, 246, 247, 248, 249, 250, 251, 257], "initi": [0, 3, 10, 11, 12, 14, 19, 20, 22, 24, 25, 26, 37, 46, 48, 49, 52, 53, 66, 68, 69, 74, 77, 90, 91, 92, 94, 96, 101, 102, 103, 106, 108, 116, 118, 119, 126, 127, 131, 134, 154, 155, 161, 164, 173, 176, 177, 184, 186, 190, 191, 192, 198, 199, 203, 208, 225, 233, 234, 237, 238, 247, 248, 250, 251, 257], "slot": [0, 3, 10, 11, 16, 20, 22, 23, 25, 44, 45, 48, 68, 69, 73, 74, 77, 90, 91, 92, 94, 97, 102, 105, 107, 108, 118, 119, 121, 124, 126, 127, 131, 137, 139, 147, 150, 154, 164, 173, 174, 176, 177, 182, 184, 188, 199, 201, 203, 205, 213, 239, 248, 251, 257], "k": [0, 48, 59, 60, 66, 77, 80, 123, 184, 198, 202, 214, 237], "field": [0, 10, 14, 19, 20, 25, 44, 45, 46, 47, 50, 53, 68, 69, 90, 92, 94, 96, 97, 101, 108, 119, 125, 127, 143, 152, 154, 176, 179, 201, 233, 251], "member": [0, 3, 10, 14, 44, 48, 55, 59, 64, 66, 70, 74, 118, 119, 132, 134, 152, 154, 155, 164, 184, 190, 206, 249], "variabl": [0, 8, 9, 12, 13, 14, 16, 20, 26, 45, 59, 60, 61, 62, 63, 64, 68, 69, 74, 77, 84, 88, 95, 96, 98, 99, 102, 106, 107, 108, 115, 116, 118, 119, 121, 122, 126, 132, 145, 149, 150, 152, 153, 162, 164, 174, 182, 183, 184, 185, 186, 189, 191, 195, 199, 201, 203, 206, 208, 213, 218, 234, 241, 247, 249, 251, 257], "etc": [0, 9, 10, 14, 37, 42, 63, 83, 86, 106, 107, 108, 116, 119, 121, 131, 139, 149, 150, 162, 171, 173, 202, 205, 206, 211, 218, 233, 236, 238, 239, 247, 249, 250], "provid": [0, 3, 6, 9, 10, 11, 14, 16, 17, 18, 19, 20, 22, 23, 24, 26, 27, 28, 30, 37, 38, 43, 44, 45, 46, 47, 48, 50, 51, 52, 55, 61, 62, 64, 65, 67, 68, 69, 71, 73, 74, 75, 77, 90, 91, 92, 93, 94, 96, 97, 99, 100, 101, 102, 103, 104, 106, 108, 109, 118, 119, 123, 124, 126, 127, 132, 133, 137, 139, 142, 144, 145, 146, 147, 148, 150, 152, 153, 154, 156, 161, 162, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 176, 177, 178, 179, 180, 182, 183, 184, 185, 186, 188, 190, 192, 193, 194, 197, 198, 199, 200, 201, 202, 203, 205, 206, 208, 211, 213, 216, 219, 224, 225, 227, 228, 231, 232, 233, 235, 236, 237, 238, 239, 240, 241, 243, 244, 246, 248, 249, 250, 251, 252, 253], "default": [0, 2, 5, 11, 16, 17, 21, 23, 25, 26, 32, 37, 43, 45, 47, 48, 52, 53, 54, 55, 58, 66, 67, 68, 69, 70, 71, 73, 74, 77, 82, 89, 90, 91, 92, 94, 95, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 111, 118, 119, 130, 132, 133, 140, 149, 150, 152, 154, 155, 156, 159, 161, 162, 164, 166, 169, 173, 174, 176, 177, 182, 183, 184, 185, 187, 189, 190, 192, 198, 199, 200, 201, 202, 203, 205, 206, 208, 215, 224, 229, 232, 236, 239, 244, 246, 247, 248, 249, 250, 251, 252, 253, 257], "valu": [0, 2, 3, 5, 9, 10, 11, 12, 14, 16, 17, 20, 22, 23, 25, 26, 32, 43, 44, 45, 47, 52, 54, 55, 58, 59, 60, 61, 62, 64, 66, 67, 68, 70, 71, 72, 73, 74, 77, 78, 80, 89, 91, 92, 94, 97, 98, 99, 100, 101, 102, 104, 105, 106, 108, 111, 118, 120, 121, 122, 124, 126, 127, 130, 131, 132, 133, 143, 145, 152, 153, 154, 155, 156, 157, 159, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 173, 174, 176, 177, 179, 182, 183, 184, 185, 186, 189, 190, 191, 192, 197, 198, 199, 200, 202, 205, 206, 225, 227, 233, 234, 236, 237, 239, 241, 246, 247, 248, 249, 250, 251, 252], "express": [0, 1, 3, 4, 7, 8, 10, 11, 12, 13, 14, 16, 18, 19, 26, 32, 47, 56, 58, 59, 61, 62, 65, 68, 69, 70, 73, 74, 75, 93, 94, 96, 97, 98, 99, 101, 106, 107, 108, 109, 117, 118, 121, 133, 146, 149, 151, 152, 153, 154, 161, 164, 172, 173, 176, 177, 182, 184, 191, 192, 201, 202, 203, 208, 216, 234, 236, 237, 238, 241, 243, 246, 248, 251, 257], "spec": [0, 44, 47, 48, 49, 58, 66, 74, 92, 106, 108, 119, 131, 154, 251], "caller": [0, 11, 13, 48, 80, 118, 121, 125, 145, 149, 154, 171, 176, 184, 250, 257], "mai": [0, 1, 2, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19, 20, 24, 26, 37, 42, 43, 44, 46, 48, 50, 52, 53, 54, 55, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 79, 83, 86, 87, 88, 90, 91, 92, 94, 96, 97, 99, 101, 103, 106, 107, 108, 111, 114, 116, 117, 118, 119, 121, 124, 125, 127, 130, 132, 133, 139, 143, 145, 147, 149, 150, 151, 152, 153, 154, 155, 156, 162, 164, 166, 168, 171, 173, 174, 176, 177, 182, 184, 185, 186, 189, 190, 195, 196, 198, 199, 201, 202, 203, 206, 208, 222, 233, 234, 235, 236, 237, 238, 239, 242, 243, 246, 249, 250, 251, 252, 253, 254, 255, 257], "overrid": [0, 52, 54, 66, 69, 86, 99, 107, 108, 116, 119, 132, 154, 198, 235], "us": [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 23, 24, 28, 29, 30, 31, 32, 33, 37, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 79, 80, 82, 83, 84, 85, 86, 87, 89, 91, 92, 93, 97, 98, 99, 100, 102, 103, 106, 107, 108, 109, 110, 111, 113, 114, 115, 116, 117, 118, 119, 121, 124, 125, 126, 127, 128, 130, 131, 132, 133, 135, 137, 139, 140, 141, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 153, 155, 159, 161, 162, 164, 165, 167, 168, 171, 172, 173, 176, 177, 179, 180, 181, 182, 183, 185, 187, 188, 190, 191, 193, 194, 197, 198, 199, 200, 202, 203, 205, 206, 208, 211, 213, 217, 218, 219, 220, 221, 222, 223, 225, 226, 227, 228, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257], "keyword": [0, 2, 3, 9, 11, 12, 14, 16, 17, 19, 20, 23, 25, 26, 37, 44, 45, 47, 48, 54, 60, 62, 66, 67, 68, 69, 70, 73, 74, 86, 90, 91, 92, 97, 101, 104, 106, 108, 111, 118, 119, 121, 124, 131, 133, 152, 154, 155, 156, 159, 160, 161, 162, 164, 168, 169, 173, 176, 177, 182, 184, 186, 192, 199, 200, 201, 202, 203, 207, 208, 213, 218, 234, 236, 238, 239, 246, 247, 248, 250, 252, 253], "argument": [0, 2, 7, 9, 11, 12, 13, 14, 16, 17, 19, 20, 25, 26, 43, 44, 45, 47, 48, 52, 53, 55, 56, 60, 62, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 78, 79, 80, 87, 91, 92, 97, 101, 102, 104, 106, 107, 108, 119, 120, 122, 124, 126, 127, 130, 133, 147, 150, 151, 152, 153, 154, 155, 156, 159, 161, 164, 166, 167, 171, 174, 176, 177, 179, 180, 182, 184, 185, 186, 190, 191, 192, 198, 199, 200, 201, 202, 203, 205, 206, 208, 213, 214, 232, 234, 236, 237, 239, 241, 246, 247, 248, 249, 250, 251, 252, 253, 257], "A": [0, 10, 11, 13, 14, 16, 17, 18, 20, 21, 22, 24, 28, 30, 37, 43, 44, 45, 46, 48, 49, 50, 52, 55, 58, 60, 61, 62, 64, 65, 66, 67, 68, 70, 71, 73, 74, 75, 77, 84, 86, 91, 92, 93, 94, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 109, 111, 116, 118, 119, 123, 125, 126, 127, 131, 132, 133, 135, 137, 138, 140, 141, 143, 145, 146, 149, 150, 151, 152, 154, 156, 159, 161, 162, 164, 166, 168, 172, 173, 174, 176, 177, 179, 182, 184, 185, 186, 191, 192, 197, 198, 199, 201, 202, 203, 205, 206, 213, 215, 216, 219, 222, 228, 229, 231, 232, 233, 235, 236, 237, 238, 239, 240, 241, 244, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257], "small": [0, 11, 16, 20, 22, 26, 37, 42, 45, 47, 48, 66, 68, 69, 74, 94, 97, 99, 102, 107, 121, 135, 138, 154, 159, 176, 177, 179, 184, 192, 201, 208, 230, 232, 233, 236, 238, 257], "percentag": [0, 69], "still": [0, 10, 11, 14, 16, 19, 20, 26, 37, 53, 54, 68, 69, 71, 88, 91, 94, 97, 101, 102, 106, 107, 108, 118, 119, 127, 135, 136, 137, 138, 139, 141, 142, 143, 154, 174, 184, 201, 208, 211, 225, 233, 237, 239, 246, 248, 249, 251, 252, 257], "car": [0, 3, 59, 147, 149, 150, 151, 152], "object": [0, 3, 9, 11, 14, 15, 16, 18, 22, 25, 26, 28, 43, 44, 46, 49, 50, 51, 53, 54, 56, 60, 61, 62, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 79, 91, 92, 93, 94, 96, 97, 99, 102, 104, 106, 108, 109, 111, 116, 120, 121, 122, 125, 126, 127, 131, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 150, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 172, 176, 177, 179, 180, 182, 188, 190, 192, 197, 199, 200, 202, 203, 205, 206, 207, 208, 213, 224, 225, 227, 228, 233, 234, 235, 236, 237, 239, 246, 248, 249, 250, 251, 257], "serial": [0, 48, 147, 150, 152, 201], "number": [0, 1, 6, 9, 10, 11, 12, 13, 14, 16, 19, 20, 22, 23, 26, 37, 38, 50, 52, 53, 56, 59, 60, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 85, 94, 95, 96, 97, 99, 101, 107, 108, 111, 114, 118, 119, 121, 124, 125, 126, 129, 130, 131, 133, 139, 143, 145, 147, 149, 150, 152, 154, 155, 156, 159, 164, 165, 166, 168, 169, 171, 176, 177, 182, 184, 186, 188, 191, 198, 199, 200, 201, 202, 203, 206, 208, 225, 229, 234, 235, 236, 237, 239, 242, 243, 247, 250, 251, 252], "integ": [0, 1, 6, 8, 10, 12, 13, 14, 26, 44, 45, 56, 58, 59, 60, 66, 68, 69, 70, 71, 73, 74, 77, 91, 92, 94, 97, 106, 108, 118, 119, 122, 127, 131, 133, 147, 149, 152, 153, 155, 156, 161, 163, 164, 166, 168, 169, 170, 171, 173, 177, 179, 182, 184, 188, 190, 193, 198, 199, 200, 201, 202, 203, 205, 206, 208, 213, 228, 236, 237, 239, 242, 246, 248, 249, 250, 252, 254, 257], "uniqu": [0, 22, 26, 45, 56, 60, 68, 69, 74, 94, 96, 118, 154, 164, 173, 201, 225, 243, 251], "model": [0, 10, 16, 19, 21, 48, 50, 62, 66, 68, 71, 74, 94, 98, 100, 105, 106, 107, 120, 122, 131, 133, 144, 148, 152, 153, 154, 164, 177, 184, 192, 201, 202, 208, 224, 225, 227, 228, 232, 239, 246, 253], "name": [0, 2, 3, 5, 7, 10, 12, 13, 14, 16, 17, 18, 20, 23, 25, 26, 37, 43, 44, 45, 46, 47, 52, 53, 54, 56, 58, 64, 65, 66, 68, 69, 70, 71, 73, 74, 75, 78, 80, 82, 83, 85, 86, 88, 90, 92, 93, 94, 95, 96, 97, 99, 102, 103, 104, 106, 107, 108, 109, 116, 118, 120, 122, 126, 127, 129, 130, 131, 133, 137, 143, 145, 146, 149, 150, 152, 154, 159, 164, 166, 168, 172, 173, 174, 176, 177, 182, 184, 185, 186, 191, 192, 195, 197, 199, 201, 202, 203, 205, 206, 213, 233, 234, 238, 239, 241, 243, 246, 247, 248, 249, 250, 251, 252, 255], "string": [0, 1, 8, 10, 11, 12, 13, 14, 16, 17, 20, 25, 26, 43, 44, 45, 47, 53, 55, 56, 58, 59, 66, 68, 69, 71, 73, 74, 77, 92, 94, 101, 102, 106, 108, 118, 119, 124, 127, 133, 135, 147, 149, 152, 153, 154, 161, 162, 163, 164, 167, 168, 173, 176, 177, 180, 181, 182, 185, 188, 195, 197, 198, 199, 201, 202, 203, 205, 206, 208, 213, 218, 219, 239, 244, 246, 247, 248, 250, 251, 252, 253, 254], "requir": [0, 2, 3, 12, 14, 16, 20, 21, 22, 25, 26, 37, 42, 44, 47, 49, 52, 54, 55, 58, 60, 63, 64, 66, 67, 68, 69, 71, 73, 74, 80, 86, 91, 92, 96, 99, 101, 102, 103, 104, 106, 107, 108, 115, 117, 118, 119, 121, 124, 125, 126, 127, 130, 131, 132, 135, 149, 152, 154, 161, 164, 173, 174, 176, 182, 183, 184, 190, 191, 192, 195, 197, 198, 199, 201, 203, 208, 226, 235, 236, 237, 238, 239, 241, 243, 246, 247, 249, 250, 251, 257], "init": [0, 3, 16, 17, 19, 20, 23, 25, 26, 43, 44, 45, 47, 48, 52, 66, 67, 68, 69, 70, 73, 74, 77, 85, 91, 106, 108, 111, 118, 119, 126, 131, 133, 149, 152, 155, 156, 160, 161, 162, 164, 169, 173, 177, 184, 191, 199, 200, 201, 202, 203, 207, 239, 248, 257], "ha": [0, 2, 4, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 26, 29, 32, 37, 42, 43, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 59, 61, 62, 64, 66, 68, 69, 70, 71, 73, 74, 77, 79, 85, 87, 90, 91, 92, 94, 96, 97, 99, 100, 101, 102, 103, 104, 106, 107, 108, 112, 118, 119, 121, 125, 126, 127, 128, 131, 132, 133, 135, 136, 139, 142, 143, 144, 145, 149, 150, 152, 153, 154, 156, 161, 164, 166, 171, 173, 174, 176, 177, 182, 183, 184, 185, 186, 190, 191, 192, 197, 199, 201, 202, 203, 205, 206, 208, 211, 213, 215, 217, 219, 220, 222, 224, 225, 226, 227, 229, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257], "sunroof": 0, "boolean": [0, 10, 13, 16, 25, 26, 43, 45, 59, 60, 66, 67, 68, 69, 70, 71, 73, 74, 77, 94, 106, 108, 118, 119, 133, 147, 152, 154, 155, 161, 162, 164, 166, 170, 173, 174, 177, 182, 184, 190, 192, 199, 200, 201, 202, 203, 205, 206, 208, 236, 257], "f": [0, 8, 10, 11, 16, 17, 25, 26, 45, 48, 59, 60, 66, 67, 68, 69, 70, 71, 73, 74, 77, 80, 91, 92, 97, 106, 107, 108, 118, 119, 121, 125, 131, 133, 147, 149, 152, 154, 155, 159, 161, 164, 173, 174, 176, 177, 182, 184, 185, 190, 198, 199, 201, 202, 203, 205, 206, 236, 239, 243, 246, 257], "end": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 23, 25, 26, 43, 44, 45, 47, 48, 54, 55, 56, 58, 59, 60, 61, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 79, 80, 84, 91, 92, 94, 96, 97, 101, 104, 106, 107, 108, 116, 118, 119, 121, 125, 126, 127, 129, 131, 133, 135, 137, 140, 142, 145, 149, 150, 151, 152, 153, 154, 159, 162, 164, 168, 173, 174, 176, 177, 182, 184, 185, 186, 187, 188, 191, 192, 195, 196, 198, 199, 201, 203, 206, 208, 223, 225, 226, 227, 228, 229, 232, 233, 234, 235, 236, 237, 238, 240, 243, 247, 248, 249, 250, 251, 253, 254], "0": [0, 1, 6, 8, 10, 11, 12, 13, 14, 26, 45, 46, 48, 50, 51, 53, 56, 58, 63, 66, 67, 68, 69, 70, 71, 73, 74, 77, 79, 91, 92, 94, 97, 100, 101, 104, 107, 108, 111, 118, 119, 123, 125, 126, 130, 131, 133, 135, 147, 149, 154, 156, 163, 164, 166, 168, 171, 173, 176, 177, 182, 184, 192, 198, 199, 201, 202, 203, 206, 208, 225, 236, 239, 243, 246, 248, 249, 250, 252, 253, 254, 257], "usn": 0, "let": [0, 1, 2, 3, 7, 8, 10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 23, 25, 26, 30, 43, 45, 47, 48, 50, 58, 59, 60, 64, 68, 69, 71, 73, 74, 77, 80, 88, 91, 92, 94, 96, 97, 102, 107, 108, 118, 125, 132, 133, 138, 139, 140, 141, 145, 147, 149, 151, 152, 153, 154, 159, 161, 162, 164, 173, 174, 177, 184, 185, 199, 201, 202, 203, 205, 206, 208, 221, 225, 237, 240, 243, 246], "1": [0, 2, 4, 5, 6, 8, 9, 11, 13, 14, 16, 17, 19, 25, 26, 45, 47, 48, 50, 52, 58, 59, 60, 61, 63, 66, 67, 68, 69, 70, 71, 73, 74, 77, 79, 91, 92, 94, 97, 99, 101, 107, 108, 118, 119, 121, 123, 130, 133, 145, 149, 154, 156, 159, 164, 166, 167, 168, 171, 173, 176, 177, 182, 184, 185, 191, 192, 193, 198, 202, 206, 207, 208, 209, 214, 215, 220, 233, 234, 235, 236, 237, 238, 239, 241, 242, 243, 244, 248, 256, 257], "constant": [0, 3, 6, 10, 11, 13, 16, 20, 25, 26, 43, 45, 47, 59, 60, 66, 70, 73, 74, 92, 94, 97, 98, 99, 101, 102, 106, 108, 116, 118, 119, 121, 123, 124, 129, 151, 154, 162, 164, 166, 173, 177, 186, 188, 190, 192, 193, 199, 201, 203, 205, 206, 234, 241, 242, 243, 248, 249, 251, 255], "blue": [0, 11, 26, 66, 68, 91, 162, 164, 257], "viper": 0, "black": [0, 26, 66, 71, 91, 97, 162], "town": 0, "red": [0, 11, 26, 48, 66, 68, 69, 74, 91, 94, 140, 161, 162, 164, 250], "f40": 0, "everi": [1, 4, 10, 11, 13, 14, 16, 17, 22, 26, 32, 43, 48, 55, 66, 69, 70, 73, 90, 94, 99, 102, 103, 106, 107, 108, 133, 138, 139, 147, 149, 150, 152, 153, 154, 155, 161, 162, 164, 174, 182, 184, 189, 198, 202, 213, 225, 236, 239], "statement": [1, 3, 10, 12, 13, 14, 16, 43, 45, 47, 48, 68, 69, 73, 94, 107, 145, 147, 149, 153, 154, 159, 164, 168, 177, 184, 192, 198, 199, 203, 208, 257], "return": [1, 2, 3, 10, 12, 13, 14, 16, 20, 25, 26, 43, 44, 45, 47, 48, 50, 53, 54, 55, 58, 60, 61, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 80, 90, 91, 92, 94, 96, 97, 100, 103, 106, 107, 108, 111, 118, 119, 125, 127, 133, 147, 152, 153, 154, 155, 156, 159, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 173, 174, 176, 177, 179, 182, 184, 185, 186, 190, 192, 198, 199, 200, 201, 202, 205, 206, 213, 234, 236, 237, 239, 246, 248, 249, 250, 251, 252], "control": [1, 3, 7, 9, 10, 16, 17, 19, 22, 23, 25, 32, 47, 48, 52, 53, 58, 59, 63, 66, 68, 73, 74, 81, 82, 98, 99, 101, 102, 103, 104, 106, 107, 108, 116, 120, 121, 123, 125, 140, 144, 145, 149, 150, 152, 153, 154, 164, 168, 173, 176, 177, 180, 181, 182, 184, 197, 198, 199, 201, 202, 203, 206, 208, 218, 224, 225, 227, 228, 236, 246, 249, 250, 251], "construct": [1, 7, 10, 11, 13, 14, 15, 16, 17, 20, 22, 43, 44, 45, 50, 62, 70, 74, 104, 105, 106, 118, 119, 127, 129, 147, 149, 152, 154, 167, 177, 188, 198, 199, 201, 205, 208, 211, 238, 246, 250], "like": [1, 2, 3, 8, 9, 10, 12, 14, 16, 17, 19, 20, 24, 26, 30, 37, 43, 45, 47, 48, 55, 58, 61, 62, 66, 68, 69, 70, 71, 73, 74, 77, 80, 86, 90, 92, 94, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 111, 115, 118, 119, 121, 128, 130, 131, 132, 135, 137, 139, 143, 145, 147, 149, 150, 152, 153, 154, 162, 164, 171, 174, 177, 182, 184, 191, 192, 195, 197, 198, 199, 201, 202, 203, 205, 208, 211, 213, 221, 225, 226, 233, 236, 237, 238, 239, 247, 249, 250, 251, 252, 253, 257], "select": [1, 10, 17, 19, 20, 23, 25, 26, 45, 46, 47, 48, 52, 53, 54, 59, 62, 66, 68, 69, 73, 74, 85, 90, 91, 92, 94, 96, 97, 99, 101, 102, 103, 104, 107, 119, 124, 131, 139, 154, 159, 164, 195, 197, 201, 205, 213, 214, 237, 251], "last": [1, 10, 11, 12, 13, 14, 16, 19, 20, 44, 53, 55, 58, 67, 68, 69, 71, 74, 77, 88, 91, 92, 94, 96, 97, 99, 101, 102, 107, 118, 119, 147, 149, 157, 164, 174, 176, 177, 184, 201, 203, 205, 207, 208, 213, 219, 225, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 257], "bodi": [1, 10, 12, 13, 14, 16, 43, 44, 45, 56, 59, 64, 68, 69, 71, 73, 74, 92, 106, 107, 108, 125, 149, 154, 159, 164, 168, 177, 182, 184, 186, 191, 195, 199, 203, 208, 234, 238, 246, 251, 257], "so": [1, 2, 4, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 25, 26, 37, 44, 45, 46, 47, 48, 50, 52, 53, 55, 64, 65, 66, 67, 68, 69, 70, 71, 74, 75, 77, 80, 83, 85, 87, 88, 90, 91, 92, 93, 94, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 109, 110, 115, 117, 118, 119, 121, 124, 125, 127, 128, 130, 132, 133, 135, 142, 143, 144, 145, 146, 149, 152, 153, 154, 155, 156, 162, 164, 166, 171, 172, 174, 176, 177, 179, 182, 184, 186, 189, 191, 192, 197, 198, 199, 201, 202, 203, 208, 213, 214, 223, 225, 232, 233, 234, 235, 236, 237, 238, 239, 243, 246, 247, 248, 249, 250, 251, 255, 257], "posit": [1, 8, 17, 19, 23, 25, 26, 44, 55, 59, 64, 66, 67, 68, 69, 70, 71, 73, 74, 90, 91, 92, 94, 96, 97, 102, 108, 118, 119, 133, 135, 149, 154, 164, 166, 171, 179, 182, 184, 185, 192, 200, 201, 202, 203, 213, 236, 237, 248, 251], "ab": [1, 45, 164, 166, 192], "x": [1, 8, 11, 12, 13, 14, 17, 23, 25, 26, 28, 33, 37, 46, 48, 56, 58, 59, 60, 64, 66, 67, 68, 69, 70, 71, 73, 74, 79, 80, 88, 94, 101, 108, 118, 119, 123, 135, 136, 143, 147, 149, 152, 154, 164, 171, 176, 179, 192, 197, 208, 214, 219, 222, 223, 225, 228, 234, 236, 237, 239, 240, 243, 246, 247, 249, 250, 252, 254, 257], "els": [1, 7, 10, 11, 13, 14, 16, 17, 25, 26, 45, 56, 58, 59, 79, 92, 107, 118, 119, 124, 130, 133, 149, 152, 153, 154, 164, 173, 176, 177, 184, 197, 199, 246], "evalu": [1, 7, 10, 11, 13, 14, 19, 20, 26, 29, 43, 68, 69, 71, 74, 91, 94, 108, 119, 121, 126, 147, 153, 164, 176, 177, 184, 189, 191, 192, 199, 201, 203, 249], "thi": [1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 107, 108, 109, 110, 111, 112, 115, 116, 117, 118, 119, 121, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 159, 161, 162, 164, 165, 166, 167, 168, 171, 172, 173, 174, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 197, 198, 199, 200, 202, 203, 205, 206, 207, 208, 211, 213, 214, 215, 218, 220, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257], "either": [1, 10, 11, 16, 20, 22, 26, 43, 45, 47, 48, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 85, 90, 91, 92, 94, 96, 97, 101, 102, 103, 104, 106, 107, 108, 115, 118, 119, 125, 126, 127, 133, 145, 147, 149, 150, 152, 154, 155, 159, 165, 166, 171, 176, 177, 178, 184, 188, 190, 192, 195, 198, 199, 202, 203, 205, 206, 208, 233, 234, 239, 241, 243, 246, 250], "foo": [1, 3, 11, 48, 106, 124, 149, 154, 164, 182, 192, 195, 198, 203, 206, 208, 237, 240, 243, 246, 250, 252, 257], "bar": [1, 16, 17, 19, 21, 22, 23, 25, 48, 68, 71, 73, 74, 77, 96, 97, 103, 106, 115, 149, 164, 200, 229, 240, 251, 257], "foobar": [1, 184], "odd": [1, 13, 26, 59, 66, 69, 164, 166, 176, 192, 257], "random": [1, 55, 106, 119, 165, 188, 233], "100": [1, 8, 11, 26, 45, 48, 50, 69, 71, 73, 74, 133, 152, 154, 198], "If": [1, 2, 3, 11, 12, 13, 14, 16, 17, 20, 23, 24, 25, 26, 34, 37, 42, 43, 44, 45, 47, 48, 52, 53, 54, 56, 58, 59, 60, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 78, 80, 85, 87, 88, 90, 91, 92, 94, 96, 97, 99, 101, 102, 103, 104, 106, 107, 111, 117, 118, 119, 121, 124, 125, 126, 127, 130, 131, 132, 133, 138, 142, 144, 147, 149, 153, 154, 155, 156, 161, 162, 164, 166, 171, 173, 174, 176, 177, 179, 182, 183, 184, 189, 190, 192, 195, 197, 198, 199, 200, 201, 202, 203, 205, 206, 208, 212, 213, 219, 221, 223, 225, 232, 233, 236, 238, 239, 246, 248, 249, 250, 257], "declar": [1, 2, 3, 10, 11, 12, 13, 14, 20, 43, 44, 45, 46, 47, 48, 52, 60, 74, 92, 99, 104, 106, 107, 142, 149, 150, 151, 152, 153, 154, 164, 173, 192, 208, 237, 251, 255], "ani": [1, 2, 8, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 37, 42, 43, 44, 45, 47, 50, 52, 53, 54, 55, 58, 59, 64, 65, 66, 68, 69, 70, 71, 73, 74, 75, 77, 78, 82, 86, 90, 91, 92, 93, 94, 96, 97, 99, 101, 102, 103, 106, 107, 108, 109, 110, 117, 118, 119, 121, 123, 124, 125, 126, 127, 130, 132, 138, 139, 142, 145, 146, 147, 149, 150, 152, 154, 155, 159, 161, 162, 164, 166, 167, 168, 171, 172, 173, 174, 176, 177, 179, 182, 183, 184, 185, 186, 189, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 205, 206, 208, 225, 232, 233, 234, 235, 237, 239, 240, 242, 243, 246, 247, 248, 249, 250, 251, 252, 257], "decl": 1, "format": [1, 4, 5, 10, 11, 16, 17, 25, 26, 47, 48, 52, 56, 58, 61, 62, 68, 69, 73, 74, 77, 80, 83, 86, 90, 92, 94, 95, 101, 104, 106, 108, 112, 115, 118, 119, 129, 130, 142, 149, 154, 162, 164, 165, 168, 173, 178, 181, 182, 183, 184, 185, 188, 191, 192, 196, 199, 201, 204, 205, 206, 208, 211, 220, 229, 232, 234, 236, 237, 238, 243, 246, 247, 248, 249, 250, 251, 252, 254, 257], "out": [1, 2, 4, 5, 10, 11, 12, 13, 16, 18, 19, 22, 26, 44, 45, 47, 50, 53, 61, 65, 66, 67, 68, 69, 71, 73, 74, 75, 77, 78, 80, 81, 86, 89, 90, 91, 92, 93, 96, 97, 99, 101, 102, 104, 106, 107, 108, 109, 111, 116, 117, 118, 119, 128, 131, 133, 134, 135, 138, 140, 142, 143, 144, 145, 146, 147, 149, 154, 164, 167, 170, 172, 174, 176, 177, 181, 183, 184, 185, 191, 197, 199, 201, 204, 208, 212, 213, 219, 223, 225, 230, 232, 233, 237, 238, 239, 247, 248, 249, 254, 257], "an": [1, 2, 6, 8, 11, 12, 13, 14, 15, 17, 18, 19, 20, 22, 23, 24, 25, 26, 30, 37, 42, 43, 44, 45, 46, 49, 50, 51, 52, 53, 54, 55, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 77, 78, 80, 84, 85, 86, 87, 88, 89, 91, 93, 95, 96, 97, 98, 99, 100, 101, 104, 106, 107, 108, 109, 111, 114, 116, 118, 119, 121, 124, 125, 126, 127, 128, 130, 131, 132, 133, 135, 136, 137, 138, 139, 141, 142, 143, 144, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 156, 157, 159, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 172, 173, 174, 176, 179, 180, 182, 183, 184, 185, 186, 188, 190, 191, 192, 194, 195, 197, 198, 199, 200, 201, 202, 203, 205, 206, 207, 208, 213, 219, 222, 224, 225, 227, 228, 233, 234, 236, 237, 238, 239, 240, 241, 243, 244, 246, 247, 249, 250, 251, 252, 254, 257], "size": [1, 2, 5, 6, 10, 11, 14, 20, 22, 26, 48, 55, 58, 59, 60, 66, 67, 68, 69, 70, 71, 73, 74, 77, 91, 92, 94, 97, 111, 118, 119, 121, 122, 125, 127, 131, 132, 133, 135, 149, 153, 155, 156, 160, 161, 164, 166, 168, 173, 176, 184, 192, 201, 203, 213, 236, 239, 246, 248, 249, 257], "descript": [1, 12, 14, 16, 21, 22, 25, 26, 37, 43, 44, 45, 48, 52, 55, 60, 64, 68, 69, 71, 73, 74, 78, 79, 90, 92, 94, 99, 101, 106, 118, 119, 127, 130, 154, 161, 164, 166, 173, 174, 177, 179, 192, 199, 202, 203, 233, 237, 248], "42": [1, 60, 77, 107, 149, 154], "mean": [1, 9, 10, 11, 12, 13, 14, 16, 17, 20, 22, 23, 26, 34, 37, 43, 44, 45, 48, 64, 66, 68, 69, 71, 74, 77, 80, 90, 94, 97, 99, 101, 102, 115, 118, 119, 127, 130, 140, 147, 149, 151, 152, 154, 162, 164, 176, 177, 182, 184, 192, 198, 201, 202, 208, 233, 236, 237, 243, 248, 249, 251, 257], "method": [2, 3, 5, 11, 12, 13, 14, 20, 22, 23, 25, 26, 29, 37, 43, 44, 47, 48, 50, 52, 53, 58, 59, 60, 61, 62, 64, 66, 68, 69, 70, 71, 73, 74, 77, 79, 86, 90, 91, 92, 94, 95, 96, 97, 99, 101, 102, 106, 108, 111, 118, 119, 122, 123, 124, 127, 128, 129, 133, 137, 138, 142, 143, 145, 147, 150, 151, 152, 153, 154, 159, 161, 163, 164, 166, 168, 171, 173, 176, 177, 179, 180, 182, 184, 185, 186, 188, 191, 192, 195, 198, 199, 202, 203, 205, 206, 214, 234, 235, 236, 237, 239, 243, 246, 247, 248, 249, 250, 251, 252], "aren": [2, 37, 86, 107, 130, 131, 135, 223, 236, 250, 252, 257], "ti": [2, 191, 237], "directli": [2, 9, 10, 12, 14, 16, 24, 26, 44, 47, 48, 52, 55, 58, 68, 69, 71, 73, 74, 80, 85, 86, 87, 90, 91, 94, 97, 99, 100, 104, 106, 107, 119, 124, 127, 128, 133, 140, 147, 152, 154, 162, 167, 168, 171, 176, 177, 179, 182, 184, 191, 198, 199, 203, 208, 228, 229, 231, 233, 238, 239, 249, 250], "particular": [2, 10, 11, 13, 16, 18, 20, 22, 24, 26, 37, 43, 45, 48, 55, 65, 66, 67, 68, 69, 70, 74, 75, 80, 90, 91, 93, 94, 99, 101, 104, 108, 109, 116, 118, 130, 131, 132, 139, 146, 147, 149, 151, 154, 164, 172, 176, 182, 184, 192, 198, 199, 201, 225, 233, 237, 238, 239, 242, 246], "class": [2, 3, 6, 7, 9, 10, 11, 16, 17, 21, 22, 23, 25, 30, 43, 44, 47, 48, 52, 55, 60, 62, 64, 71, 72, 77, 80, 90, 91, 92, 94, 96, 97, 99, 102, 106, 107, 108, 111, 116, 119, 120, 124, 126, 127, 131, 132, 133, 137, 139, 140, 143, 147, 149, 150, 151, 153, 155, 156, 157, 159, 160, 161, 162, 164, 166, 169, 170, 173, 176, 181, 182, 189, 190, 194, 200, 202, 203, 205, 207, 213, 214, 225, 232, 235, 237, 239, 242, 246, 248, 249, 250], "thei": [2, 5, 7, 10, 11, 13, 14, 16, 20, 26, 37, 45, 47, 48, 50, 52, 53, 60, 62, 66, 67, 68, 69, 70, 71, 73, 74, 77, 80, 85, 86, 88, 89, 90, 92, 94, 96, 97, 99, 101, 102, 104, 106, 107, 108, 111, 113, 118, 119, 121, 124, 125, 126, 127, 130, 131, 133, 135, 136, 137, 139, 141, 142, 143, 145, 147, 149, 150, 151, 152, 153, 154, 161, 162, 164, 166, 171, 173, 174, 176, 177, 182, 184, 185, 186, 188, 192, 194, 198, 199, 201, 202, 203, 206, 208, 220, 226, 233, 234, 236, 237, 238, 239, 243, 248, 249, 251, 254, 257], "ar": [2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 29, 32, 34, 37, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 99, 101, 102, 103, 104, 105, 107, 108, 109, 111, 114, 115, 117, 118, 119, 121, 123, 124, 125, 126, 127, 130, 131, 132, 133, 135, 137, 139, 140, 141, 142, 143, 145, 146, 147, 149, 150, 151, 152, 153, 154, 155, 156, 159, 161, 162, 164, 165, 166, 167, 171, 172, 173, 174, 176, 177, 179, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 205, 206, 208, 209, 213, 214, 217, 218, 219, 221, 223, 225, 226, 227, 228, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257], "mani": [2, 3, 7, 9, 10, 11, 12, 13, 14, 16, 20, 22, 24, 26, 37, 47, 48, 51, 55, 58, 62, 64, 68, 69, 71, 73, 74, 80, 96, 99, 101, 106, 107, 116, 117, 119, 121, 124, 125, 127, 135, 140, 142, 145, 149, 150, 152, 153, 154, 174, 176, 177, 182, 184, 191, 197, 200, 208, 213, 219, 221, 225, 226, 227, 228, 232, 233, 234, 243, 246, 249, 250, 251, 252], "other": [2, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 26, 29, 30, 37, 42, 43, 44, 45, 47, 48, 50, 51, 53, 55, 56, 58, 59, 60, 61, 62, 65, 66, 68, 69, 70, 71, 73, 74, 75, 77, 82, 85, 88, 90, 91, 92, 93, 94, 95, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 109, 110, 117, 118, 119, 123, 124, 126, 127, 130, 131, 135, 137, 139, 140, 145, 146, 147, 149, 150, 152, 153, 154, 164, 166, 172, 174, 176, 177, 182, 183, 184, 186, 187, 188, 190, 192, 194, 198, 199, 201, 202, 203, 205, 206, 213, 221, 225, 226, 227, 228, 229, 230, 232, 233, 234, 236, 237, 238, 239, 243, 247, 249, 250, 251, 252, 253, 254, 255, 257], "languag": [2, 3, 10, 11, 12, 13, 14, 15, 20, 22, 32, 37, 43, 44, 45, 47, 48, 50, 51, 52, 54, 59, 61, 62, 69, 71, 81, 90, 91, 94, 97, 99, 101, 104, 105, 107, 108, 114, 116, 118, 119, 121, 122, 123, 124, 128, 135, 136, 137, 141, 142, 143, 144, 147, 148, 149, 152, 154, 161, 164, 165, 166, 174, 177, 178, 185, 186, 189, 192, 197, 198, 208, 220, 224, 225, 227, 228, 233, 234, 236, 237, 238, 240, 241, 243, 244, 249, 255], "instead": [2, 7, 10, 11, 14, 16, 25, 26, 42, 43, 44, 45, 47, 48, 52, 53, 62, 63, 64, 67, 68, 69, 71, 73, 74, 77, 83, 89, 92, 94, 97, 99, 101, 104, 106, 107, 108, 119, 121, 123, 127, 140, 143, 145, 147, 149, 152, 154, 164, 166, 173, 174, 176, 177, 179, 184, 191, 192, 199, 201, 202, 203, 205, 206, 208, 213, 236, 238, 239, 243, 246, 248, 249, 250, 251, 253, 257], "belong": [2, 11, 16, 26, 71, 91, 94, 118, 124, 135, 147, 150, 173, 177, 206], "gf": [2, 69, 71, 77, 108, 119, 131], "actual": [2, 5, 10, 11, 13, 16, 20, 23, 26, 43, 44, 45, 47, 52, 62, 68, 69, 71, 73, 74, 88, 92, 96, 97, 101, 104, 106, 107, 108, 118, 119, 124, 130, 132, 137, 147, 149, 151, 152, 154, 162, 174, 177, 179, 182, 184, 192, 199, 201, 202, 203, 208, 233, 237, 246, 249, 257], "get": [2, 9, 10, 11, 12, 16, 20, 24, 37, 43, 44, 45, 47, 48, 50, 52, 53, 61, 62, 63, 69, 73, 74, 77, 78, 85, 90, 91, 92, 94, 96, 99, 100, 101, 102, 106, 107, 108, 111, 117, 118, 119, 130, 132, 137, 142, 147, 152, 153, 154, 159, 162, 164, 174, 176, 177, 184, 192, 195, 199, 201, 209, 213, 214, 219, 221, 222, 223, 224, 225, 227, 232, 233, 237, 238, 240, 243, 246, 247, 249, 251, 257], "call": [2, 4, 5, 7, 8, 10, 11, 12, 13, 14, 16, 17, 19, 20, 23, 26, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 58, 59, 60, 62, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 80, 84, 89, 90, 91, 92, 97, 99, 101, 102, 104, 106, 107, 108, 111, 119, 120, 122, 123, 124, 125, 126, 127, 131, 133, 135, 137, 143, 145, 149, 150, 151, 152, 153, 159, 161, 162, 164, 168, 171, 173, 174, 176, 177, 179, 180, 182, 184, 185, 186, 188, 192, 197, 198, 199, 201, 202, 203, 205, 206, 208, 213, 214, 219, 234, 237, 239, 241, 243, 246, 247, 248, 249, 250, 251, 252, 253, 255], "i": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 40, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 93, 94, 95, 97, 99, 100, 101, 102, 103, 104, 106, 107, 108, 109, 110, 111, 113, 114, 115, 116, 117, 118, 119, 120, 121, 123, 124, 125, 126, 127, 128, 130, 131, 132, 133, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 159, 161, 162, 164, 165, 166, 168, 170, 171, 172, 173, 176, 177, 179, 180, 182, 183, 184, 185, 186, 188, 189, 190, 191, 192, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 205, 206, 207, 208, 209, 211, 213, 214, 215, 216, 218, 219, 220, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 246, 249, 250, 251, 252, 253, 254, 255, 257], "decid": [2, 26, 68, 71, 74, 94, 101, 118, 142, 143, 173, 198, 208, 213, 251, 257], "all": [2, 3, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 32, 37, 43, 44, 45, 47, 48, 52, 53, 55, 58, 59, 60, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 77, 78, 82, 83, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 109, 111, 113, 115, 117, 118, 119, 121, 123, 124, 125, 126, 127, 131, 133, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 152, 153, 154, 155, 159, 161, 162, 164, 166, 168, 170, 171, 172, 173, 174, 176, 177, 179, 180, 182, 183, 184, 188, 190, 192, 195, 197, 198, 199, 201, 202, 203, 205, 206, 208, 211, 213, 218, 225, 229, 231, 232, 233, 236, 237, 238, 239, 243, 246, 248, 249, 250, 251, 252, 253, 257], "pass": [2, 5, 10, 11, 13, 14, 16, 19, 20, 26, 43, 44, 45, 47, 48, 50, 52, 55, 58, 67, 68, 69, 70, 71, 73, 74, 77, 88, 91, 92, 94, 97, 101, 104, 105, 106, 108, 118, 119, 122, 125, 126, 127, 132, 137, 149, 151, 152, 154, 161, 162, 164, 168, 171, 173, 174, 176, 177, 179, 182, 184, 191, 195, 198, 199, 201, 202, 203, 206, 208, 213, 227, 234, 246, 248, 249, 250, 251], "consid": [2, 3, 10, 11, 12, 16, 17, 23, 26, 45, 55, 62, 68, 69, 70, 71, 77, 86, 92, 94, 99, 101, 104, 107, 108, 111, 118, 119, 121, 131, 135, 137, 147, 153, 154, 156, 161, 173, 177, 184, 191, 197, 198, 208, 222, 233, 235, 236, 237, 239, 242, 246, 249, 251, 257], "built": [2, 6, 7, 10, 13, 14, 22, 26, 37, 44, 45, 47, 48, 52, 62, 69, 74, 77, 82, 83, 90, 91, 94, 99, 101, 102, 107, 108, 115, 119, 124, 131, 132, 135, 136, 149, 150, 161, 176, 177, 188, 198, 201, 211, 213, 218, 219, 220, 225, 236, 246, 248], "add": [2, 5, 10, 11, 12, 14, 16, 17, 19, 20, 22, 23, 24, 25, 26, 37, 44, 46, 47, 48, 52, 54, 55, 60, 63, 66, 68, 69, 73, 74, 77, 80, 85, 87, 88, 91, 92, 94, 96, 97, 99, 101, 102, 104, 106, 107, 111, 115, 117, 119, 124, 127, 128, 131, 132, 133, 135, 147, 150, 151, 152, 154, 155, 157, 161, 164, 173, 174, 176, 182, 184, 186, 191, 198, 202, 220, 225, 226, 233, 234, 237, 238, 239, 241, 246, 248, 249, 250, 253, 257], "open": [2, 4, 6, 9, 11, 17, 19, 20, 22, 23, 24, 25, 26, 35, 37, 43, 44, 46, 47, 48, 49, 51, 52, 53, 54, 58, 62, 68, 69, 70, 71, 73, 74, 76, 78, 79, 80, 82, 83, 85, 88, 89, 90, 91, 92, 94, 95, 96, 97, 100, 103, 104, 106, 107, 108, 110, 111, 114, 115, 116, 118, 119, 120, 126, 128, 130, 131, 132, 139, 145, 150, 153, 154, 156, 157, 160, 161, 162, 163, 164, 165, 168, 171, 173, 174, 177, 178, 182, 184, 185, 188, 189, 190, 192, 194, 195, 197, 199, 201, 203, 205, 206, 207, 208, 209, 211, 212, 214, 215, 218, 225, 226, 232, 233, 236, 238, 239, 241, 242, 243, 257], "seq": [2, 67, 71, 118, 149, 184, 236, 257], "sequenc": [2, 8, 10, 11, 13, 16, 20, 25, 26, 43, 45, 55, 58, 59, 60, 62, 66, 67, 68, 69, 70, 71, 73, 74, 77, 91, 94, 97, 106, 108, 111, 118, 119, 123, 131, 133, 143, 149, 155, 157, 159, 161, 163, 164, 168, 169, 173, 177, 182, 187, 192, 196, 199, 201, 203, 205, 206, 213, 236, 239, 240, 243, 251, 257], "new": [2, 4, 6, 7, 10, 11, 14, 17, 19, 21, 22, 23, 24, 25, 35, 37, 43, 44, 45, 46, 47, 48, 50, 52, 55, 58, 60, 61, 62, 64, 66, 68, 69, 70, 71, 73, 74, 80, 83, 84, 85, 88, 90, 92, 94, 95, 96, 97, 98, 100, 102, 103, 104, 105, 107, 108, 111, 116, 117, 118, 119, 123, 125, 126, 127, 129, 130, 131, 142, 143, 144, 145, 147, 149, 150, 152, 153, 154, 155, 156, 157, 161, 162, 164, 173, 174, 176, 177, 179, 182, 183, 184, 186, 190, 191, 192, 199, 201, 202, 205, 206, 213, 215, 219, 220, 221, 222, 223, 224, 227, 228, 229, 231, 233, 234, 237, 238, 239, 241, 242, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 255, 257], "element": [2, 5, 6, 10, 11, 14, 16, 20, 22, 23, 25, 26, 45, 48, 51, 55, 58, 59, 60, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 90, 91, 96, 97, 104, 106, 108, 111, 116, 119, 123, 128, 131, 133, 145, 149, 154, 155, 156, 161, 164, 173, 176, 177, 182, 184, 187, 188, 199, 201, 203, 205, 213, 225, 232, 236, 244, 246, 247, 257], "sai": [2, 4, 7, 10, 11, 12, 13, 14, 26, 47, 48, 59, 64, 73, 83, 88, 90, 94, 96, 97, 101, 107, 108, 118, 119, 121, 135, 149, 164, 174, 184, 186, 201, 208, 225, 234], "must": [2, 5, 10, 11, 12, 13, 14, 16, 17, 20, 26, 43, 44, 45, 46, 47, 48, 52, 53, 54, 56, 63, 64, 66, 68, 69, 70, 71, 73, 74, 83, 86, 90, 92, 94, 96, 97, 99, 101, 102, 103, 107, 108, 111, 115, 118, 119, 121, 124, 125, 127, 130, 147, 149, 150, 152, 154, 155, 161, 164, 167, 170, 171, 172, 173, 174, 176, 177, 179, 182, 184, 190, 191, 192, 195, 198, 199, 201, 202, 203, 206, 208, 233, 237, 238, 243, 249, 250, 251], "accept": [2, 10, 11, 13, 14, 26, 37, 45, 48, 66, 69, 74, 92, 94, 101, 111, 119, 121, 124, 149, 154, 164, 166, 171, 176, 177, 182, 184, 186, 192, 199, 201, 202, 203, 208, 215, 233, 234, 235, 236, 237, 248, 250, 251, 257], "two": [2, 3, 10, 11, 12, 13, 14, 16, 19, 20, 22, 23, 26, 43, 45, 47, 48, 51, 52, 53, 54, 55, 58, 59, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 88, 90, 91, 92, 94, 95, 96, 97, 99, 101, 102, 104, 107, 108, 111, 117, 118, 119, 121, 123, 124, 126, 127, 130, 133, 135, 145, 147, 149, 150, 152, 154, 156, 161, 162, 164, 166, 171, 176, 177, 179, 180, 182, 184, 185, 187, 190, 191, 192, 193, 198, 199, 201, 202, 203, 206, 208, 233, 234, 235, 236, 237, 239, 240, 241, 242, 243, 246, 248, 250, 251, 257], "The": [2, 3, 4, 5, 6, 7, 9, 12, 14, 17, 18, 19, 21, 24, 26, 27, 28, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 42, 44, 46, 47, 49, 50, 51, 53, 54, 55, 60, 61, 62, 63, 64, 65, 71, 72, 75, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 89, 91, 93, 95, 97, 98, 103, 104, 107, 108, 109, 111, 112, 114, 115, 116, 117, 120, 123, 124, 125, 126, 128, 129, 130, 131, 132, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 149, 150, 151, 152, 153, 172, 178, 185, 186, 187, 188, 189, 190, 191, 195, 197, 198, 209, 213, 216, 217, 218, 219, 220, 225, 226, 227, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 244, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257], "first": [2, 5, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 20, 23, 24, 25, 26, 37, 43, 44, 45, 46, 47, 48, 50, 52, 55, 56, 58, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 80, 83, 88, 90, 91, 92, 94, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 111, 119, 120, 121, 124, 125, 126, 127, 132, 135, 136, 143, 145, 147, 149, 151, 152, 154, 157, 164, 168, 171, 173, 174, 176, 177, 182, 184, 191, 192, 198, 199, 201, 202, 207, 208, 213, 221, 223, 225, 227, 229, 232, 233, 234, 235, 236, 238, 239, 243, 246, 257], "second": [2, 8, 10, 11, 13, 14, 16, 17, 20, 23, 25, 26, 37, 43, 44, 45, 47, 48, 64, 66, 68, 69, 70, 71, 73, 74, 77, 85, 88, 90, 91, 94, 97, 99, 101, 102, 104, 107, 108, 111, 118, 119, 127, 133, 135, 147, 149, 152, 154, 161, 164, 168, 170, 171, 173, 176, 177, 184, 190, 192, 198, 201, 202, 234, 239, 242, 257], "anyth": [2, 11, 20, 48, 66, 68, 74, 88, 97, 99, 102, 103, 107, 112, 130, 141, 144, 145, 147, 149, 154, 161, 176, 184, 195, 199, 236], "sinc": [2, 10, 11, 12, 13, 14, 16, 19, 20, 22, 26, 29, 43, 45, 47, 48, 53, 61, 62, 64, 68, 69, 70, 71, 73, 74, 77, 86, 90, 92, 94, 97, 99, 101, 107, 108, 118, 119, 124, 127, 128, 131, 135, 137, 139, 145, 147, 149, 151, 153, 154, 164, 170, 171, 174, 177, 184, 185, 186, 198, 201, 202, 206, 208, 213, 220, 232, 236, 239, 241, 248, 251, 252, 257], "wa": [2, 5, 10, 13, 14, 16, 17, 19, 26, 32, 43, 45, 47, 48, 50, 58, 59, 61, 62, 64, 66, 68, 69, 73, 74, 77, 85, 90, 91, 92, 94, 96, 97, 99, 101, 102, 104, 106, 107, 108, 116, 118, 119, 121, 126, 131, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 154, 164, 170, 173, 174, 176, 177, 182, 183, 184, 185, 186, 191, 199, 201, 202, 203, 205, 206, 211, 213, 219, 220, 222, 223, 225, 226, 229, 233, 234, 235, 237, 238, 239, 242, 246, 247, 248, 249, 250, 251, 252, 253, 255], "singl": [2, 6, 8, 9, 12, 13, 14, 16, 20, 23, 26, 37, 43, 44, 45, 46, 47, 48, 50, 52, 55, 58, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 86, 88, 89, 90, 91, 95, 97, 99, 104, 107, 108, 118, 119, 121, 123, 125, 133, 137, 139, 147, 149, 150, 152, 154, 159, 164, 171, 174, 176, 179, 182, 183, 184, 196, 198, 199, 201, 202, 203, 205, 208, 231, 233, 235, 236, 239, 240, 242, 243, 244, 246, 247, 248, 250, 252, 257], "also": [2, 7, 10, 11, 12, 13, 14, 15, 16, 17, 20, 22, 23, 24, 26, 30, 32, 35, 37, 42, 43, 44, 45, 46, 47, 48, 52, 55, 59, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 78, 79, 87, 90, 91, 92, 94, 95, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 111, 115, 117, 118, 119, 123, 124, 125, 126, 128, 131, 132, 135, 138, 139, 141, 143, 145, 147, 149, 150, 151, 152, 153, 154, 155, 158, 159, 161, 163, 164, 165, 166, 170, 171, 174, 176, 177, 178, 180, 182, 184, 187, 188, 190, 191, 192, 193, 194, 197, 198, 199, 201, 202, 203, 205, 206, 208, 211, 213, 214, 218, 219, 220, 222, 223, 225, 229, 233, 234, 235, 236, 237, 238, 239, 242, 243, 246, 248, 249, 250, 251, 257], "option": [2, 5, 12, 13, 16, 17, 20, 26, 45, 47, 48, 49, 53, 59, 63, 64, 68, 69, 71, 73, 74, 77, 78, 79, 87, 90, 92, 97, 98, 99, 102, 103, 104, 106, 107, 111, 117, 118, 121, 124, 127, 133, 140, 145, 149, 152, 161, 176, 177, 184, 186, 191, 197, 199, 201, 202, 206, 208, 209, 228, 231, 233, 238, 248, 250, 251, 252, 253, 257], "adject": [2, 106, 108, 154, 173, 177, 186, 188, 191, 234], "tell": [2, 10, 11, 20, 43, 46, 69, 74, 77, 80, 86, 92, 97, 102, 116, 119, 130, 164, 177, 197, 257], "compil": [2, 6, 9, 10, 11, 12, 14, 19, 20, 22, 24, 26, 27, 29, 31, 34, 37, 39, 41, 43, 45, 46, 47, 48, 49, 51, 53, 60, 61, 62, 63, 69, 80, 82, 83, 84, 85, 87, 88, 92, 95, 96, 98, 100, 102, 106, 112, 116, 117, 119, 121, 122, 123, 124, 125, 126, 129, 130, 133, 135, 138, 139, 141, 142, 143, 147, 148, 149, 150, 152, 153, 154, 164, 177, 185, 189, 191, 200, 208, 210, 211, 214, 215, 219, 224, 225, 226, 227, 228, 229, 232, 234, 237, 238, 240, 242, 243, 248, 257], "librari": [2, 4, 9, 10, 16, 19, 20, 21, 24, 27, 28, 30, 37, 42, 43, 46, 47, 49, 51, 52, 53, 54, 56, 58, 61, 62, 64, 72, 77, 78, 80, 82, 83, 85, 86, 88, 91, 94, 96, 97, 98, 102, 104, 105, 107, 108, 111, 112, 114, 116, 117, 120, 123, 126, 127, 129, 130, 142, 143, 144, 152, 153, 161, 164, 166, 167, 171, 174, 179, 180, 182, 184, 188, 189, 194, 202, 203, 219, 224, 227, 229, 231, 233, 234, 237, 239, 242, 243, 244, 249, 257], "try": [2, 10, 11, 16, 20, 26, 27, 47, 48, 68, 69, 77, 80, 89, 94, 97, 99, 102, 103, 106, 107, 113, 142, 144, 145, 164, 177, 184, 199, 203, 230, 237, 246, 247, 257], "break": [2, 10, 26, 68, 94, 101, 118, 119, 133, 145, 173, 182, 185, 218, 235, 236, 257], "abov": [2, 6, 10, 11, 14, 16, 17, 18, 19, 20, 23, 26, 34, 37, 45, 46, 47, 48, 50, 53, 56, 65, 68, 69, 71, 73, 75, 77, 80, 83, 90, 92, 93, 94, 96, 97, 103, 107, 108, 109, 118, 119, 121, 125, 130, 132, 145, 146, 149, 150, 151, 152, 154, 172, 176, 177, 182, 184, 192, 199, 203, 236, 237, 238, 239, 243, 252, 253], "rule": [2, 5, 12, 14, 43, 44, 45, 47, 48, 66, 70, 71, 73, 77, 94, 97, 99, 106, 108, 123, 125, 135, 149, 154, 164, 171, 174, 177, 191, 192, 201, 208, 237, 241, 254, 255, 257], "ll": [2, 12, 13, 14, 42, 77, 80, 106, 107, 115, 117, 123, 130, 131, 139, 142, 222, 232, 257], "warn": [2, 10, 16, 20, 31, 54, 74, 80, 90, 96, 98, 102, 105, 108, 119, 139, 142, 145, 164, 173, 203, 213, 214, 215, 228, 232, 235, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257], "from": [2, 3, 6, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 31, 32, 33, 37, 38, 43, 44, 45, 46, 48, 50, 52, 53, 54, 55, 56, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 77, 79, 80, 83, 85, 86, 88, 89, 91, 92, 93, 94, 95, 96, 97, 102, 103, 104, 106, 107, 108, 109, 110, 111, 112, 114, 115, 116, 117, 118, 119, 121, 124, 125, 126, 127, 128, 130, 131, 132, 135, 136, 137, 139, 140, 141, 142, 143, 146, 147, 149, 150, 151, 152, 153, 154, 155, 156, 158, 159, 161, 163, 164, 165, 167, 168, 169, 171, 172, 173, 174, 176, 177, 179, 180, 181, 182, 183, 185, 188, 189, 190, 191, 197, 198, 199, 203, 204, 205, 206, 213, 215, 219, 220, 221, 222, 223, 224, 225, 226, 227, 232, 233, 234, 235, 236, 238, 239, 243, 246, 247, 248, 249, 250, 251, 252, 253], "note": [2, 3, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 25, 26, 43, 44, 45, 52, 53, 54, 59, 61, 63, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 77, 78, 80, 82, 83, 84, 87, 88, 90, 91, 92, 93, 94, 96, 97, 101, 105, 108, 109, 117, 118, 119, 121, 124, 130, 131, 133, 137, 139, 140, 146, 147, 149, 150, 164, 166, 171, 172, 174, 177, 182, 184, 190, 192, 195, 198, 199, 202, 203, 205, 206, 219, 222, 223, 224, 227, 228, 229, 231, 232, 234, 236, 237, 238, 240, 241, 243, 250, 251, 257], "form": [2, 7, 10, 11, 13, 14, 26, 27, 43, 44, 45, 47, 48, 51, 54, 61, 64, 68, 69, 71, 73, 74, 77, 90, 94, 96, 97, 101, 104, 106, 107, 108, 111, 116, 119, 123, 125, 126, 133, 147, 150, 154, 164, 173, 174, 176, 179, 182, 184, 191, 195, 198, 199, 201, 202, 203, 205, 208, 211, 233, 237, 238, 239, 252, 257], "doesn": [2, 10, 11, 12, 14, 37, 42, 77, 80, 86, 106, 107, 110, 119, 127, 130, 151, 162, 179, 208, 225, 236, 243, 246, 248], "contain": [2, 6, 10, 11, 12, 13, 14, 16, 17, 20, 22, 23, 25, 26, 37, 43, 44, 45, 46, 47, 48, 51, 52, 53, 54, 55, 59, 60, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 83, 86, 88, 90, 91, 92, 94, 95, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 116, 117, 118, 119, 121, 124, 125, 126, 127, 131, 133, 139, 145, 147, 149, 150, 152, 153, 154, 155, 159, 161, 163, 164, 165, 166, 171, 174, 176, 177, 179, 180, 182, 183, 184, 188, 192, 195, 198, 199, 201, 202, 203, 206, 208, 213, 229, 231, 233, 236, 238, 243, 249, 250, 251, 252], "code": [2, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 31, 33, 36, 37, 39, 42, 43, 44, 45, 48, 49, 50, 52, 53, 56, 61, 62, 63, 68, 69, 71, 72, 73, 74, 80, 83, 84, 88, 90, 92, 96, 97, 99, 100, 101, 102, 104, 106, 107, 108, 114, 115, 116, 117, 120, 121, 122, 123, 124, 125, 126, 128, 131, 132, 135, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 149, 150, 151, 152, 153, 154, 161, 162, 164, 168, 173, 174, 176, 177, 182, 184, 185, 186, 190, 192, 196, 198, 199, 203, 206, 208, 211, 214, 216, 219, 220, 224, 227, 228, 229, 233, 235, 236, 237, 238, 239, 240, 241, 242, 243, 247, 248, 249, 250, 251, 252, 255, 257], "mere": [2, 10, 43, 45, 154, 155, 197, 201, 239], "api": [2, 3, 22, 28, 41, 50, 64, 86, 92, 101, 105, 108, 116, 118, 119, 127, 178, 199, 201, 206, 214, 216, 219, 225, 233, 246, 249, 257], "same": [2, 3, 10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 25, 26, 37, 44, 45, 46, 47, 48, 50, 52, 53, 54, 58, 60, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 86, 88, 90, 92, 94, 96, 97, 99, 101, 102, 103, 107, 117, 118, 119, 121, 123, 124, 125, 127, 133, 143, 145, 147, 149, 150, 152, 153, 154, 155, 156, 159, 161, 162, 164, 166, 168, 171, 173, 174, 176, 177, 179, 182, 183, 184, 185, 186, 189, 190, 191, 192, 197, 198, 199, 201, 202, 203, 205, 206, 208, 213, 214, 218, 226, 234, 235, 236, 237, 238, 239, 241, 243, 246, 249, 250, 251, 257], "conform": [2, 14, 45, 48, 51, 106, 172, 176, 192, 202, 208, 234, 237, 243], "we": [2, 9, 10, 11, 12, 13, 14, 29, 30, 37, 43, 44, 45, 46, 47, 48, 50, 52, 53, 58, 61, 62, 64, 66, 71, 77, 78, 80, 85, 86, 90, 91, 92, 94, 96, 97, 99, 100, 101, 102, 106, 107, 108, 110, 112, 114, 115, 117, 118, 119, 121, 123, 130, 131, 132, 133, 135, 140, 143, 144, 145, 147, 149, 154, 164, 174, 176, 177, 184, 185, 187, 188, 189, 190, 191, 192, 197, 198, 201, 208, 211, 212, 213, 214, 215, 218, 219, 220, 221, 222, 223, 224, 225, 227, 232, 233, 235, 236, 237, 238, 241, 243, 244, 246, 247, 249, 250, 251, 252, 253, 257], "could": [2, 3, 5, 6, 10, 11, 12, 13, 14, 16, 20, 26, 30, 36, 37, 47, 48, 50, 52, 53, 58, 68, 69, 70, 71, 74, 90, 91, 94, 96, 97, 99, 101, 102, 106, 107, 118, 119, 130, 133, 135, 138, 139, 140, 141, 143, 145, 147, 149, 150, 152, 153, 154, 174, 176, 177, 185, 190, 191, 192, 194, 197, 199, 201, 203, 234, 236, 237, 238, 239, 243, 246, 247, 251, 253, 257], "veri": [2, 10, 13, 14, 16, 19, 20, 45, 48, 52, 53, 66, 69, 70, 94, 99, 102, 103, 106, 107, 108, 118, 119, 131, 135, 140, 141, 144, 145, 150, 153, 154, 165, 173, 184, 192, 193, 201, 211, 225, 232, 234, 237, 240, 243, 251, 257], "wai": [2, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 26, 30, 37, 43, 44, 45, 46, 47, 48, 52, 58, 59, 62, 63, 64, 66, 67, 68, 69, 70, 73, 74, 77, 83, 85, 90, 91, 92, 94, 96, 97, 98, 99, 101, 103, 104, 106, 107, 115, 118, 119, 127, 128, 131, 132, 133, 137, 142, 145, 147, 149, 152, 154, 162, 164, 173, 176, 177, 180, 182, 184, 185, 186, 190, 191, 192, 198, 201, 202, 206, 213, 231, 233, 234, 237, 238, 239, 240, 241, 243, 247, 248, 251, 252, 254, 257], "concaten": [2, 48, 55, 59, 101, 123, 164, 184, 191, 201, 203, 206, 207, 236, 240, 243, 257], "copi": [2, 17, 18, 23, 25, 26, 46, 47, 48, 52, 55, 59, 60, 64, 65, 66, 68, 69, 71, 74, 75, 77, 92, 93, 95, 96, 99, 101, 103, 104, 106, 108, 109, 127, 130, 132, 142, 146, 154, 155, 159, 163, 164, 172, 176, 184, 191, 198, 201, 203, 208, 236, 239, 249, 251, 255, 257], "list": [2, 5, 10, 12, 14, 19, 20, 21, 23, 24, 28, 34, 37, 42, 43, 44, 45, 46, 47, 48, 52, 53, 54, 55, 58, 59, 61, 66, 68, 69, 70, 71, 73, 74, 77, 78, 80, 83, 88, 91, 92, 94, 96, 97, 98, 99, 101, 102, 103, 104, 108, 117, 118, 121, 124, 129, 131, 133, 135, 147, 152, 154, 159, 164, 176, 177, 178, 186, 191, 192, 199, 201, 202, 203, 205, 206, 208, 209, 213, 214, 221, 223, 225, 232, 233, 234, 235, 236, 237, 239, 240, 244, 247, 248, 249, 250, 251, 252, 253, 254, 255], "now": [2, 10, 11, 12, 13, 14, 16, 17, 20, 23, 26, 37, 43, 44, 45, 46, 47, 61, 68, 76, 80, 83, 87, 88, 90, 91, 92, 94, 96, 97, 99, 101, 102, 103, 107, 108, 117, 118, 119, 121, 130, 132, 135, 137, 140, 142, 143, 149, 154, 177, 191, 211, 213, 216, 218, 219, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 236, 237, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257], "": [2, 4, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 22, 23, 25, 26, 28, 32, 42, 44, 46, 48, 49, 50, 51, 52, 53, 54, 56, 58, 60, 61, 62, 64, 66, 68, 69, 70, 71, 73, 74, 76, 77, 78, 79, 80, 84, 86, 88, 92, 95, 98, 99, 100, 101, 102, 103, 104, 106, 107, 108, 111, 115, 118, 119, 120, 121, 123, 124, 125, 126, 127, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 142, 145, 147, 149, 150, 151, 152, 153, 154, 161, 162, 164, 165, 168, 173, 174, 177, 179, 180, 182, 184, 186, 188, 189, 190, 191, 192, 197, 199, 202, 203, 205, 206, 223, 225, 226, 227, 233, 234, 236, 237, 238, 239, 241, 242, 243, 248, 249, 250, 251, 252, 253, 254, 257], "would": [2, 3, 10, 11, 12, 13, 14, 16, 20, 23, 24, 26, 27, 28, 30, 32, 35, 37, 39, 43, 44, 45, 47, 48, 52, 54, 62, 64, 68, 69, 70, 71, 73, 74, 90, 91, 94, 96, 97, 101, 102, 106, 107, 108, 118, 119, 121, 123, 127, 131, 132, 135, 137, 138, 139, 140, 142, 143, 145, 147, 149, 152, 154, 161, 162, 164, 171, 174, 182, 184, 186, 192, 194, 197, 198, 199, 201, 205, 206, 208, 221, 223, 225, 233, 234, 236, 238, 239, 240, 243, 246, 247, 249, 250, 257], "good": [2, 10, 11, 16, 20, 23, 26, 48, 69, 85, 91, 97, 107, 117, 118, 119, 133, 153, 199, 219, 221, 222, 224, 225, 227, 228, 229, 231, 232, 233, 237, 240, 243, 257], "have": [2, 3, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 25, 26, 30, 32, 37, 42, 43, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 59, 60, 61, 62, 63, 64, 66, 68, 70, 71, 72, 73, 74, 77, 78, 80, 83, 87, 88, 90, 91, 92, 94, 95, 96, 97, 99, 101, 102, 103, 106, 107, 108, 111, 114, 115, 116, 117, 118, 119, 121, 124, 125, 127, 130, 132, 133, 135, 139, 140, 142, 143, 144, 145, 147, 149, 151, 152, 153, 154, 156, 162, 164, 165, 166, 168, 171, 173, 174, 176, 177, 179, 182, 184, 185, 186, 187, 189, 190, 191, 192, 195, 197, 198, 199, 201, 202, 203, 205, 208, 211, 213, 214, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 232, 233, 234, 235, 236, 237, 238, 239, 240, 243, 244, 246, 247, 248, 249, 250, 251, 254, 255, 257], "specif": [2, 6, 7, 11, 16, 17, 20, 22, 24, 25, 26, 37, 42, 43, 44, 45, 47, 50, 51, 52, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 78, 84, 88, 91, 96, 98, 101, 104, 106, 108, 113, 115, 119, 120, 121, 125, 127, 130, 131, 132, 137, 140, 143, 147, 150, 152, 154, 164, 172, 174, 176, 177, 179, 183, 184, 189, 198, 199, 201, 202, 204, 206, 211, 218, 232, 233, 236, 244, 248, 251, 253, 257], "vector": [2, 6, 10, 11, 14, 16, 19, 20, 23, 25, 26, 36, 37, 45, 48, 55, 59, 60, 66, 67, 68, 69, 71, 73, 74, 77, 91, 107, 108, 118, 119, 121, 124, 125, 126, 127, 133, 147, 152, 155, 158, 159, 164, 165, 173, 176, 184, 201, 203, 239, 246, 248, 249, 250, 257], "becaus": [2, 7, 10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 26, 43, 44, 45, 47, 48, 52, 55, 58, 66, 68, 69, 70, 71, 73, 74, 77, 80, 90, 91, 92, 94, 97, 101, 102, 106, 107, 108, 116, 118, 119, 121, 124, 125, 127, 135, 136, 139, 145, 147, 149, 152, 153, 154, 164, 166, 171, 174, 176, 177, 184, 190, 191, 192, 195, 197, 199, 201, 203, 205, 208, 233, 234, 236, 237, 238, 239, 242, 243, 244, 251, 255, 257], "think": [2, 12, 15, 20, 22, 26, 45, 52, 62, 69, 70, 90, 94, 99, 107, 135, 137, 142, 154, 208, 239, 257], "more": [2, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 26, 37, 40, 42, 43, 44, 45, 47, 48, 50, 52, 53, 54, 55, 58, 60, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 78, 79, 80, 83, 84, 85, 88, 91, 92, 94, 96, 97, 98, 99, 100, 101, 102, 104, 106, 107, 108, 115, 118, 119, 121, 123, 124, 125, 128, 130, 131, 133, 137, 140, 141, 143, 147, 149, 150, 152, 153, 154, 161, 164, 168, 173, 174, 176, 177, 179, 182, 183, 184, 186, 191, 192, 194, 198, 199, 201, 202, 203, 205, 206, 208, 209, 213, 215, 216, 217, 219, 223, 224, 225, 227, 228, 229, 231, 232, 233, 235, 236, 238, 239, 240, 243, 244, 246, 247, 248, 249, 250, 251, 257], "effici": [2, 6, 10, 14, 26, 29, 48, 55, 61, 62, 70, 97, 99, 107, 121, 124, 133, 135, 144, 147, 148, 153, 154, 155, 176, 177, 184, 190, 192, 201, 207, 224, 225, 227, 228, 233, 236], "than": [2, 10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 37, 45, 46, 47, 48, 52, 54, 55, 60, 61, 62, 66, 67, 68, 69, 70, 71, 73, 74, 77, 85, 88, 90, 91, 92, 94, 97, 99, 101, 102, 103, 106, 107, 108, 115, 118, 119, 124, 125, 127, 132, 133, 135, 139, 141, 147, 148, 149, 150, 152, 153, 154, 155, 156, 164, 167, 168, 169, 171, 174, 176, 177, 179, 182, 184, 187, 191, 192, 198, 199, 201, 202, 208, 213, 219, 222, 224, 225, 229, 232, 233, 236, 237, 238, 239, 241, 243, 246, 247, 248, 249, 250, 251, 257], "implement": [2, 7, 11, 14, 16, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 33, 38, 39, 44, 46, 49, 50, 52, 53, 58, 61, 62, 66, 67, 68, 69, 70, 71, 73, 74, 80, 92, 94, 97, 101, 102, 104, 106, 108, 117, 118, 119, 121, 122, 124, 125, 131, 132, 136, 139, 140, 147, 150, 151, 152, 153, 154, 155, 159, 161, 162, 164, 166, 168, 171, 174, 176, 177, 182, 184, 186, 188, 190, 192, 197, 198, 199, 200, 203, 206, 207, 208, 214, 215, 233, 234, 236, 237, 246, 248, 249, 250, 251, 253, 255, 257], "even": [2, 10, 11, 13, 14, 16, 26, 37, 48, 50, 52, 53, 59, 60, 66, 67, 68, 69, 70, 71, 74, 90, 91, 94, 97, 99, 101, 102, 103, 106, 116, 118, 119, 121, 133, 135, 137, 138, 139, 142, 149, 152, 153, 161, 164, 166, 171, 173, 177, 184, 192, 201, 208, 213, 233, 237, 238, 257], "though": [2, 11, 13, 14, 20, 23, 26, 37, 47, 68, 69, 90, 97, 104, 106, 118, 119, 121, 135, 149, 151, 177, 182, 184, 203, 208, 213, 238], "do": [2, 5, 6, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 26, 31, 43, 44, 45, 46, 47, 48, 50, 52, 55, 56, 59, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 77, 83, 85, 87, 88, 90, 91, 92, 93, 94, 96, 97, 99, 101, 102, 103, 106, 107, 108, 109, 113, 115, 117, 118, 119, 125, 126, 128, 130, 132, 133, 136, 145, 146, 147, 149, 154, 155, 164, 167, 171, 172, 174, 176, 177, 182, 183, 184, 186, 189, 191, 192, 194, 197, 198, 199, 201, 203, 205, 208, 213, 223, 225, 226, 233, 235, 236, 237, 239, 246, 249, 250, 251, 257], "right": [2, 10, 12, 13, 14, 15, 18, 19, 25, 26, 46, 47, 48, 60, 65, 67, 68, 69, 70, 71, 73, 74, 75, 77, 90, 91, 93, 94, 96, 97, 101, 106, 107, 108, 109, 119, 124, 133, 135, 142, 144, 146, 164, 166, 172, 176, 179, 201, 211, 213, 232, 235, 236, 238, 239, 243, 257], "thing": [2, 10, 11, 12, 13, 14, 16, 19, 23, 26, 37, 44, 47, 48, 58, 68, 69, 77, 80, 82, 91, 92, 94, 96, 97, 99, 102, 103, 106, 107, 108, 118, 123, 126, 131, 132, 133, 135, 137, 142, 147, 149, 152, 154, 173, 176, 198, 225, 226, 235, 237, 246, 249, 257], "v": [2, 10, 17, 23, 25, 48, 63, 77, 108, 118, 119, 123, 151, 152, 154, 184, 231, 242, 246, 251, 252, 255], "map": [2, 3, 10, 14, 20, 26, 37, 43, 45, 47, 49, 52, 55, 59, 64, 66, 68, 69, 70, 71, 73, 74, 106, 107, 108, 118, 120, 123, 127, 132, 143, 149, 152, 173, 176, 177, 183, 185, 194, 198, 206, 236, 238, 239, 247, 249, 251], "ident": [2, 3, 10, 14, 16, 17, 20, 25, 26, 54, 60, 64, 67, 68, 69, 70, 71, 73, 74, 86, 96, 103, 104, 118, 151, 154, 161, 164, 177, 190, 192, 201, 208, 239, 243, 249, 257], "just": [2, 7, 10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 24, 26, 30, 37, 44, 45, 47, 48, 52, 56, 58, 62, 63, 64, 68, 69, 71, 74, 83, 85, 88, 90, 91, 96, 97, 98, 99, 101, 102, 103, 104, 106, 107, 117, 118, 119, 123, 125, 127, 130, 131, 132, 133, 135, 139, 142, 145, 149, 150, 152, 154, 162, 167, 173, 183, 184, 192, 198, 201, 208, 214, 221, 232, 233, 236, 239, 241, 243], "exampl": [2, 3, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 20, 21, 22, 25, 26, 30, 41, 42, 43, 44, 45, 47, 49, 51, 52, 53, 58, 60, 61, 63, 65, 66, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 80, 83, 84, 85, 86, 88, 90, 93, 96, 97, 98, 99, 100, 101, 102, 103, 106, 107, 108, 109, 114, 118, 120, 121, 123, 124, 127, 128, 130, 131, 132, 135, 137, 139, 145, 146, 147, 149, 150, 151, 152, 153, 154, 159, 161, 162, 164, 167, 168, 172, 174, 177, 179, 182, 183, 184, 190, 191, 192, 193, 195, 197, 199, 202, 203, 205, 206, 208, 226, 230, 232, 233, 236, 238, 239, 240, 242, 247, 249, 250, 251, 252, 253, 254, 255, 257], "isn": [2, 10, 12, 14, 37, 56, 77, 88, 106, 107, 115, 117, 130, 132, 142, 143, 195, 225, 248], "intend": [2, 10, 11, 15, 22, 24, 26, 47, 48, 51, 52, 64, 68, 71, 118, 119, 127, 132, 143, 154, 164, 171, 177, 179, 184, 203, 208, 233, 244], "super": [2, 10, 68, 73, 74, 107, 249], "2": [2, 5, 8, 11, 13, 14, 16, 20, 21, 25, 26, 43, 44, 46, 47, 48, 50, 51, 53, 56, 58, 59, 60, 66, 67, 68, 69, 70, 71, 73, 74, 77, 79, 86, 88, 94, 97, 99, 107, 108, 115, 117, 119, 121, 123, 131, 135, 136, 141, 142, 145, 147, 149, 152, 154, 159, 164, 171, 173, 176, 177, 182, 184, 185, 191, 192, 193, 194, 202, 206, 233, 234, 235, 237, 240, 242, 244, 246, 249, 250, 252, 253, 256, 257], "3": [2, 5, 8, 11, 12, 26, 46, 48, 50, 54, 58, 59, 60, 66, 68, 69, 70, 73, 74, 77, 79, 80, 86, 92, 94, 95, 99, 107, 119, 130, 145, 147, 149, 154, 164, 168, 176, 177, 182, 184, 185, 191, 195, 198, 202, 205, 206, 213, 215, 223, 225, 234, 235, 237, 244, 246, 251, 252, 257], "4": [2, 8, 11, 13, 26, 45, 46, 47, 48, 52, 53, 54, 58, 59, 66, 68, 69, 70, 74, 77, 79, 94, 107, 119, 121, 122, 125, 147, 149, 154, 164, 182, 184, 185, 192, 193, 202, 206, 234, 236, 237, 242, 244, 253], "often": [2, 6, 12, 13, 14, 20, 26, 47, 58, 62, 64, 66, 68, 69, 70, 71, 74, 90, 92, 94, 99, 106, 119, 128, 135, 149, 154, 174, 184, 189, 208, 233, 236, 238, 257], "figur": [2, 19, 47, 66, 68, 71, 147, 238], "run": [2, 10, 13, 14, 16, 20, 21, 22, 26, 33, 37, 43, 44, 45, 47, 48, 49, 50, 52, 54, 61, 62, 63, 64, 66, 68, 74, 77, 80, 83, 91, 92, 94, 96, 98, 100, 101, 105, 106, 107, 115, 117, 118, 119, 126, 128, 129, 130, 135, 136, 137, 138, 140, 141, 142, 143, 145, 149, 154, 162, 164, 166, 168, 170, 174, 176, 177, 183, 184, 192, 200, 201, 203, 204, 208, 213, 214, 219, 222, 224, 225, 227, 228, 238, 247, 248, 253, 255, 257], "time": [2, 6, 10, 11, 12, 14, 16, 17, 19, 20, 22, 23, 26, 29, 37, 38, 44, 45, 46, 47, 48, 50, 52, 54, 61, 62, 66, 67, 69, 71, 73, 74, 78, 83, 85, 91, 92, 96, 98, 100, 101, 102, 105, 106, 107, 117, 118, 119, 123, 125, 126, 128, 129, 133, 135, 136, 137, 138, 139, 140, 142, 143, 145, 147, 149, 150, 153, 154, 155, 164, 168, 170, 173, 174, 176, 177, 184, 189, 191, 192, 195, 197, 198, 199, 201, 203, 204, 206, 207, 208, 211, 213, 225, 226, 228, 233, 235, 246, 247, 248, 255, 257], "overhead": [2, 119, 153, 159, 182, 201, 238], "dispatch": [2, 5, 9, 34, 41, 45, 53, 60, 61, 62, 74, 77, 92, 94, 96, 98, 99, 100, 108, 116, 124, 128, 129, 149, 152, 153, 179, 186, 201, 215, 234, 235, 237, 246, 248, 250, 251], "incur": [2, 184], "those": [2, 8, 10, 11, 12, 13, 14, 16, 19, 20, 22, 26, 37, 44, 45, 47, 48, 51, 52, 53, 55, 61, 64, 66, 68, 69, 71, 73, 74, 77, 85, 86, 90, 92, 94, 97, 99, 100, 101, 103, 107, 108, 118, 119, 125, 135, 147, 148, 149, 150, 152, 153, 154, 155, 161, 167, 168, 174, 176, 177, 182, 189, 191, 192, 199, 201, 203, 206, 208, 209, 225, 233, 238, 239, 246, 253], "case": [2, 9, 10, 11, 13, 14, 16, 17, 20, 23, 26, 43, 44, 47, 48, 52, 53, 54, 55, 59, 61, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 82, 88, 90, 91, 92, 94, 96, 97, 99, 101, 102, 104, 106, 107, 108, 115, 118, 119, 121, 123, 124, 125, 127, 133, 135, 147, 149, 152, 154, 161, 164, 166, 171, 174, 176, 177, 182, 184, 185, 191, 198, 199, 200, 203, 208, 215, 233, 236, 237, 243, 246, 247, 250, 251], "id": [2, 30, 37, 46, 47, 48, 49, 61, 63, 66, 68, 69, 73, 74, 78, 79, 84, 89, 92, 100, 103, 104, 106, 108, 118, 119, 131, 136, 137, 139, 140, 141, 142, 143, 153, 161, 173, 177, 190, 201, 206, 213, 223, 225, 248, 250], "tool": [2, 10, 16, 17, 19, 21, 23, 24, 25, 26, 27, 34, 37, 41, 44, 46, 47, 48, 51, 52, 61, 62, 67, 68, 69, 74, 78, 80, 89, 90, 94, 97, 98, 99, 100, 102, 103, 104, 110, 112, 114, 119, 123, 132, 137, 138, 139, 140, 141, 142, 149, 164, 174, 177, 190, 191, 197, 209, 213, 225, 231, 232, 233, 250, 251, 254], "show": [2, 10, 11, 14, 16, 17, 19, 20, 24, 26, 43, 45, 47, 53, 60, 61, 62, 66, 68, 69, 71, 74, 77, 78, 80, 88, 90, 91, 94, 96, 97, 99, 100, 101, 102, 103, 107, 127, 128, 137, 138, 139, 140, 142, 149, 152, 154, 173, 176, 177, 182, 200, 208, 214, 235, 248, 249, 251], "whether": [2, 11, 12, 14, 16, 18, 26, 43, 44, 45, 47, 48, 52, 64, 65, 66, 68, 69, 71, 73, 74, 75, 77, 90, 91, 92, 93, 94, 95, 97, 99, 101, 102, 106, 107, 108, 109, 118, 119, 121, 124, 125, 126, 127, 133, 137, 145, 146, 147, 154, 161, 162, 172, 173, 176, 177, 182, 184, 190, 192, 196, 197, 198, 199, 202, 203, 205, 206, 208, 233, 236, 243, 248, 250, 251, 257], "optim": [2, 3, 6, 9, 10, 12, 14, 32, 34, 39, 41, 48, 52, 53, 55, 58, 61, 62, 94, 96, 97, 98, 99, 100, 102, 105, 106, 116, 119, 124, 125, 128, 129, 139, 143, 147, 150, 152, 153, 159, 176, 177, 201, 225, 228, 234, 235, 246, 249, 250, 251, 252], "aid": [2, 96, 97, 127, 154, 155, 228, 233, 242, 252], "orient": [3, 14, 15, 17, 19, 20, 22, 23, 25, 26, 45, 46, 48, 50, 61, 62, 68, 69, 70, 71, 73, 74, 106, 108, 118, 135, 139, 141, 148, 224, 225, 227, 228], "forc": [3, 10, 11, 52, 53, 54, 68, 69, 73, 74, 94, 96, 97, 99, 133, 162, 177, 180, 184, 189, 199, 200, 209, 237, 241, 246, 248, 249, 257], "manual": [3, 10, 11, 15, 16, 19, 21, 26, 28, 32, 37, 43, 48, 49, 51, 53, 61, 68, 69, 71, 72, 92, 94, 96, 97, 98, 99, 103, 104, 114, 130, 144, 154, 161, 166, 173, 188, 192, 208, 231, 233, 235, 239, 243, 250, 251, 252, 257], "get_foo": 3, "set_foo": 3, "each": [3, 4, 10, 11, 14, 17, 19, 20, 21, 22, 23, 26, 37, 43, 44, 45, 46, 47, 48, 50, 53, 54, 58, 59, 60, 61, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 78, 80, 83, 85, 86, 88, 90, 91, 94, 96, 97, 99, 101, 102, 104, 106, 107, 108, 117, 118, 119, 121, 123, 124, 125, 126, 127, 130, 133, 135, 139, 145, 147, 149, 150, 152, 154, 156, 161, 164, 166, 171, 173, 174, 176, 177, 179, 180, 182, 183, 184, 192, 198, 199, 201, 202, 203, 205, 206, 208, 226, 233, 236, 238, 239, 240, 243, 247, 251, 257], "order": [3, 4, 10, 11, 12, 13, 14, 16, 17, 19, 22, 23, 24, 26, 29, 45, 46, 47, 48, 52, 54, 55, 62, 63, 66, 67, 68, 69, 70, 71, 73, 74, 80, 81, 83, 84, 92, 94, 95, 96, 97, 99, 101, 102, 104, 107, 108, 111, 118, 119, 121, 123, 126, 135, 149, 154, 161, 164, 173, 174, 183, 184, 190, 191, 192, 198, 199, 201, 202, 206, 208, 213, 233, 235, 236, 237, 239, 243, 248], "access": [3, 6, 10, 11, 14, 16, 20, 23, 37, 43, 45, 46, 47, 48, 50, 55, 58, 62, 66, 69, 85, 86, 90, 91, 95, 96, 101, 106, 116, 119, 120, 127, 130, 131, 132, 137, 145, 150, 152, 154, 164, 168, 171, 173, 177, 184, 191, 192, 199, 201, 203, 205, 206, 208, 232, 233, 248, 252, 257], "futur": [3, 10, 14, 26, 43, 45, 46, 94, 102, 105, 107, 112, 113, 119, 129, 132, 140, 149, 173, 177, 184, 185, 186, 195, 197, 199, 201, 206, 218, 220, 225, 246, 250, 255], "extens": [3, 9, 11, 14, 19, 30, 37, 39, 47, 48, 52, 55, 56, 58, 62, 64, 67, 77, 92, 96, 97, 99, 101, 102, 103, 104, 114, 120, 127, 142, 143, 150, 158, 165, 166, 177, 182, 184, 185, 186, 189, 190, 195, 201, 203, 205, 208, 211, 216, 219, 222, 224, 225, 227, 233, 237, 239, 246, 247, 249, 250, 251, 253], "For": [3, 6, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 26, 29, 43, 44, 45, 47, 48, 50, 52, 53, 54, 55, 57, 63, 64, 66, 68, 69, 70, 71, 73, 74, 76, 77, 78, 80, 84, 85, 86, 88, 89, 90, 91, 92, 94, 96, 97, 99, 100, 101, 102, 103, 106, 107, 108, 117, 118, 119, 121, 123, 124, 125, 126, 127, 131, 135, 145, 147, 149, 150, 151, 152, 154, 161, 164, 166, 167, 173, 174, 176, 177, 179, 180, 182, 183, 184, 190, 191, 192, 195, 197, 198, 199, 201, 202, 203, 205, 206, 208, 211, 219, 224, 226, 227, 228, 229, 231, 232, 233, 234, 236, 237, 238, 239, 240, 242, 243, 244, 249, 250, 251, 252, 253, 254, 255, 257], "modifi": [3, 10, 11, 16, 17, 18, 20, 23, 25, 44, 48, 52, 55, 64, 65, 66, 68, 69, 70, 71, 74, 75, 89, 92, 93, 94, 99, 101, 106, 108, 109, 116, 127, 130, 132, 146, 147, 149, 152, 154, 155, 156, 158, 161, 164, 172, 173, 174, 176, 177, 182, 190, 191, 192, 208, 213, 218, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 249, 250, 251], "keep": [3, 9, 10, 11, 13, 14, 16, 20, 24, 44, 47, 52, 68, 69, 85, 91, 98, 99, 101, 106, 107, 119, 121, 133, 138, 139, 145, 153, 154, 192, 197, 201, 233, 240, 243, 246, 257], "tabl": [3, 7, 11, 14, 16, 20, 21, 22, 23, 24, 29, 37, 43, 45, 46, 48, 55, 60, 62, 66, 68, 69, 70, 73, 74, 77, 80, 90, 91, 94, 97, 101, 102, 106, 118, 119, 121, 123, 126, 127, 131, 147, 149, 152, 154, 158, 159, 164, 168, 176, 177, 187, 188, 202, 203, 206, 215, 225, 232, 233, 235, 236, 246, 247, 251, 252], "without": [3, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 25, 26, 43, 44, 45, 47, 48, 50, 52, 55, 64, 65, 68, 69, 71, 73, 74, 75, 77, 78, 93, 94, 97, 99, 101, 102, 106, 107, 108, 109, 116, 119, 121, 125, 129, 130, 131, 135, 138, 144, 145, 146, 147, 149, 151, 152, 153, 154, 159, 161, 164, 166, 167, 171, 172, 174, 177, 184, 186, 191, 192, 196, 197, 198, 199, 201, 202, 203, 205, 208, 231, 233, 234, 236, 237, 239, 243, 246, 247, 250, 251, 252, 257], "yourself": [3, 10, 26, 37, 52, 58, 68, 69, 73, 74, 88, 94], "simpl": [3, 4, 7, 10, 13, 16, 20, 21, 22, 23, 24, 25, 26, 44, 46, 47, 48, 60, 62, 68, 69, 70, 73, 74, 77, 83, 90, 91, 92, 94, 96, 101, 102, 103, 104, 106, 107, 108, 113, 118, 120, 121, 127, 137, 140, 145, 152, 154, 163, 164, 165, 173, 174, 179, 180, 184, 198, 199, 201, 203, 224, 233, 234, 236, 238, 239, 243, 248, 249, 250, 251], "vehicl": [3, 119, 147, 150, 151, 152], "driver": [3, 46, 50, 108, 131, 147], "creat": [3, 4, 7, 10, 11, 12, 14, 17, 21, 22, 24, 31, 35, 42, 45, 46, 48, 49, 50, 53, 58, 64, 66, 67, 68, 69, 70, 71, 73, 74, 80, 83, 85, 86, 88, 90, 94, 95, 96, 97, 98, 100, 102, 103, 106, 107, 108, 111, 114, 117, 119, 120, 123, 127, 129, 130, 131, 143, 144, 145, 147, 149, 150, 152, 153, 154, 155, 161, 162, 164, 173, 174, 176, 177, 182, 183, 184, 186, 189, 190, 191, 192, 199, 201, 202, 205, 206, 225, 231, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 249, 250, 252], "prevent": [3, 10, 11, 44, 45, 48, 68, 96, 102, 106, 107, 118, 119, 149, 150, 152, 153, 174, 176, 177, 213, 233, 237, 238, 241, 243, 250, 251, 252], "being": [3, 10, 11, 14, 16, 17, 23, 26, 34, 37, 45, 47, 48, 52, 53, 62, 64, 68, 69, 73, 74, 77, 90, 91, 94, 96, 97, 99, 102, 103, 104, 106, 107, 108, 115, 118, 119, 121, 124, 125, 127, 131, 132, 142, 144, 154, 164, 166, 173, 174, 176, 177, 182, 184, 185, 192, 195, 198, 201, 205, 208, 223, 224, 225, 232, 233, 235, 236, 237, 239, 246, 247, 250, 251, 252], "ad": [3, 10, 11, 14, 17, 21, 24, 25, 26, 37, 44, 47, 48, 52, 55, 68, 69, 71, 73, 74, 77, 84, 87, 91, 92, 94, 98, 99, 102, 103, 105, 108, 111, 118, 119, 131, 132, 138, 149, 150, 152, 154, 155, 156, 159, 164, 174, 176, 179, 182, 184, 192, 198, 199, 201, 202, 208, 224, 226, 229, 231, 232, 233, 234, 236, 237, 238, 239, 241, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254], "under": [3, 16, 23, 26, 44, 46, 50, 52, 53, 63, 67, 68, 69, 70, 71, 73, 74, 77, 89, 92, 94, 96, 97, 99, 100, 102, 103, 106, 108, 116, 117, 118, 119, 126, 127, 128, 134, 135, 136, 164, 174, 182, 192, 201, 206, 213, 232, 233, 239, 241, 249, 251], "circumst": [3, 68, 69, 70, 73, 91, 94, 118, 119, 124, 176, 177, 198, 246], "both": [3, 7, 9, 10, 11, 12, 13, 14, 16, 17, 20, 24, 25, 26, 32, 37, 44, 45, 46, 47, 48, 51, 52, 53, 54, 61, 62, 66, 67, 68, 69, 70, 71, 73, 74, 89, 90, 92, 94, 96, 97, 99, 101, 107, 115, 118, 119, 121, 124, 125, 127, 131, 135, 140, 143, 145, 147, 149, 150, 152, 154, 155, 164, 166, 171, 173, 174, 177, 182, 184, 191, 192, 197, 198, 200, 201, 203, 206, 208, 213, 227, 236, 237, 238, 240, 243, 246, 257], "inlin": [3, 14, 16, 20, 77, 91, 94, 99, 107, 108, 116, 125, 131, 139, 149, 154, 176, 185, 188, 213, 229, 236, 250, 251], "direct": [3, 10, 14, 15, 16, 17, 25, 26, 37, 43, 45, 47, 48, 52, 54, 56, 58, 59, 60, 62, 66, 68, 69, 70, 71, 73, 74, 91, 94, 97, 104, 106, 115, 118, 119, 121, 124, 125, 127, 134, 137, 144, 150, 152, 154, 159, 164, 166, 167, 168, 173, 177, 179, 184, 191, 199, 200, 201, 202, 203, 233, 237, 239, 248, 250, 252, 257], "later": [3, 10, 12, 14, 16, 19, 20, 37, 48, 50, 64, 77, 92, 97, 99, 100, 102, 103, 107, 119, 124, 133, 134, 135, 139, 142, 143, 145, 149, 153, 154, 173, 177, 182, 184, 199, 208, 219, 228, 233, 236, 246, 250, 251], "discov": [3, 14, 62, 97, 135, 174], "allow": [3, 7, 9, 10, 11, 12, 13, 16, 17, 20, 22, 26, 37, 43, 44, 45, 47, 48, 50, 51, 52, 58, 60, 63, 64, 66, 68, 69, 70, 71, 73, 74, 78, 80, 85, 90, 91, 92, 94, 95, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 116, 118, 119, 127, 128, 130, 131, 132, 135, 138, 139, 140, 141, 143, 145, 147, 149, 150, 151, 152, 153, 154, 159, 161, 164, 177, 179, 182, 184, 187, 189, 191, 192, 193, 195, 196, 198, 200, 201, 202, 203, 206, 207, 208, 215, 225, 229, 232, 233, 234, 235, 236, 237, 238, 239, 242, 243, 246, 247, 248, 249, 250, 251, 252], "renam": [3, 10, 108, 132, 134, 143, 150, 192, 198, 203, 213, 232, 247, 249, 252, 255, 257], "explicit": [3, 10, 11, 13, 14, 20, 22, 25, 48, 55, 58, 101, 111, 119, 121, 133, 147, 153, 160, 161, 174, 176, 186, 192, 198, 203, 206, 236, 247], "replac": [3, 11, 14, 16, 17, 20, 26, 47, 54, 55, 68, 71, 74, 77, 91, 96, 101, 107, 119, 125, 138, 143, 149, 152, 173, 176, 184, 189, 190, 192, 201, 203, 208, 216, 219, 224, 234, 236, 246, 248, 249, 251, 253, 257], "thu": [3, 11, 12, 14, 16, 17, 19, 20, 22, 23, 26, 32, 44, 45, 47, 52, 68, 69, 71, 73, 74, 90, 92, 94, 99, 101, 102, 107, 108, 118, 119, 135, 147, 149, 152, 154, 164, 166, 176, 184, 192, 198, 201, 202, 208, 237], "chang": [3, 10, 11, 13, 14, 15, 16, 20, 21, 25, 26, 32, 37, 43, 46, 47, 48, 52, 53, 58, 64, 66, 68, 69, 70, 73, 74, 80, 90, 91, 92, 97, 98, 99, 100, 101, 103, 106, 107, 108, 118, 130, 131, 132, 133, 135, 137, 138, 140, 142, 149, 150, 152, 154, 164, 173, 174, 176, 177, 182, 184, 185, 189, 190, 192, 195, 201, 202, 206, 208, 214, 219, 220, 222, 224, 226, 228, 229, 231, 233, 234, 235, 237, 238, 239, 240, 242, 243, 244, 248, 249, 253, 254, 257], "intern": [3, 10, 14, 31, 37, 47, 48, 52, 53, 64, 68, 69, 77, 78, 80, 82, 86, 88, 90, 97, 99, 105, 118, 119, 122, 123, 129, 133, 140, 147, 149, 173, 176, 177, 191, 198, 199, 201, 202, 208, 213, 226, 239, 240, 246, 248, 250, 252, 257], "behavior": [3, 5, 11, 14, 16, 20, 22, 26, 45, 48, 52, 53, 62, 68, 69, 73, 74, 82, 94, 106, 107, 138, 139, 140, 144, 145, 150, 154, 161, 171, 173, 177, 179, 184, 192, 199, 201, 203, 224, 225, 227, 228, 234, 238, 239, 246, 249, 252, 253], "your": [3, 10, 11, 16, 17, 19, 20, 22, 23, 24, 25, 26, 47, 50, 52, 54, 61, 63, 64, 68, 69, 71, 73, 74, 77, 80, 83, 85, 86, 87, 88, 90, 91, 92, 94, 95, 96, 99, 100, 101, 102, 103, 106, 112, 115, 117, 128, 129, 130, 137, 138, 139, 141, 144, 145, 154, 164, 174, 182, 184, 192, 198, 199, 201, 202, 203, 206, 214, 221, 232, 233, 236, 248, 249, 250, 251, 257], "follow": [3, 6, 8, 9, 10, 13, 14, 16, 17, 18, 19, 20, 22, 23, 25, 26, 42, 43, 44, 45, 47, 48, 50, 52, 53, 54, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 77, 79, 80, 86, 88, 90, 91, 92, 93, 94, 96, 97, 99, 101, 104, 106, 107, 108, 109, 115, 117, 118, 119, 121, 123, 125, 126, 145, 146, 147, 149, 150, 152, 153, 154, 161, 164, 166, 171, 172, 174, 176, 177, 179, 182, 184, 186, 191, 192, 195, 198, 199, 201, 202, 203, 204, 205, 206, 208, 209, 213, 214, 233, 234, 235, 236, 237, 238, 239, 241, 242, 243, 246, 248, 253, 257], "maintain": [3, 10, 14, 20, 22, 37, 43, 44, 48, 52, 64, 68, 69, 74, 96, 104, 107, 117, 119, 127, 131, 139, 150, 174, 177, 184, 186, 192, 201, 202, 207, 208, 211, 213, 225, 232, 233, 244, 246, 251, 257], "hash": [3, 14, 131, 158, 190, 195, 224, 238, 250], "lead": [3, 16, 22, 26, 29, 48, 52, 67, 70, 71, 74, 97, 101, 102, 106, 131, 177, 191, 192, 196, 203, 233, 235, 237, 243, 246, 248, 257], "convent": [3, 11, 12, 13, 44, 45, 61, 62, 72, 74, 102, 107, 108, 118, 119, 122, 124, 125, 127, 137, 154, 176, 183, 192, 196, 203, 233, 252, 257], "kei": [3, 5, 11, 16, 17, 20, 23, 25, 26, 48, 55, 58, 60, 64, 66, 67, 68, 70, 71, 72, 73, 74, 90, 92, 102, 106, 111, 117, 118, 119, 121, 131, 133, 139, 145, 149, 152, 154, 156, 159, 160, 161, 162, 164, 166, 168, 169, 173, 174, 177, 182, 184, 187, 190, 192, 197, 199, 200, 201, 202, 203, 205, 206, 208, 213, 225, 233, 236, 237, 239, 247, 248, 249, 253, 257], "export": [3, 26, 44, 48, 53, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 80, 83, 86, 88, 90, 92, 98, 102, 104, 107, 111, 112, 118, 119, 139, 150, 154, 158, 161, 164, 165, 166, 171, 174, 177, 179, 180, 182, 183, 184, 188, 189, 198, 199, 201, 202, 204, 206, 208, 213, 220, 234, 236, 238, 239, 243, 246, 247, 248, 249, 250, 251, 252, 255, 257], "public": [3, 10, 47, 108, 118, 129, 150, 185, 233, 235], "some": [3, 9, 10, 11, 12, 14, 15, 16, 17, 19, 20, 23, 24, 26, 29, 32, 33, 37, 39, 43, 44, 45, 47, 48, 50, 51, 52, 55, 58, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 79, 80, 83, 84, 86, 89, 90, 91, 92, 94, 96, 97, 99, 101, 102, 104, 106, 107, 108, 111, 114, 115, 118, 119, 122, 123, 124, 125, 127, 130, 131, 132, 133, 134, 135, 136, 139, 140, 141, 142, 143, 145, 147, 149, 150, 152, 153, 154, 155, 162, 164, 168, 171, 173, 174, 176, 177, 179, 182, 183, 184, 185, 186, 190, 191, 192, 198, 199, 201, 202, 203, 205, 206, 208, 211, 212, 215, 218, 219, 220, 221, 222, 223, 225, 226, 229, 231, 232, 233, 235, 236, 237, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257], "handi": [3, 10, 149], "syntact": [3, 10, 11, 12, 14, 48, 102, 119, 127, 152, 177, 201, 241], "sugar": [3, 152, 194, 241], "look": [3, 10, 11, 12, 13, 14, 16, 19, 20, 22, 24, 26, 37, 42, 43, 44, 45, 47, 48, 61, 64, 66, 68, 69, 71, 74, 77, 78, 80, 82, 85, 86, 88, 90, 91, 92, 94, 97, 98, 99, 100, 101, 104, 106, 107, 108, 118, 119, 121, 125, 126, 127, 128, 131, 132, 135, 140, 142, 145, 149, 150, 151, 152, 173, 182, 197, 198, 206, 208, 212, 221, 232, 233, 235, 237, 238, 246, 257], "c": [3, 5, 10, 12, 13, 14, 15, 17, 20, 22, 23, 25, 27, 28, 35, 43, 47, 48, 50, 54, 56, 58, 59, 60, 61, 62, 63, 67, 69, 80, 84, 86, 89, 92, 95, 99, 101, 102, 104, 106, 107, 108, 118, 119, 121, 122, 123, 126, 129, 130, 131, 135, 140, 143, 145, 147, 148, 149, 152, 153, 162, 164, 166, 167, 171, 172, 176, 177, 178, 179, 184, 185, 194, 195, 199, 201, 203, 205, 206, 213, 214, 219, 225, 227, 228, 229, 237, 239, 243, 247, 248, 252, 257], "structur": [3, 10, 14, 19, 20, 21, 22, 23, 32, 37, 52, 62, 68, 72, 92, 99, 101, 107, 108, 118, 119, 127, 129, 133, 145, 147, 150, 152, 153, 155, 173, 176, 182, 184, 197, 198, 201, 203, 207, 213, 233, 237, 246, 249, 251], "frank": 3, "These": [3, 10, 11, 14, 16, 19, 20, 22, 24, 26, 37, 43, 44, 45, 47, 48, 51, 52, 53, 59, 60, 64, 67, 68, 69, 70, 71, 73, 74, 77, 83, 90, 91, 92, 94, 96, 97, 99, 102, 104, 106, 107, 108, 118, 119, 124, 125, 126, 127, 130, 131, 135, 137, 140, 149, 150, 152, 154, 159, 166, 168, 173, 174, 176, 177, 182, 184, 185, 188, 190, 199, 201, 202, 203, 206, 208, 211, 225, 236, 247, 248, 249, 250, 251, 257], "semant": [3, 32, 48, 60, 74, 85, 119, 124, 125, 143, 154, 164, 166, 184, 191, 201, 205, 233, 237, 238, 246, 251], "three": [3, 10, 14, 16, 22, 26, 44, 45, 46, 48, 50, 54, 62, 66, 67, 68, 69, 70, 71, 73, 74, 91, 94, 96, 98, 99, 101, 103, 104, 106, 107, 118, 119, 121, 124, 126, 127, 142, 147, 149, 150, 151, 154, 164, 173, 176, 183, 192, 196, 201, 203, 206, 213, 233, 235, 238, 240, 242, 243], "perform": [3, 9, 10, 14, 16, 20, 23, 26, 29, 36, 38, 45, 47, 48, 58, 62, 67, 68, 69, 70, 71, 73, 74, 79, 91, 94, 96, 97, 99, 103, 104, 106, 108, 111, 118, 119, 124, 125, 126, 127, 129, 135, 139, 140, 145, 151, 152, 153, 154, 164, 166, 168, 171, 172, 174, 176, 177, 183, 184, 189, 192, 198, 200, 201, 203, 204, 213, 215, 225, 227, 229, 232, 234, 247, 248, 249, 251, 252], "assign": [3, 12, 14, 16, 19, 20, 45, 55, 68, 69, 73, 94, 97, 102, 105, 106, 108, 124, 127, 149, 173, 176, 177, 201, 202, 233, 246], "salli": 3, "canon": [4, 83, 116, 119, 124, 199, 201], "program": [4, 9, 10, 11, 12, 13, 14, 19, 20, 21, 32, 37, 43, 45, 48, 50, 51, 61, 62, 63, 64, 66, 71, 77, 83, 89, 90, 92, 94, 95, 97, 98, 100, 101, 102, 104, 105, 116, 118, 119, 123, 124, 126, 127, 133, 135, 141, 143, 144, 145, 147, 148, 149, 150, 153, 154, 164, 167, 171, 173, 177, 184, 192, 195, 197, 198, 200, 201, 205, 206, 208, 213, 214, 224, 225, 227, 228, 237, 238, 239, 240, 241, 243, 246, 252, 253], "file": [4, 10, 11, 17, 18, 19, 20, 22, 23, 24, 26, 32, 33, 37, 43, 45, 46, 47, 49, 51, 53, 54, 62, 63, 65, 66, 68, 69, 73, 74, 75, 78, 79, 80, 82, 83, 84, 85, 87, 88, 89, 90, 91, 93, 94, 95, 97, 98, 102, 106, 108, 109, 114, 116, 117, 119, 120, 126, 128, 130, 131, 132, 139, 142, 145, 146, 150, 154, 162, 164, 167, 172, 173, 178, 195, 196, 199, 204, 205, 206, 208, 209, 213, 218, 220, 226, 231, 232, 243, 244, 246, 247, 248, 249, 250, 251, 252, 253, 257], "modul": [4, 10, 11, 12, 20, 24, 25, 30, 43, 44, 47, 53, 56, 60, 72, 77, 80, 83, 86, 90, 92, 94, 96, 97, 99, 101, 102, 104, 107, 108, 111, 115, 116, 119, 120, 123, 126, 129, 138, 144, 152, 154, 158, 165, 175, 181, 186, 188, 190, 198, 199, 204, 208, 213, 229, 234, 236, 237, 239, 241, 243, 246, 247, 248, 249, 250, 251, 252, 257], "user": [4, 14, 17, 20, 22, 24, 25, 26, 30, 41, 43, 44, 45, 46, 48, 50, 61, 64, 66, 68, 69, 71, 73, 74, 79, 82, 83, 84, 87, 94, 96, 99, 101, 104, 106, 108, 116, 118, 119, 126, 135, 140, 143, 150, 153, 162, 164, 173, 179, 182, 183, 184, 191, 198, 199, 201, 203, 205, 206, 208, 223, 225, 226, 229, 233, 238, 239, 243, 246, 247, 249, 250, 251, 253], "io": [4, 77, 80, 86, 92, 104, 123, 154, 164, 167, 178, 179, 180, 182, 184, 203, 213, 229, 231, 238, 248], "import": [4, 10, 12, 14, 19, 20, 22, 26, 44, 53, 55, 62, 68, 69, 71, 77, 78, 80, 89, 90, 94, 97, 99, 101, 102, 104, 107, 108, 119, 130, 131, 132, 139, 141, 142, 144, 152, 153, 154, 174, 177, 184, 192, 198, 201, 202, 205, 213, 219, 233, 238, 243, 248, 249, 251, 252], "n": [4, 11, 12, 13, 14, 16, 25, 43, 45, 47, 48, 58, 59, 60, 62, 66, 68, 74, 77, 92, 97, 101, 108, 118, 119, 123, 130, 149, 154, 163, 164, 174, 177, 182, 184, 191, 196, 198, 202, 238, 240, 243], "deft": [4, 80, 83, 85, 86, 88, 130, 232, 252, 255], "applic": [4, 9, 10, 17, 22, 24, 25, 26, 29, 41, 43, 45, 46, 48, 49, 50, 51, 52, 54, 61, 62, 63, 64, 66, 68, 69, 71, 73, 74, 77, 79, 80, 83, 84, 88, 92, 96, 98, 100, 104, 106, 115, 120, 121, 124, 128, 129, 135, 137, 138, 142, 149, 150, 154, 164, 168, 173, 177, 183, 184, 186, 188, 192, 194, 199, 204, 213, 225, 233, 234, 236, 237, 238, 247, 248, 249, 250, 251, 253], "command": [4, 16, 20, 21, 22, 23, 24, 26, 37, 43, 45, 47, 52, 53, 54, 60, 61, 63, 69, 72, 74, 77, 78, 79, 80, 86, 87, 88, 89, 90, 91, 92, 95, 97, 98, 99, 100, 101, 102, 103, 104, 106, 108, 118, 119, 130, 132, 164, 168, 198, 201, 206, 208, 209, 213, 214, 219, 226, 233, 246, 249, 250, 251, 252, 253, 254], "2024": [4, 63, 88, 206, 232, 243, 252, 256], "older": [4, 96, 118, 119, 233, 238, 242], "releas": [4, 7, 11, 61, 63, 69, 74, 92, 98, 99, 103, 104, 117, 127, 129, 135, 136, 139, 140, 142, 174, 176, 177, 184, 206, 214, 215, 233, 235, 242, 250, 251, 252, 253, 254, 255], "along": [4, 10, 11, 14, 20, 26, 37, 47, 52, 69, 71, 90, 106, 117, 118, 119, 123, 124, 131, 132, 133, 152, 164, 176, 177, 182, 184, 201, 211, 229], "test": [4, 7, 10, 13, 14, 16, 20, 43, 45, 48, 49, 56, 58, 59, 68, 69, 70, 73, 74, 77, 80, 83, 94, 97, 99, 101, 102, 107, 108, 111, 117, 118, 119, 124, 125, 129, 130, 135, 140, 147, 150, 164, 176, 177, 184, 190, 192, 201, 202, 205, 208, 213, 226, 233, 236, 237, 238, 240, 243, 248, 249, 250, 251, 252, 257], "suit": [4, 22, 24, 69, 74, 77, 80, 83, 94, 117, 130, 186, 213, 234, 248, 249, 250, 251], "build": [4, 10, 11, 16, 19, 20, 22, 24, 26, 30, 37, 43, 44, 48, 49, 50, 51, 52, 61, 62, 63, 64, 67, 69, 70, 74, 77, 78, 80, 82, 83, 84, 87, 88, 91, 92, 94, 96, 97, 98, 100, 106, 108, 114, 115, 117, 119, 124, 125, 128, 129, 130, 131, 135, 138, 142, 149, 152, 161, 176, 192, 197, 198, 205, 209, 213, 219, 221, 223, 226, 228, 231, 232, 233, 238, 244, 246, 252, 255], "least": [4, 10, 11, 12, 13, 20, 26, 37, 48, 53, 66, 68, 73, 94, 97, 99, 106, 107, 108, 124, 125, 140, 147, 152, 154, 166, 174, 177, 184, 192, 195, 198, 202, 206, 233, 237, 238, 243, 249], "one": [4, 5, 10, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 25, 26, 32, 34, 37, 43, 44, 45, 47, 48, 50, 52, 53, 54, 55, 58, 59, 60, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 78, 83, 86, 88, 91, 94, 96, 97, 99, 101, 102, 103, 104, 106, 107, 118, 119, 121, 124, 125, 126, 127, 130, 131, 132, 133, 135, 137, 140, 141, 142, 144, 145, 147, 149, 150, 151, 152, 153, 154, 155, 162, 164, 168, 173, 176, 177, 179, 180, 182, 183, 184, 191, 192, 198, 199, 201, 202, 203, 206, 208, 213, 225, 233, 234, 235, 236, 237, 238, 239, 240, 243, 246, 251, 257], "except": [4, 10, 11, 12, 13, 14, 16, 20, 26, 43, 45, 52, 53, 55, 58, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 80, 96, 97, 101, 102, 119, 120, 126, 132, 142, 145, 149, 153, 154, 155, 161, 164, 174, 176, 177, 179, 182, 184, 188, 192, 195, 197, 198, 201, 202, 205, 206, 208, 213, 236, 239, 240, 243, 250, 251, 257], "sourc": [4, 10, 11, 16, 17, 19, 20, 21, 24, 26, 33, 37, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 55, 61, 62, 66, 68, 69, 73, 74, 77, 80, 82, 83, 84, 85, 86, 92, 97, 98, 100, 102, 104, 105, 107, 108, 111, 112, 114, 115, 116, 117, 120, 121, 123, 126, 127, 130, 131, 132, 135, 137, 138, 139, 140, 141, 142, 147, 150, 153, 154, 164, 173, 176, 184, 195, 196, 199, 203, 208, 220, 223, 225, 226, 233, 238, 239, 240, 241, 243, 246, 247, 248, 249, 250, 251, 252], "header": [4, 26, 32, 47, 92, 97, 101, 104, 150, 154, 201, 202, 208, 218, 257], "its": [4, 10, 11, 13, 14, 16, 17, 19, 20, 26, 43, 44, 45, 46, 47, 48, 50, 52, 54, 55, 61, 62, 64, 66, 67, 71, 74, 77, 80, 83, 88, 90, 91, 92, 94, 96, 97, 99, 101, 102, 107, 108, 114, 118, 119, 124, 125, 126, 127, 133, 135, 137, 138, 140, 142, 145, 147, 149, 150, 152, 153, 154, 155, 156, 161, 164, 167, 171, 172, 173, 174, 176, 177, 180, 182, 184, 190, 191, 192, 198, 201, 202, 203, 205, 208, 213, 216, 225, 233, 237, 238, 239, 243, 244, 246, 248, 251, 254, 257], "definit": [4, 5, 10, 12, 14, 19, 20, 21, 22, 23, 25, 26, 32, 43, 44, 45, 47, 48, 50, 51, 52, 53, 54, 61, 62, 64, 66, 68, 69, 70, 72, 73, 80, 83, 88, 90, 91, 92, 94, 96, 98, 99, 101, 104, 105, 106, 107, 116, 118, 119, 126, 127, 129, 133, 139, 144, 149, 150, 151, 152, 154, 164, 174, 176, 177, 188, 189, 191, 192, 198, 201, 214, 218, 226, 229, 232, 233, 234, 235, 237, 238, 246, 248, 249, 255], "should": [4, 10, 11, 12, 14, 16, 17, 19, 20, 23, 24, 25, 26, 37, 43, 44, 45, 46, 47, 48, 50, 52, 54, 63, 64, 67, 68, 69, 70, 71, 73, 74, 80, 83, 85, 86, 87, 88, 90, 91, 92, 94, 95, 96, 97, 99, 101, 102, 103, 106, 107, 111, 118, 119, 121, 124, 130, 131, 132, 133, 147, 152, 153, 154, 159, 162, 164, 166, 168, 171, 172, 173, 176, 177, 179, 182, 184, 191, 192, 198, 199, 201, 202, 203, 205, 206, 208, 211, 218, 226, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 246, 249, 250, 251, 257], "themselv": [4, 16, 17, 20, 23, 26, 47, 52, 69, 74, 95, 99, 127, 153, 173, 176, 184, 192, 198, 201, 233, 243, 252], "pre": [4, 22, 26, 44, 74, 83, 92, 94, 99, 116, 130, 139, 141, 154, 176, 246, 250], "exist": [4, 5, 6, 10, 14, 16, 17, 20, 23, 25, 26, 27, 33, 37, 39, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 58, 64, 68, 69, 70, 71, 73, 74, 78, 83, 85, 88, 90, 91, 92, 94, 96, 97, 99, 101, 102, 107, 116, 117, 118, 119, 125, 127, 132, 147, 150, 152, 154, 159, 164, 173, 176, 177, 179, 183, 184, 185, 192, 201, 202, 203, 205, 206, 213, 225, 233, 235, 236, 237, 238, 239, 241, 243, 246, 252, 253, 255], "top": [4, 7, 20, 23, 26, 30, 37, 43, 44, 45, 46, 48, 51, 52, 54, 66, 67, 68, 69, 70, 71, 73, 74, 85, 92, 94, 95, 96, 97, 101, 102, 103, 104, 107, 108, 111, 116, 117, 118, 119, 126, 127, 135, 136, 138, 139, 143, 147, 154, 177, 191, 199, 201, 206, 208, 232, 249, 257], "level": [4, 7, 10, 11, 20, 22, 23, 26, 28, 37, 40, 43, 44, 45, 46, 48, 51, 52, 54, 61, 62, 64, 68, 69, 70, 71, 73, 74, 77, 85, 86, 90, 92, 94, 95, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 111, 116, 117, 120, 121, 124, 126, 127, 138, 139, 144, 147, 150, 152, 154, 182, 184, 191, 197, 199, 201, 206, 208, 237, 246, 248, 249, 250, 257], "execut": [4, 11, 14, 16, 22, 24, 26, 37, 45, 46, 47, 50, 52, 54, 56, 64, 68, 69, 71, 74, 79, 80, 83, 84, 87, 89, 90, 91, 92, 95, 96, 97, 98, 100, 101, 103, 104, 106, 107, 108, 116, 118, 119, 121, 125, 126, 127, 132, 141, 143, 145, 149, 154, 159, 164, 168, 176, 177, 199, 203, 206, 208, 213, 219, 222, 224, 227, 231, 247, 250, 251, 252, 254, 255], "when": [4, 5, 10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 24, 25, 26, 37, 43, 45, 46, 47, 48, 50, 52, 53, 54, 55, 58, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 80, 85, 86, 88, 90, 91, 92, 94, 95, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 115, 117, 118, 119, 121, 123, 125, 126, 127, 128, 131, 132, 133, 142, 143, 145, 147, 149, 150, 154, 155, 159, 161, 162, 164, 166, 168, 171, 173, 176, 177, 182, 185, 190, 191, 192, 198, 199, 200, 201, 202, 206, 208, 213, 214, 216, 222, 225, 228, 229, 232, 233, 234, 235, 236, 237, 238, 239, 240, 243, 246, 247, 248, 249, 250, 251, 252, 253, 255, 257], "load": [4, 17, 19, 20, 23, 24, 25, 37, 54, 64, 69, 74, 77, 80, 83, 90, 94, 99, 101, 108, 112, 116, 118, 119, 126, 143, 173, 176, 192, 197, 198, 206, 246, 249, 250, 251], "main": [4, 10, 14, 16, 19, 20, 23, 24, 25, 26, 45, 46, 47, 48, 52, 53, 64, 66, 68, 69, 71, 74, 79, 80, 83, 85, 92, 94, 96, 97, 99, 100, 101, 102, 103, 107, 108, 117, 118, 119, 126, 128, 143, 154, 174, 191, 198, 199, 208, 228, 233, 234, 238, 248], "take": [5, 10, 11, 13, 14, 16, 17, 19, 20, 22, 23, 24, 26, 37, 39, 42, 44, 45, 47, 48, 52, 53, 54, 56, 62, 64, 66, 68, 69, 70, 71, 73, 74, 77, 80, 87, 88, 90, 92, 94, 95, 96, 97, 99, 101, 102, 104, 107, 108, 111, 118, 119, 123, 126, 131, 133, 135, 139, 140, 142, 145, 147, 149, 153, 154, 156, 164, 168, 173, 174, 176, 182, 184, 185, 190, 191, 192, 199, 201, 202, 203, 208, 213, 237, 239, 246, 247, 249, 250], "part": [5, 11, 13, 14, 16, 19, 20, 22, 23, 24, 26, 37, 43, 44, 45, 47, 48, 49, 50, 52, 62, 64, 66, 68, 69, 71, 73, 74, 77, 88, 90, 91, 94, 96, 97, 99, 101, 102, 106, 107, 108, 116, 118, 119, 125, 126, 130, 132, 135, 137, 139, 143, 154, 161, 164, 172, 176, 177, 178, 179, 184, 186, 190, 192, 195, 198, 199, 201, 202, 203, 205, 206, 208, 211, 212, 228, 232, 233, 234, 236, 238, 246, 247, 248, 250, 257], "That": [5, 10, 11, 12, 14, 26, 44, 45, 47, 48, 52, 53, 64, 66, 69, 71, 80, 90, 91, 92, 94, 97, 99, 107, 119, 131, 154, 164, 171, 174, 177, 182, 184, 188, 192, 198, 201, 208, 237, 238, 239, 249, 257], "role": [5, 49], "determin": [5, 11, 13, 26, 43, 44, 45, 48, 55, 62, 64, 68, 69, 70, 71, 73, 77, 83, 91, 92, 94, 99, 101, 107, 108, 118, 119, 121, 124, 125, 126, 130, 132, 140, 147, 154, 155, 161, 162, 164, 174, 176, 177, 182, 184, 190, 192, 198, 201, 202, 203, 206, 236, 237, 248, 250], "gener": [5, 6, 9, 10, 12, 14, 16, 20, 22, 23, 24, 28, 29, 30, 33, 36, 37, 43, 44, 45, 46, 48, 49, 52, 53, 58, 60, 61, 62, 66, 67, 68, 69, 70, 71, 72, 73, 74, 83, 84, 85, 86, 88, 91, 92, 94, 96, 97, 99, 101, 102, 104, 106, 107, 108, 110, 111, 114, 115, 117, 118, 119, 121, 123, 124, 126, 127, 128, 129, 132, 133, 135, 137, 140, 142, 143, 144, 147, 150, 151, 154, 155, 157, 159, 161, 162, 163, 164, 166, 168, 169, 170, 171, 173, 174, 179, 180, 182, 184, 186, 188, 189, 190, 194, 198, 199, 200, 201, 202, 203, 205, 208, 220, 224, 225, 227, 228, 229, 233, 234, 236, 237, 238, 239, 247, 248, 249, 250, 251, 252, 253], "match": [5, 10, 11, 12, 13, 43, 45, 48, 56, 62, 66, 68, 69, 74, 80, 90, 94, 99, 104, 107, 108, 118, 119, 125, 127, 143, 149, 154, 164, 184, 195, 196, 201, 208, 235, 236, 237, 238, 243, 248, 250, 251, 257], "spell": [5, 48, 218, 233, 237], "occasion": [5, 43, 45, 47, 154, 177], "paramet": [5, 12, 13, 14, 20, 44, 45, 50, 58, 66, 67, 68, 69, 70, 71, 73, 74, 91, 92, 97, 98, 104, 106, 111, 118, 119, 121, 124, 125, 131, 133, 151, 152, 153, 154, 155, 156, 157, 159, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 173, 174, 176, 177, 179, 180, 182, 184, 185, 186, 190, 192, 199, 200, 201, 202, 203, 205, 206, 208, 213, 234, 236, 239, 247, 249, 250, 251, 252], "similar": [5, 10, 11, 12, 14, 16, 19, 20, 23, 26, 44, 45, 47, 48, 58, 62, 68, 69, 71, 73, 74, 78, 87, 91, 94, 101, 104, 106, 107, 119, 121, 130, 131, 145, 148, 149, 150, 152, 153, 154, 161, 164, 176, 177, 182, 184, 192, 198, 199, 201, 202, 205, 240, 243, 249, 250, 251, 257], "describ": [5, 11, 12, 14, 16, 17, 19, 20, 22, 23, 24, 25, 26, 43, 44, 45, 47, 48, 49, 50, 52, 54, 61, 62, 63, 64, 66, 67, 68, 69, 70, 73, 74, 78, 79, 83, 84, 90, 91, 92, 94, 96, 97, 99, 100, 101, 103, 104, 107, 108, 113, 118, 119, 121, 124, 125, 126, 127, 130, 132, 143, 144, 149, 150, 152, 161, 164, 165, 166, 167, 171, 172, 173, 174, 176, 177, 178, 179, 180, 182, 183, 184, 186, 188, 190, 191, 192, 198, 199, 201, 202, 203, 208, 233, 234, 237, 238, 239, 244, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257], "my": [5, 11, 20, 26, 47, 68, 69, 73, 87, 94, 107, 117, 119, 135, 142, 149, 150, 154, 161, 164, 184, 187, 203, 205, 208, 237, 243, 250], "verbos": [5, 7, 22, 79, 106, 217, 225, 248, 249, 250, 251, 257], "d": [5, 7, 10, 11, 17, 23, 25, 48, 56, 60, 61, 62, 69, 73, 77, 92, 107, 108, 123, 127, 130, 131, 135, 149, 164, 166, 168, 176, 179, 184, 191, 195, 202, 205, 206, 211, 225, 232, 237, 249, 250, 251, 252, 253, 257], "item": [5, 16, 17, 19, 21, 23, 25, 26, 30, 43, 46, 53, 68, 69, 74, 90, 91, 92, 94, 96, 97, 102, 103, 106, 130, 135, 149, 161, 164, 166, 171, 174, 179, 180, 182, 189, 190, 201, 202, 203, 206, 208, 257], "invok": [5, 10, 16, 22, 23, 26, 43, 44, 45, 46, 48, 50, 52, 53, 54, 68, 69, 71, 74, 77, 88, 92, 94, 97, 98, 99, 103, 106, 107, 108, 116, 118, 119, 125, 127, 128, 131, 132, 149, 151, 152, 154, 164, 176, 179, 184, 191, 201, 206, 237, 250], "sever": [5, 10, 11, 13, 14, 16, 19, 20, 23, 24, 26, 45, 46, 47, 48, 51, 52, 61, 62, 67, 68, 69, 70, 71, 73, 74, 83, 91, 94, 96, 99, 101, 102, 104, 108, 111, 119, 121, 127, 134, 135, 136, 137, 141, 142, 149, 150, 151, 153, 164, 177, 184, 190, 192, 203, 208, 213, 233, 246, 248, 250, 251, 254], "specifi": [5, 10, 14, 17, 20, 21, 22, 23, 37, 43, 44, 45, 46, 47, 48, 50, 52, 53, 54, 55, 60, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 78, 83, 85, 88, 90, 92, 94, 97, 99, 103, 104, 107, 118, 119, 125, 130, 140, 145, 149, 152, 153, 154, 156, 164, 166, 169, 173, 176, 177, 182, 184, 185, 186, 187, 192, 194, 195, 199, 201, 202, 203, 205, 206, 208, 215, 233, 234, 237, 238, 239, 243, 246, 249, 250, 257], "exhibit": 5, "print": [5, 10, 11, 26, 47, 48, 53, 56, 69, 77, 90, 92, 94, 96, 97, 101, 105, 107, 108, 120, 129, 149, 162, 164, 167, 179, 181, 184, 185, 208, 228, 229, 237, 240, 243, 246, 248, 249, 250, 251, 253, 257], "altern": [5, 10, 16, 43, 48, 52, 53, 66, 67, 68, 69, 73, 74, 77, 91, 94, 95, 96, 124, 125, 127, 131, 133, 152, 154, 159, 162, 164, 176, 177, 182, 188, 199, 208, 233, 236, 240, 242, 243, 249, 250], "indic": [5, 13, 16, 44, 45, 48, 52, 64, 66, 68, 69, 77, 86, 91, 94, 96, 101, 102, 106, 107, 118, 119, 124, 125, 126, 130, 131, 133, 135, 139, 142, 145, 149, 154, 155, 159, 164, 176, 177, 179, 182, 184, 185, 192, 195, 200, 202, 203, 208, 233, 234, 243, 251, 257], "desir": [5, 20, 43, 45, 48, 62, 66, 68, 69, 71, 74, 106, 118, 125, 147, 152, 153, 162, 174, 177, 182, 184, 201, 205, 219, 234, 240, 243], "5": [5, 6, 8, 11, 17, 26, 46, 47, 48, 58, 59, 60, 68, 69, 71, 73, 77, 79, 94, 97, 119, 121, 128, 135, 154, 164, 182, 184, 192, 202, 208, 213, 234, 236, 237, 244, 246, 250, 253], "7": [5, 11, 48, 52, 58, 59, 63, 77, 94, 154, 184, 199, 228, 236, 244, 250], "restrict": [6, 9, 11, 12, 13, 14, 18, 65, 68, 69, 71, 73, 75, 93, 94, 109, 116, 118, 119, 136, 146, 149, 152, 171, 172, 177, 184, 192, 199, 201, 206, 208, 234, 237, 239], "base": [6, 9, 10, 11, 20, 22, 24, 26, 30, 32, 37, 44, 48, 49, 50, 52, 53, 56, 59, 61, 62, 66, 67, 68, 69, 70, 73, 86, 92, 107, 108, 111, 115, 118, 119, 124, 131, 132, 133, 135, 139, 140, 142, 143, 152, 153, 154, 164, 166, 171, 172, 176, 179, 182, 183, 184, 188, 192, 203, 205, 206, 213, 232, 233, 234, 248, 250, 252, 253], "differ": [6, 10, 11, 12, 13, 14, 15, 16, 17, 20, 22, 26, 44, 45, 47, 48, 50, 52, 58, 60, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 83, 86, 89, 90, 91, 92, 94, 96, 97, 99, 101, 103, 104, 107, 108, 116, 119, 121, 126, 127, 132, 135, 138, 139, 142, 143, 145, 147, 149, 150, 151, 152, 153, 154, 155, 156, 161, 162, 164, 166, 173, 177, 182, 184, 188, 191, 192, 199, 201, 202, 203, 205, 208, 215, 225, 226, 233, 235, 239, 243, 246, 257], "subclass": [6, 10, 26, 43, 44, 45, 47, 48, 71, 90, 91, 92, 96, 106, 108, 118, 119, 127, 131, 147, 150, 152, 153, 154, 164, 166, 173, 177, 179, 184, 192, 199, 201, 202, 203, 205, 208, 214, 236, 239, 244, 247, 257], "byte": [6, 48, 55, 62, 77, 90, 97, 118, 119, 124, 127, 133, 152, 154, 158, 162, 164, 165, 167, 168, 173, 176, 179, 180, 182, 184, 185, 195, 199, 202, 203, 206, 208, 213, 239, 248, 249, 250, 251], "min": [6, 48, 66, 67, 69, 70, 73, 74, 97, 133, 156, 163, 166, 192, 202, 248, 257], "max": [6, 26, 48, 59, 66, 67, 68, 69, 70, 73, 74, 97, 111, 118, 119, 154, 156, 163, 166, 176, 192, 202, 236, 248], "255": [6, 48, 66, 97, 163, 184], "improv": [6, 10, 19, 21, 22, 24, 25, 26, 30, 36, 48, 61, 62, 77, 91, 112, 124, 131, 132, 135, 152, 154, 168, 201, 211, 215, 220, 222, 223, 224, 225, 227, 228, 229, 233, 239, 241, 250, 251, 252, 253, 254, 257], "error": [6, 10, 11, 12, 14, 16, 25, 44, 45, 48, 52, 53, 56, 58, 61, 62, 67, 68, 69, 72, 74, 77, 91, 92, 94, 99, 100, 102, 105, 108, 111, 118, 119, 129, 139, 142, 145, 147, 149, 152, 153, 154, 161, 162, 164, 166, 167, 171, 173, 176, 177, 179, 180, 182, 183, 184, 186, 192, 195, 199, 202, 203, 205, 206, 213, 222, 228, 233, 234, 238, 239, 246, 247, 249, 250, 251, 252], "check": [6, 10, 13, 14, 16, 17, 26, 43, 44, 45, 46, 47, 48, 68, 69, 71, 74, 91, 92, 94, 96, 97, 99, 101, 107, 108, 117, 118, 119, 124, 125, 126, 127, 129, 132, 149, 151, 152, 153, 154, 162, 174, 176, 182, 192, 201, 202, 203, 206, 208, 218, 225, 233, 239, 246, 247, 248, 250, 251], "add1": 6, "b": [6, 11, 13, 14, 26, 48, 56, 59, 60, 68, 80, 88, 107, 117, 118, 121, 123, 147, 149, 154, 164, 173, 179, 184, 185, 198, 201, 202, 205, 206, 214, 237, 243, 251, 257], "b2": 6, "set": [6, 8, 12, 14, 15, 17, 20, 22, 26, 37, 43, 45, 47, 48, 49, 53, 55, 59, 60, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 79, 80, 82, 83, 84, 86, 88, 90, 91, 92, 95, 96, 97, 98, 99, 102, 103, 104, 106, 107, 108, 111, 115, 116, 118, 119, 120, 121, 125, 126, 127, 128, 130, 132, 133, 135, 142, 143, 144, 147, 149, 152, 153, 154, 158, 162, 166, 168, 171, 173, 174, 176, 177, 182, 183, 184, 185, 191, 192, 198, 199, 202, 203, 206, 208, 213, 214, 218, 223, 225, 226, 229, 233, 236, 237, 238, 246, 247, 248, 249, 250, 251], "support": [6, 9, 10, 11, 14, 22, 26, 28, 35, 37, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 58, 61, 62, 64, 66, 67, 69, 70, 71, 74, 77, 79, 80, 84, 90, 92, 101, 104, 106, 108, 117, 118, 119, 121, 122, 123, 124, 125, 126, 130, 131, 132, 133, 135, 136, 138, 140, 142, 143, 144, 145, 147, 148, 153, 154, 162, 170, 173, 177, 184, 185, 186, 192, 194, 195, 198, 199, 200, 201, 203, 205, 206, 207, 213, 217, 219, 223, 224, 227, 228, 229, 231, 233, 234, 237, 238, 239, 242, 243, 246, 248, 249, 250, 255], "depend": [6, 10, 11, 12, 14, 16, 26, 37, 44, 45, 48, 50, 51, 52, 60, 63, 66, 68, 69, 70, 71, 74, 77, 80, 83, 84, 86, 91, 94, 96, 97, 99, 104, 106, 107, 108, 118, 121, 124, 126, 130, 131, 133, 139, 145, 147, 149, 150, 154, 161, 166, 174, 176, 177, 182, 184, 186, 190, 192, 198, 199, 201, 202, 203, 206, 226, 229, 231, 233, 234, 235, 237, 239, 242, 251, 252, 253, 255], "collect": [6, 11, 14, 16, 20, 22, 37, 45, 46, 47, 48, 56, 57, 60, 66, 72, 74, 90, 94, 96, 97, 102, 106, 111, 116, 117, 119, 127, 133, 135, 149, 152, 154, 157, 160, 161, 164, 174, 176, 177, 178, 184, 190, 194, 203, 206, 208, 213, 221, 223, 231, 232, 233, 236, 237, 241, 244, 248, 253, 257], "int": [6, 8, 10, 13, 68, 92, 107, 127, 176, 208, 251], "avoid": [6, 10, 11, 12, 14, 15, 17, 26, 37, 48, 62, 91, 102, 107, 113, 154, 162, 177, 184, 198, 199, 208, 226, 232, 233, 248, 255, 257], "bound": [6, 8, 14, 16, 26, 64, 66, 67, 70, 74, 94, 99, 102, 107, 108, 118, 147, 149, 152, 154, 155, 164, 176, 177, 182, 183, 191, 192, 199, 203, 205, 208, 243, 257], "represent": [6, 10, 26, 43, 44, 48, 69, 70, 74, 90, 94, 97, 99, 106, 108, 116, 118, 119, 122, 127, 129, 133, 138, 154, 156, 163, 164, 166, 173, 177, 179, 184, 192, 199, 202, 208, 248, 249], "float": [6, 10, 12, 60, 69, 70, 77, 118, 124, 149, 152, 164, 171, 177, 192, 193, 201, 213, 219, 239, 242, 246, 248, 250, 251, 257], "point": [6, 8, 10, 12, 16, 19, 20, 23, 26, 43, 45, 47, 60, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 85, 86, 88, 90, 94, 96, 97, 101, 102, 103, 106, 107, 108, 118, 120, 122, 123, 124, 126, 127, 128, 130, 132, 133, 137, 143, 145, 147, 154, 164, 171, 174, 177, 184, 201, 202, 203, 208, 213, 223, 233, 237, 238, 242, 246, 250, 251, 253, 257], "audio": 6, "buffer": [6, 56, 80, 86, 96, 97, 118, 143, 159, 163, 176, 181, 182, 203, 206, 208, 213, 214, 247, 248, 250], "2048": 6, "mix": [6, 14, 73, 154, 198, 241, 257], "input1": 6, "input2": 6, "output": [6, 10, 11, 16, 17, 22, 25, 26, 35, 45, 47, 48, 53, 54, 62, 64, 66, 69, 71, 73, 74, 82, 83, 94, 96, 97, 101, 106, 108, 110, 112, 115, 116, 118, 127, 129, 133, 139, 149, 154, 162, 164, 167, 173, 177, 179, 180, 181, 182, 191, 198, 199, 200, 203, 206, 208, 213, 219, 228, 248, 249, 250, 251, 252, 257], "below": [6, 9, 11, 14, 16, 17, 19, 20, 23, 26, 48, 53, 58, 61, 68, 69, 71, 73, 74, 80, 91, 92, 94, 96, 97, 101, 102, 104, 106, 118, 119, 121, 124, 126, 132, 140, 147, 149, 155, 166, 173, 174, 177, 182, 184, 190, 192, 198, 199, 202, 203, 208, 225, 233, 234, 238, 243, 250, 251, 252, 253, 254, 255], "high": [7, 16, 19, 20, 22, 25, 26, 45, 62, 69, 74, 94, 101, 104, 107, 119, 127, 143, 144, 149, 154, 166, 177, 184, 201, 242, 248, 257], "automat": [7, 10, 14, 17, 20, 26, 37, 44, 46, 47, 48, 52, 53, 60, 62, 64, 68, 69, 71, 73, 74, 85, 88, 92, 94, 96, 97, 99, 101, 102, 103, 114, 119, 127, 130, 149, 152, 153, 154, 164, 171, 182, 184, 192, 198, 208, 211, 217, 240, 243, 248, 249, 250], "resourc": [7, 11, 16, 26, 51, 63, 66, 68, 99, 104, 119, 145, 152, 174, 177, 184, 199, 201, 205, 208, 233, 235], "simplifi": [7, 9, 10, 11, 22, 37, 50, 62, 96, 153, 154, 182, 188, 205, 217, 232, 237, 238, 246, 247, 248, 251, 252, 253, 257], "creation": [7, 26, 28, 37, 48, 67, 68, 69, 74, 118, 127, 133, 152, 173, 174, 177, 184, 191, 199, 203, 225, 237, 252], "adapt": [7, 19, 43, 47, 50, 51, 71, 225, 235, 251], "problem": [7, 12, 19, 20, 41, 52, 53, 62, 64, 71, 91, 94, 96, 98, 102, 111, 118, 127, 130, 133, 139, 142, 145, 152, 154, 173, 174, 177, 184, 191, 198, 201, 213, 219, 222, 224, 225, 227, 233, 237, 238, 239, 240, 243, 250, 251, 252, 253, 254, 255, 257], "domain": [7, 10, 48, 50, 62, 74, 91, 108, 131, 150, 171, 177, 185, 199, 201, 206, 233, 235, 250], "find": [7, 9, 10, 11, 13, 14, 16, 26, 37, 42, 44, 45, 47, 49, 50, 52, 54, 55, 60, 66, 68, 69, 74, 78, 80, 82, 85, 88, 90, 91, 92, 94, 96, 97, 101, 108, 117, 118, 119, 124, 125, 127, 128, 130, 145, 164, 182, 184, 186, 197, 201, 204, 233, 234, 236, 239, 248, 250], "littl": [7, 9, 16, 23, 26, 71, 83, 92, 94, 97, 107, 135, 137, 138, 139, 149, 152, 179, 199, 206, 234, 239, 257], "too": [7, 10, 26, 44, 45, 68, 74, 94, 97, 102, 108, 119, 125, 127, 130, 135, 154, 176, 201, 233, 237, 246, 257], "f1": [7, 17, 23, 25], "here": [7, 8, 10, 11, 12, 13, 14, 16, 19, 20, 21, 23, 25, 37, 43, 45, 47, 52, 58, 59, 62, 68, 69, 71, 74, 79, 80, 83, 86, 88, 90, 91, 92, 94, 97, 99, 101, 104, 106, 107, 108, 111, 119, 125, 130, 131, 135, 137, 139, 140, 145, 152, 154, 164, 184, 191, 198, 212, 227, 232, 233, 235, 236, 237, 240, 241, 243, 248, 249, 253, 257], "long": [7, 10, 11, 12, 13, 14, 23, 26, 44, 45, 48, 68, 69, 70, 102, 107, 108, 118, 139, 142, 143, 147, 182, 197, 198, 200, 201, 208, 211, 232, 233, 235, 240, 243, 248, 249, 250, 251, 257], "arg": [7, 43, 45, 47, 48, 59, 68, 77, 92, 106, 115, 119, 121, 131, 133, 149, 154, 164, 176, 177, 191, 199, 201, 248], "rather": [7, 10, 11, 14, 16, 17, 19, 20, 22, 25, 26, 27, 44, 55, 66, 67, 68, 69, 70, 71, 74, 77, 85, 90, 92, 94, 97, 99, 102, 106, 107, 108, 115, 118, 119, 132, 139, 149, 154, 164, 166, 167, 168, 174, 176, 182, 192, 199, 201, 202, 208, 213, 219, 222, 224, 237, 239, 241, 246, 247, 248, 249, 250, 251], "abl": [7, 10, 11, 16, 22, 37, 43, 44, 48, 68, 90, 91, 94, 96, 99, 102, 103, 106, 107, 118, 119, 127, 128, 131, 147, 154, 173, 174, 176, 184, 198, 199, 211, 223, 226, 232, 233, 237, 238, 246, 250, 251], "iff": [7, 108, 166], "true": [7, 11, 13, 14, 16, 43, 45, 48, 50, 55, 56, 58, 60, 66, 68, 69, 70, 71, 73, 74, 99, 104, 106, 107, 108, 118, 119, 127, 154, 161, 162, 164, 166, 170, 173, 174, 176, 177, 182, 184, 190, 192, 200, 201, 203, 205, 206, 208, 236, 237, 246, 252, 253, 254], "fals": [7, 10, 11, 13, 14, 16, 20, 25, 48, 56, 60, 66, 67, 68, 69, 70, 71, 73, 74, 91, 107, 118, 121, 127, 131, 133, 155, 161, 162, 164, 166, 173, 174, 176, 177, 182, 184, 190, 201, 202, 203, 205, 206, 208, 237, 239, 249, 254, 257], "see": [7, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 25, 26, 30, 37, 43, 44, 46, 47, 48, 52, 53, 55, 61, 64, 66, 67, 68, 69, 70, 71, 73, 74, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 96, 97, 99, 100, 101, 102, 103, 106, 107, 108, 111, 114, 117, 118, 119, 123, 126, 128, 130, 135, 137, 138, 139, 140, 141, 143, 145, 147, 149, 150, 151, 152, 154, 159, 161, 162, 163, 164, 166, 170, 171, 173, 174, 176, 177, 178, 179, 180, 182, 183, 184, 189, 192, 193, 194, 196, 198, 199, 201, 202, 203, 205, 206, 208, 218, 219, 221, 224, 225, 227, 228, 229, 231, 232, 233, 238, 244, 245, 246, 248, 249, 250, 251, 252, 253, 254, 255, 257], "common": [7, 9, 10, 11, 12, 14, 16, 19, 20, 22, 23, 26, 37, 43, 45, 47, 48, 50, 51, 52, 54, 58, 59, 61, 62, 68, 69, 70, 71, 74, 77, 82, 95, 106, 107, 108, 116, 119, 125, 127, 133, 134, 136, 138, 140, 142, 147, 148, 152, 153, 154, 158, 166, 169, 170, 171, 174, 177, 178, 182, 184, 188, 191, 192, 199, 201, 206, 208, 213, 224, 225, 236, 237, 238, 239, 243, 246, 257], "basic": [7, 11, 14, 16, 20, 21, 22, 23, 43, 47, 63, 64, 68, 69, 70, 73, 74, 78, 96, 101, 102, 107, 108, 118, 119, 127, 130, 131, 135, 152, 158, 164, 173, 176, 184, 188, 191, 192, 202, 208, 213, 216, 220, 232, 235, 236, 249, 251], "featur": [7, 9, 14, 15, 16, 22, 23, 24, 26, 32, 37, 43, 48, 49, 58, 59, 61, 62, 66, 67, 68, 87, 92, 94, 97, 98, 99, 101, 102, 103, 108, 111, 122, 131, 139, 143, 144, 147, 149, 151, 152, 153, 154, 161, 165, 179, 182, 184, 201, 206, 208, 225, 226, 228, 232, 233, 238, 242, 244, 246, 250], "system": [7, 9, 10, 14, 16, 17, 20, 21, 22, 24, 25, 26, 37, 40, 43, 44, 45, 47, 48, 50, 51, 52, 53, 61, 62, 63, 66, 68, 69, 70, 71, 73, 74, 77, 78, 86, 92, 94, 95, 96, 97, 99, 101, 102, 103, 106, 107, 115, 116, 118, 119, 124, 125, 126, 127, 129, 135, 139, 140, 141, 142, 145, 148, 150, 152, 154, 164, 167, 170, 172, 173, 174, 177, 178, 179, 180, 183, 184, 188, 196, 197, 198, 199, 201, 202, 205, 208, 213, 219, 220, 222, 224, 225, 226, 227, 231, 232, 238, 240, 243, 246], "articl": [7, 10, 62, 144, 235], "dustin": [7, 11, 61, 110, 239], "voss": [7, 11, 61, 110, 239], "chapter": [7, 16, 17, 19, 22, 23, 24, 25, 26, 43, 44, 45, 46, 48, 49, 51, 52, 53, 64, 66, 67, 68, 69, 70, 71, 73, 74, 90, 91, 92, 94, 95, 96, 98, 101, 102, 108, 119, 149, 150, 152, 154], "drm": [7, 48, 56, 58, 61, 91, 94, 100, 101, 148, 149, 150, 151, 152, 161, 164, 165, 167, 185, 186, 188, 190, 192, 194, 198, 211, 215, 218, 234, 235, 237, 238, 239, 240, 243, 253], "captur": [8, 11, 44, 64, 133, 135, 142, 149, 183, 201], "round": [8, 10, 66, 71, 166, 192], "remaind": [8, 48, 59, 85, 92, 108, 166, 192, 216, 236], "pars": [8, 10, 11, 26, 54, 62, 69, 97, 108, 127, 164, 195, 196, 203, 204, 205, 206, 233, 236, 241, 246, 247, 248, 251], "input": [8, 10, 16, 17, 20, 22, 25, 26, 43, 45, 47, 64, 68, 69, 73, 74, 90, 94, 97, 108, 116, 119, 130, 139, 145, 154, 156, 173, 181, 199, 203, 206, 211, 213, 233, 234, 235, 243, 244, 257], "po": 8, "epo": 8, "123": [8, 161, 190], "blah": 8, "sometim": [8, 10, 11, 13, 14, 26, 52, 69, 73, 74, 85, 94, 99, 102, 116, 118, 133, 135, 139, 143, 173, 174, 177, 184, 201, 235, 241, 246, 257], "known": [8, 10, 12, 13, 14, 16, 26, 69, 70, 74, 77, 91, 107, 108, 116, 118, 119, 121, 124, 125, 131, 143, 149, 150, 153, 154, 173, 174, 176, 177, 190, 199, 207, 208, 235, 243, 244, 249, 251, 252], "want": [8, 10, 11, 13, 15, 16, 19, 20, 23, 26, 43, 45, 47, 48, 51, 52, 54, 55, 58, 63, 64, 68, 69, 73, 74, 80, 85, 88, 90, 92, 94, 96, 97, 99, 101, 102, 103, 106, 107, 115, 117, 118, 119, 121, 130, 132, 133, 137, 138, 139, 142, 144, 149, 153, 154, 164, 173, 174, 177, 185, 186, 191, 192, 197, 198, 201, 203, 206, 232, 233, 234, 238, 239, 243, 246, 248, 250, 257], "bind": [8, 11, 13, 26, 33, 43, 44, 47, 49, 50, 54, 58, 62, 68, 71, 74, 80, 91, 94, 96, 97, 102, 105, 106, 108, 115, 119, 122, 123, 127, 145, 147, 149, 150, 152, 154, 164, 168, 173, 174, 176, 184, 186, 191, 192, 198, 199, 201, 203, 213, 214, 223, 234, 239, 248, 251, 257], "them": [8, 10, 11, 12, 14, 16, 17, 19, 20, 24, 37, 44, 45, 47, 48, 50, 52, 53, 59, 64, 66, 68, 69, 71, 73, 74, 77, 83, 85, 88, 90, 94, 95, 96, 97, 99, 101, 102, 104, 106, 107, 113, 117, 118, 119, 121, 127, 130, 135, 139, 141, 147, 149, 150, 151, 152, 154, 161, 162, 164, 173, 174, 177, 179, 182, 184, 192, 198, 201, 208, 225, 230, 233, 235, 236, 238, 247, 249, 257], "temporarili": [8, 74, 152], "200": [8, 45, 69, 71, 74, 168, 213, 233], "300": [8, 71, 202], "y": [8, 11, 12, 14, 26, 48, 59, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 94, 118, 123, 147, 149, 154, 164, 171, 176, 192, 202, 236, 237, 241, 246, 254, 257], "z": [8, 11, 59, 92, 147, 154, 164, 171, 192, 202, 236, 257], "appli": [8, 11, 14, 26, 29, 43, 44, 45, 48, 52, 54, 55, 58, 59, 60, 64, 66, 67, 68, 69, 70, 71, 73, 74, 78, 86, 94, 95, 106, 107, 118, 119, 125, 131, 133, 149, 152, 154, 159, 164, 173, 177, 184, 192, 198, 201, 206, 208, 233, 236, 237, 243, 246, 250, 251, 252, 257], "trail": [8, 11, 182, 257], "rest": [8, 11, 16, 23, 25, 26, 43, 47, 59, 60, 64, 66, 68, 69, 71, 74, 102, 106, 107, 108, 118, 119, 121, 133, 152, 154, 159, 161, 163, 164, 166, 167, 173, 176, 177, 179, 180, 184, 192, 198, 199, 201, 202, 203, 205, 206, 236, 248, 250, 257], "In": [8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 23, 26, 35, 37, 43, 44, 45, 46, 47, 50, 52, 53, 55, 58, 61, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 79, 81, 82, 86, 90, 91, 92, 94, 96, 97, 99, 100, 101, 102, 103, 106, 107, 108, 111, 113, 117, 118, 119, 121, 123, 124, 125, 127, 130, 131, 132, 134, 135, 136, 137, 139, 143, 145, 147, 149, 150, 151, 154, 159, 164, 171, 173, 174, 176, 177, 184, 185, 189, 190, 191, 192, 194, 195, 197, 198, 199, 200, 201, 202, 203, 205, 207, 208, 213, 220, 235, 236, 237, 238, 239, 241, 242, 243, 246, 250, 251, 257], "extra": [8, 10, 14, 20, 47, 48, 60, 66, 69, 73, 74, 77, 88, 96, 97, 102, 103, 106, 107, 121, 124, 131, 147, 149, 154, 173, 176, 182, 191, 198, 201, 203, 232, 246], "ignor": [8, 13, 15, 20, 26, 43, 47, 48, 52, 54, 68, 69, 71, 73, 74, 94, 96, 97, 99, 101, 106, 115, 117, 118, 119, 145, 154, 159, 161, 164, 177, 182, 184, 192, 198, 200, 201, 202, 206, 233, 236, 237, 243, 248], "miss": [8, 10, 16, 23, 25, 48, 87, 97, 131, 152, 201, 206, 238, 246, 253], "befor": [9, 10, 11, 13, 14, 16, 23, 24, 26, 32, 43, 45, 47, 48, 50, 64, 68, 69, 70, 74, 88, 91, 92, 94, 96, 97, 99, 101, 102, 103, 104, 107, 111, 116, 118, 119, 124, 126, 127, 132, 135, 145, 152, 153, 154, 164, 166, 174, 176, 177, 182, 184, 199, 201, 202, 203, 206, 214, 233, 239, 248, 249], "start": [9, 10, 11, 12, 14, 16, 21, 24, 25, 26, 43, 44, 45, 46, 48, 49, 50, 52, 53, 58, 59, 61, 63, 64, 66, 67, 68, 69, 70, 71, 74, 77, 78, 79, 80, 87, 88, 90, 92, 95, 96, 97, 100, 108, 111, 118, 119, 125, 126, 130, 131, 132, 142, 143, 144, 149, 152, 154, 159, 163, 164, 168, 169, 170, 176, 177, 182, 183, 184, 192, 198, 199, 201, 203, 208, 209, 213, 214, 218, 221, 223, 225, 236, 243, 246, 247, 248, 249, 250, 251, 257], "few": [9, 10, 12, 13, 14, 16, 19, 26, 45, 61, 64, 71, 79, 84, 94, 96, 103, 107, 121, 125, 136, 140, 142, 152, 154, 179, 188, 208, 232, 234, 236, 240, 246], "better": [9, 10, 11, 19, 20, 41, 48, 61, 62, 69, 107, 131, 142, 143, 147, 171, 182, 190, 193, 229, 232, 233, 235, 237, 238, 247, 249, 250, 257], "feel": [9, 10, 11, 19, 22, 26, 43, 45, 68, 74, 111, 117, 135, 219, 221, 225, 238, 239, 246], "past": [9, 17, 23, 25, 26, 35, 42, 68, 69, 74, 96, 97, 142, 182, 184, 232, 233, 246, 247, 257], "playground": [9, 24, 26, 64, 79, 102, 130, 144], "http": [9, 27, 33, 37, 46, 48, 50, 61, 62, 63, 78, 80, 85, 117, 130, 195, 202, 205, 209, 212, 213, 217, 218, 219, 222, 224, 225, 227, 228, 229, 231, 232, 233, 236, 238, 240, 241, 242, 243, 247, 250, 251, 252, 253, 254, 255, 257], "plai": [9, 11, 42, 79, 94, 97, 102, 108, 130, 144, 230], "opendylan": [9, 33, 42, 63, 77, 78, 80, 83, 86, 88, 108, 114, 117, 130, 132, 178, 195, 209, 212, 213, 215, 219, 222, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 238, 240, 241, 242, 243, 248, 249, 250, 251, 252, 253, 254, 255], "org": [9, 42, 48, 50, 61, 62, 63, 78, 117, 130, 195, 202, 209, 212, 213, 219, 222, 224, 225, 227, 228, 229, 230, 231, 232, 233, 240, 250, 251, 252, 253, 254, 255], "hope": [9, 10, 34, 112, 127, 142, 168, 218, 219, 220, 222, 227], "integr": [9, 36, 37, 40, 45, 50, 51, 59, 61, 62, 63, 68, 71, 106, 110, 115, 136, 166, 192, 195, 198, 213, 219, 227, 228, 232, 236, 249, 250], "soon": [9, 16, 68, 90, 107, 118, 119, 134, 147, 183, 184, 217, 225, 232], "easier": [9, 10, 13, 16, 17, 20, 23, 37, 44, 68, 92, 99, 107, 142, 182, 184, 198, 211, 223, 229, 231, 243, 250, 253, 257], "histori": [9, 51, 71, 87, 94, 96, 119, 145, 225, 235, 236, 239, 242, 244, 249], "goal": [9, 10, 14, 19, 22, 48, 61, 62, 72, 122, 143, 144, 181, 192, 201, 232], "help": [9, 10, 11, 16, 17, 20, 23, 25, 26, 34, 37, 43, 44, 46, 50, 51, 52, 53, 54, 61, 63, 68, 69, 73, 74, 78, 84, 87, 94, 96, 97, 99, 100, 101, 102, 123, 130, 154, 164, 209, 211, 217, 220, 221, 223, 232, 233, 238, 250, 257], "read": [9, 10, 13, 14, 16, 17, 19, 21, 25, 26, 43, 44, 46, 47, 48, 49, 54, 58, 60, 64, 66, 68, 69, 71, 77, 83, 86, 90, 92, 94, 95, 96, 97, 99, 102, 104, 108, 119, 120, 125, 127, 145, 150, 153, 154, 158, 176, 177, 181, 182, 183, 190, 199, 201, 203, 206, 208, 219, 225, 232, 233, 237, 242, 250, 251, 252, 253, 254, 255, 257], "otherwis": [9, 10, 11, 12, 13, 18, 26, 37, 45, 48, 56, 59, 62, 64, 65, 66, 67, 68, 69, 70, 74, 75, 77, 93, 94, 101, 102, 109, 113, 118, 119, 136, 146, 153, 154, 155, 159, 161, 162, 164, 166, 172, 173, 174, 176, 177, 182, 184, 192, 201, 202, 203, 206, 213, 233, 239, 241, 251, 257], "free": [9, 10, 12, 14, 18, 20, 46, 48, 50, 64, 65, 68, 69, 74, 75, 93, 101, 108, 109, 117, 119, 127, 146, 147, 152, 153, 154, 172, 174, 176, 177, 184, 199, 221, 225, 233, 237], "go": [9, 10, 11, 19, 20, 21, 23, 37, 46, 47, 52, 53, 58, 62, 74, 77, 87, 88, 90, 91, 92, 96, 97, 99, 101, 102, 104, 106, 107, 118, 130, 132, 138, 139, 141, 143, 145, 153, 161, 173, 176, 228, 229, 231, 233, 237, 238, 243, 257], "hello": [9, 11, 26, 43, 46, 49, 50, 51, 59, 60, 69, 73, 84, 88, 94, 99, 108, 130, 132, 142, 149, 164, 184, 191, 238], "world": [9, 41, 43, 46, 49, 50, 51, 61, 62, 69, 73, 77, 84, 88, 94, 95, 99, 101, 108, 130, 132, 135, 141, 142, 143, 149, 154, 173, 184, 191, 207, 211, 225, 238, 257], "scheme": [9, 14, 44, 66, 94, 122, 123, 135, 143, 144, 152, 153, 184, 192, 201, 205, 208, 213, 233, 237], "lisp": [9, 10, 14, 34, 37, 41, 48, 61, 62, 80, 108, 125, 134, 135, 136, 138, 141, 143, 144, 148, 153, 191, 207, 213, 225, 236, 251], "had": [9, 10, 12, 14, 16, 26, 35, 44, 69, 71, 74, 91, 94, 97, 101, 102, 103, 107, 119, 135, 136, 138, 139, 141, 142, 143, 174, 182, 184, 185, 186, 211, 232, 239, 246, 247, 250, 253, 254], "strong": [9, 23, 153, 161, 174, 177, 197], "influenc": [9, 61, 62], "namespac": [9, 10, 43, 44, 48, 77, 98, 108, 116, 123, 150, 239, 257], "deriv": [9, 43, 48, 68, 90, 94, 101, 102, 104, 116, 118, 133, 152, 154, 171, 172, 239, 247], "clo": [9, 62, 143, 144, 148], "attempt": [9, 11, 16, 19, 20, 26, 44, 53, 62, 66, 68, 69, 70, 73, 91, 94, 97, 108, 118, 119, 132, 135, 140, 143, 149, 154, 162, 170, 177, 182, 184, 199, 203, 208, 213, 233, 236, 237, 240, 243, 247, 248, 251], "address": [9, 19, 48, 71, 77, 91, 97, 103, 104, 118, 120, 125, 126, 154, 163, 164, 172, 176, 184, 205, 208, 220, 222, 233, 237, 239, 243, 248, 249, 250], "potenti": [9, 10, 14, 47, 48, 118, 119, 124, 127, 142, 145, 173, 176, 177, 201, 203, 233, 237], "issu": [9, 11, 12, 16, 19, 26, 45, 48, 71, 74, 80, 94, 97, 98, 102, 103, 118, 130, 142, 164, 213, 215, 219, 222, 224, 227, 233, 235, 237, 238, 239, 244, 246, 248, 250, 251, 252, 253, 254, 255], "introduc": [9, 10, 12, 13, 14, 16, 17, 19, 20, 24, 26, 44, 45, 48, 50, 52, 62, 97, 107, 108, 119, 127, 148, 152, 154, 164, 177, 184, 191, 220, 233, 234, 236, 237, 238, 239, 242, 247, 249], "natur": [9, 10, 11, 22, 24, 26, 44, 48, 58, 69, 71, 94, 137, 166, 171, 177, 184, 202, 233], "limit": [9, 10, 16, 18, 26, 43, 44, 45, 48, 62, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 77, 93, 97, 99, 104, 106, 108, 109, 119, 133, 135, 142, 145, 146, 149, 152, 154, 156, 163, 164, 166, 172, 176, 177, 182, 184, 191, 192, 199, 201, 202, 228, 233, 237, 238, 244, 249, 250, 251], "full": [9, 10, 14, 16, 23, 24, 25, 43, 44, 45, 47, 50, 53, 61, 62, 63, 66, 67, 68, 69, 71, 73, 74, 77, 78, 91, 94, 97, 104, 107, 118, 119, 135, 138, 139, 142, 143, 152, 154, 164, 167, 172, 173, 176, 179, 180, 182, 192, 199, 201, 206, 209, 225, 228, 229, 231, 238, 249, 250, 251, 253, 257], "flexibl": [9, 12, 14, 26, 44, 45, 48, 50, 68, 99, 104, 147, 149, 152, 153, 168, 173, 202, 205, 225], "clearli": [9, 10, 48, 71, 74, 97, 99, 118, 137, 186, 233, 234, 235], "understand": [9, 11, 14, 26, 52, 53, 99, 101, 108, 135, 141, 154, 185, 198, 201, 237], "unit": [9, 11, 48, 64, 66, 69, 71, 73, 74, 101, 108, 116, 118, 126, 150, 154, 177, 202, 243, 247, 251], "e": [9, 10, 11, 26, 48, 59, 67, 69, 80, 86, 87, 92, 108, 111, 116, 118, 119, 121, 123, 124, 125, 133, 149, 164, 171, 172, 173, 176, 183, 184, 200, 202, 205, 220, 233, 238, 239, 240, 243, 250, 251, 257], "multipl": [9, 10, 12, 14, 20, 22, 26, 29, 35, 37, 48, 50, 61, 62, 68, 69, 70, 71, 73, 74, 78, 88, 94, 96, 97, 99, 105, 106, 108, 116, 122, 123, 127, 130, 133, 139, 143, 149, 152, 153, 154, 166, 176, 182, 184, 185, 192, 201, 202, 203, 225, 226, 228, 233, 236, 240, 243, 246, 248, 250, 251, 252, 257], "inherit": [9, 17, 43, 44, 45, 47, 62, 68, 73, 74, 84, 99, 108, 127, 132, 149, 152, 153, 154, 177, 182, 184, 199, 206, 225, 235, 246], "polymorph": [9, 61, 62, 151, 153], "introspect": [9, 11, 33, 94, 115, 177, 204], "pattern": [9, 10, 55, 62, 66, 118, 124, 127, 152, 191, 236, 257], "syntax": [9, 14, 20, 22, 26, 32, 48, 57, 61, 62, 68, 73, 89, 97, 106, 108, 135, 140, 144, 148, 149, 150, 154, 164, 177, 179, 182, 188, 192, 194, 195, 201, 208, 218, 220, 225, 232, 233, 234, 238, 240, 244, 249, 250, 257], "macro": [9, 10, 16, 19, 20, 22, 32, 43, 45, 48, 54, 58, 61, 62, 68, 69, 71, 72, 73, 74, 77, 92, 96, 99, 105, 106, 119, 136, 141, 143, 149, 157, 159, 161, 164, 168, 173, 177, 182, 186, 188, 192, 199, 203, 208, 213, 220, 234, 239, 247, 248, 249, 250, 251, 252, 254], "fine": [9, 11, 20, 71, 139, 144, 149, 224, 225, 227, 228], "grain": [9, 139, 144, 224, 225, 227, 228], "over": [9, 10, 11, 14, 19, 23, 26, 37, 38, 47, 48, 52, 53, 55, 61, 62, 64, 68, 69, 70, 71, 74, 77, 78, 80, 88, 96, 97, 101, 107, 108, 118, 119, 124, 131, 135, 142, 143, 144, 149, 150, 155, 164, 168, 171, 173, 176, 182, 184, 187, 190, 191, 192, 199, 201, 203, 206, 208, 212, 224, 225, 227, 228, 232, 237, 246, 247, 249, 257], "dynam": [9, 10, 15, 26, 29, 50, 51, 53, 59, 61, 62, 66, 68, 69, 71, 73, 74, 90, 92, 99, 102, 104, 107, 108, 116, 118, 119, 121, 124, 125, 126, 127, 131, 136, 137, 140, 141, 142, 143, 144, 148, 154, 164, 174, 182, 198, 201, 206, 208, 218, 224, 225, 227, 228, 246], "occupi": [9, 16, 26, 48, 66, 68, 69, 71, 73, 74], "continuum": 9, "between": [9, 10, 11, 12, 13, 14, 20, 22, 23, 26, 28, 37, 43, 44, 45, 47, 48, 50, 52, 53, 55, 62, 66, 67, 68, 69, 70, 71, 73, 74, 80, 94, 97, 99, 101, 102, 104, 106, 107, 108, 118, 120, 121, 122, 123, 124, 131, 132, 133, 135, 140, 142, 143, 147, 150, 153, 154, 161, 164, 166, 176, 177, 179, 182, 183, 189, 192, 193, 198, 201, 202, 206, 208, 236, 237, 238, 239, 242, 246, 250, 255, 257], "static": [9, 10, 30, 34, 41, 48, 52, 61, 62, 69, 90, 99, 108, 118, 119, 124, 125, 126, 135, 137, 144, 148, 152, 154, 194, 198, 201, 224, 225, 227, 228, 247, 252], "evolutionari": 9, "develop": [9, 10, 11, 15, 16, 19, 20, 22, 24, 26, 27, 41, 44, 46, 47, 48, 50, 51, 52, 53, 54, 62, 68, 69, 74, 78, 84, 91, 97, 98, 100, 101, 102, 103, 106, 108, 116, 118, 119, 120, 127, 134, 136, 138, 139, 140, 141, 143, 164, 165, 198, 199, 212, 213, 225, 232, 233, 235, 249, 251, 252, 254], "rapid": [9, 61, 62], "prototyp": [9, 61, 62, 136, 141, 142, 150, 152, 153], "increment": [9, 14, 26, 45, 62, 94, 95, 102, 104, 119, 131, 173, 176, 177, 192, 233, 249], "refin": 9, "product": [9, 10, 13, 18, 37, 49, 50, 65, 75, 84, 91, 92, 93, 94, 99, 100, 101, 102, 104, 108, 109, 139, 141, 143, 146, 164, 166, 172, 192, 213, 225, 240, 242, 243, 246], "mode": [9, 26, 47, 48, 66, 68, 69, 74, 78, 79, 81, 84, 87, 92, 94, 96, 101, 104, 108, 117, 118, 131, 164, 173, 177, 182, 183, 200, 201, 203, 214, 229, 232, 246, 251], "remov": [9, 10, 11, 17, 19, 20, 23, 25, 26, 45, 48, 55, 58, 60, 66, 68, 69, 70, 74, 80, 91, 92, 94, 96, 97, 99, 101, 104, 106, 107, 108, 111, 116, 118, 119, 125, 127, 142, 155, 159, 161, 164, 173, 174, 186, 192, 195, 196, 203, 205, 206, 208, 219, 234, 236, 238, 239, 243, 246, 248, 249, 250, 251, 253, 254, 255, 257], "increas": [9, 10, 14, 62, 69, 71, 77, 94, 104, 154, 177, 182, 198, 257], "experi": [10, 16, 19, 20, 24, 26, 61, 64, 77, 94, 131, 136, 143, 148, 225, 235, 238, 247], "corba": [10, 46, 48, 51, 54, 61, 252], "idl": [10, 43, 45, 46, 49, 50, 51, 61, 225, 251], "dr": 10, "jason": [10, 47, 61], "trenouth": [10, 47, 61], "origin": [10, 11, 12, 14, 17, 20, 25, 32, 47, 48, 52, 53, 59, 61, 62, 69, 70, 85, 92, 94, 96, 99, 101, 104, 108, 118, 119, 122, 130, 134, 135, 140, 143, 144, 145, 150, 154, 155, 156, 173, 182, 184, 191, 199, 201, 208, 211, 213, 220, 223, 233, 238, 239, 246, 251], "publish": [10, 18, 43, 45, 47, 65, 75, 93, 100, 109, 130, 146, 172, 178, 186, 201, 220, 232, 253], "2001": [10, 61, 62, 143], "been": [10, 11, 13, 14, 15, 16, 19, 20, 22, 23, 25, 26, 45, 47, 50, 52, 54, 60, 61, 62, 64, 68, 69, 71, 73, 74, 77, 85, 90, 91, 92, 94, 96, 97, 99, 100, 101, 102, 103, 106, 107, 108, 111, 112, 118, 119, 124, 126, 127, 130, 131, 132, 135, 139, 140, 142, 143, 149, 153, 154, 161, 164, 166, 173, 174, 176, 177, 183, 184, 185, 186, 190, 198, 199, 201, 208, 211, 213, 215, 217, 219, 220, 222, 223, 224, 225, 226, 227, 229, 231, 232, 233, 235, 236, 237, 238, 239, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255], "live": [10, 12, 70, 73, 94, 99, 107, 118, 119, 138, 140, 141, 143, 154, 197, 213, 233], "through": [10, 11, 14, 16, 19, 24, 25, 26, 45, 48, 50, 66, 67, 68, 69, 70, 71, 85, 90, 94, 97, 99, 101, 107, 119, 125, 127, 132, 133, 137, 143, 145, 151, 154, 173, 174, 176, 182, 184, 192, 197, 201, 202, 220, 236, 237], "It": [10, 11, 14, 16, 17, 19, 20, 23, 24, 26, 36, 37, 43, 45, 46, 47, 48, 50, 53, 54, 58, 61, 66, 67, 68, 69, 70, 71, 73, 74, 77, 80, 91, 92, 94, 96, 97, 99, 100, 101, 102, 103, 104, 106, 107, 108, 115, 116, 118, 119, 121, 124, 125, 127, 128, 130, 131, 133, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 152, 153, 154, 161, 162, 164, 165, 166, 173, 174, 176, 177, 178, 182, 183, 184, 185, 186, 190, 191, 192, 195, 198, 199, 201, 202, 203, 205, 206, 208, 213, 215, 219, 222, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 236, 237, 238, 239, 246, 248, 249, 250, 251, 252, 255, 257], "somewhat": [10, 14, 20, 45, 69, 135, 191, 237], "understat": 10, "great": [10, 37, 43, 45, 61, 62, 88, 128, 164, 173, 174, 220, 223, 225], "deal": [10, 14, 16, 18, 22, 26, 37, 45, 47, 48, 65, 69, 74, 75, 90, 93, 94, 97, 106, 107, 109, 118, 131, 132, 146, 152, 172, 176, 201, 225, 233, 238], "interest": [10, 13, 16, 23, 28, 30, 34, 47, 61, 62, 69, 74, 90, 94, 97, 106, 107, 111, 117, 118, 119, 125, 127, 131, 135, 141, 142, 143, 149, 152, 153, 177, 199, 201, 221, 223, 225, 237, 249], "although": [10, 16, 19, 20, 22, 23, 26, 44, 45, 48, 61, 62, 63, 67, 68, 69, 70, 71, 74, 92, 94, 101, 118, 119, 136, 147, 148, 154, 177, 202, 208, 225, 228, 236, 237], "far": [10, 14, 16, 17, 20, 22, 23, 26, 68, 74, 94, 97, 107, 119, 154, 164, 174, 208, 217, 223, 233, 235, 237, 246], "hype": 10, "goe": [10, 16, 69, 97, 119, 130, 142, 147, 174], "xml": [10, 246, 248, 251], "overshadow": 10, "outsid": [10, 11, 14, 43, 47, 48, 66, 70, 71, 74, 88, 94, 99, 102, 106, 107, 118, 119, 126, 128, 132, 149, 150, 154, 164, 166], "sun": [10, 202], "microsystem": 10, "seen": [10, 12, 14, 16, 17, 20, 24, 26, 37, 48, 52, 68, 69, 71, 77, 90, 94, 97, 99, 102, 135, 147, 153, 159, 224, 249], "pure": [10, 45, 50, 52, 69, 70, 71, 118, 183, 184, 226], "internet": [10, 50, 172, 205, 233], "came": [10, 94, 97, 134, 140, 142, 143, 184], "virtual": [10, 48, 71, 74, 92, 102, 118, 124, 135, 142], "machin": [10, 46, 47, 48, 50, 63, 66, 92, 94, 95, 96, 98, 100, 104, 108, 116, 118, 119, 130, 132, 135, 138, 143, 144, 147, 154, 163, 165, 177, 183, 192, 199, 202, 203, 205, 206, 208, 213, 224, 225, 227, 228, 239, 246, 247, 248, 249, 250, 251, 255], "embed": [10, 20, 73, 94, 154], "web": [10, 30, 42, 61, 95, 114, 117, 135, 199, 205, 225, 230, 232, 233], "browser": [10, 37, 47, 53, 73, 94, 96, 97, 98, 99, 100, 102, 108, 119, 133, 136, 139, 142, 144, 199, 214, 225], "secur": [10, 62, 66, 99, 201], "activ": [10, 16, 17, 20, 23, 25, 26, 37, 42, 43, 45, 46, 47, 68, 69, 74, 80, 97, 98, 103, 107, 118, 119, 125, 130, 139, 177, 199, 201, 206, 233, 250], "dai": [10, 42, 74, 135, 141, 142, 149, 201, 202, 225, 233, 257], "howev": [10, 11, 14, 16, 20, 24, 26, 37, 43, 44, 45, 47, 48, 50, 52, 53, 54, 61, 62, 66, 68, 69, 70, 71, 73, 74, 77, 81, 87, 90, 91, 92, 94, 96, 97, 99, 101, 102, 104, 106, 111, 115, 118, 119, 121, 125, 127, 132, 147, 149, 150, 151, 152, 153, 154, 164, 171, 174, 177, 182, 184, 190, 192, 197, 198, 199, 201, 202, 208, 213, 233, 238, 239, 241, 251, 257], "move": [10, 20, 23, 45, 46, 47, 52, 56, 67, 68, 69, 70, 71, 74, 80, 91, 94, 96, 97, 98, 130, 144, 174, 177, 184, 192, 203, 211, 213, 216, 225, 232, 236, 243, 246, 247, 249, 252], "sort": [10, 11, 16, 19, 20, 26, 44, 47, 55, 60, 66, 68, 69, 71, 74, 90, 94, 97, 102, 104, 107, 108, 111, 118, 124, 130, 145, 149, 154, 184, 186, 197, 234, 236, 249, 253], "perceiv": 10, "reason": [10, 11, 12, 13, 14, 16, 24, 26, 37, 44, 55, 68, 69, 71, 77, 80, 91, 94, 96, 97, 106, 107, 120, 121, 126, 133, 135, 143, 153, 154, 174, 184, 191, 192, 199, 201, 205, 219, 233, 236, 237, 238, 246, 248, 251, 257], "purpos": [10, 12, 16, 18, 19, 20, 26, 27, 28, 30, 31, 32, 33, 36, 38, 39, 40, 44, 45, 48, 50, 62, 65, 68, 71, 72, 75, 77, 92, 93, 97, 101, 104, 107, 109, 118, 119, 121, 124, 127, 133, 146, 147, 154, 172, 177, 180, 182, 192, 201, 208, 238, 244], "enough": [10, 12, 19, 22, 26, 47, 70, 71, 73, 80, 87, 91, 111, 118, 119, 121, 127, 135, 140, 152, 154, 176, 182, 184, 192, 198, 205, 233, 238], "evolv": [10, 12, 61, 62, 143, 232], "jit": [10, 94], "hotspot": 10, "faster": [10, 61, 62, 71, 83, 87, 91, 126, 219, 228, 246, 249], "uml": 10, "design": [10, 11, 14, 16, 17, 21, 22, 24, 25, 26, 43, 44, 45, 49, 50, 61, 62, 66, 67, 68, 69, 71, 74, 96, 104, 105, 106, 118, 121, 123, 125, 127, 137, 139, 143, 144, 148, 152, 153, 174, 176, 177, 198, 201, 202, 203, 208, 224, 225, 227, 228, 233, 238, 239, 242, 243, 244, 246, 251], "ration": [10, 48, 59], "rose": [10, 66], "rigid": [10, 70], "amen": [10, 118], "trip": 10, "engin": [10, 46, 50, 61, 62, 71, 92, 107, 131, 143, 225, 249, 250], "ejb": 10, "server": [10, 26, 43, 44, 48, 49, 50, 69, 74, 98, 118, 130, 162, 173, 197, 201, 203, 205, 217, 247, 255], "bea": 10, "weblog": 10, "background": [10, 66, 68, 69, 71, 74, 135, 137, 144, 162, 177], "servic": [10, 22, 43, 45, 47, 48, 52, 53, 124, 199, 206, 208], "kind": [10, 11, 12, 14, 16, 18, 22, 25, 26, 47, 48, 52, 60, 65, 66, 69, 71, 74, 75, 78, 90, 91, 92, 93, 94, 97, 99, 101, 102, 109, 111, 118, 119, 127, 133, 135, 146, 149, 153, 154, 166, 172, 173, 182, 184, 191, 192, 195, 197, 233, 237, 243], "busi": [10, 16, 46, 47, 177], "what": [10, 11, 12, 13, 14, 16, 19, 20, 23, 24, 26, 37, 43, 45, 47, 48, 50, 52, 53, 59, 60, 61, 64, 66, 68, 69, 70, 71, 73, 74, 77, 78, 85, 88, 90, 91, 92, 94, 97, 99, 101, 106, 107, 108, 113, 117, 118, 119, 121, 126, 128, 130, 131, 135, 137, 138, 140, 143, 149, 153, 154, 164, 171, 173, 177, 184, 186, 192, 200, 201, 203, 208, 213, 238, 249, 250, 257], "up": [10, 11, 12, 13, 14, 16, 19, 20, 22, 26, 37, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 62, 64, 66, 68, 69, 70, 71, 73, 74, 77, 80, 84, 86, 91, 96, 97, 98, 101, 102, 103, 104, 106, 107, 108, 112, 118, 119, 121, 125, 127, 132, 133, 139, 142, 143, 153, 154, 156, 162, 173, 174, 176, 177, 184, 185, 197, 198, 201, 206, 212, 219, 220, 222, 226, 232, 233, 237, 246, 248, 249, 252, 257], "job": [10, 11, 14, 68, 69, 117, 173, 228, 250, 257], "linguist": 10, "fault": [10, 118, 119, 252], "seem": [10, 12, 20, 48, 77, 108, 116, 135, 142, 208, 233, 237, 257], "minor": [10, 14, 99, 101, 104, 118, 130, 246, 250, 253, 254], "own": [10, 11, 14, 16, 19, 20, 22, 24, 26, 27, 37, 45, 48, 50, 54, 64, 68, 69, 71, 73, 74, 77, 90, 94, 95, 99, 101, 102, 108, 114, 116, 118, 119, 127, 130, 139, 145, 147, 149, 150, 151, 154, 173, 174, 176, 177, 182, 184, 198, 201, 206, 208, 221, 232, 236, 237, 239, 243, 254], "awkward": [10, 12, 48, 255], "hard": [10, 11, 14, 20, 26, 61, 64, 69, 104, 106, 108, 135, 137, 142, 143, 213, 219, 234, 239, 243, 257], "born": 10, "compromis": 10, "deliber": 10, "chosen": [10, 14, 16, 19, 66, 69, 70, 71, 74, 92, 94, 101, 145, 184], "reduc": [10, 12, 14, 20, 55, 62, 71, 94, 107, 119, 135, 153, 192, 201, 211, 213, 243, 246, 247, 251, 252], "complex": [10, 13, 14, 20, 22, 26, 45, 50, 59, 62, 69, 71, 73, 83, 86, 96, 121, 149, 153, 171, 192, 238, 241], "But": [10, 11, 12, 14, 37, 47, 91, 92, 94, 95, 97, 101, 102, 103, 107, 108, 111, 118, 119, 127, 135, 140, 145, 192, 197, 236, 239], "whatev": [10, 12, 16, 20, 23, 26, 74, 86, 90, 94, 103, 118, 119, 132, 137, 145, 147, 149, 154, 164, 174, 184, 199, 201, 234, 251], "burden": [10, 232, 257], "adopt": [10, 43, 44, 50, 68, 119, 135, 143, 154, 190, 198, 201, 243], "advanc": [10, 47, 52, 92, 96, 98, 119, 135, 149, 184, 220], "back": [10, 12, 13, 14, 16, 19, 22, 26, 42, 45, 47, 54, 55, 61, 62, 67, 68, 69, 71, 80, 84, 90, 91, 94, 96, 99, 101, 104, 106, 107, 108, 116, 118, 121, 126, 127, 129, 131, 139, 142, 145, 149, 154, 162, 173, 176, 177, 182, 184, 192, 201, 206, 211, 227, 228, 229, 232, 237, 238, 247, 249, 250, 251], "after": [10, 11, 12, 14, 16, 17, 20, 26, 43, 44, 47, 48, 52, 59, 68, 69, 70, 71, 74, 80, 85, 86, 90, 91, 92, 94, 97, 99, 101, 102, 103, 107, 108, 118, 119, 130, 131, 132, 138, 142, 145, 149, 152, 154, 155, 164, 173, 176, 177, 184, 197, 199, 201, 203, 206, 211, 226, 233, 235, 238, 243, 246, 249, 250, 257], "popular": [10, 11, 102, 127, 164, 201], "garbag": [10, 14, 48, 118, 119, 124, 126, 127, 129, 130, 135, 143, 147, 152, 154, 161, 174, 176, 197, 201, 232, 246, 249, 250, 251], "pointer": [10, 23, 48, 68, 69, 73, 74, 77, 88, 94, 96, 97, 118, 119, 121, 124, 125, 126, 147, 149, 176, 194, 208, 250], "probabl": [10, 11, 14, 19, 26, 37, 48, 86, 104, 106, 107, 111, 119, 131, 132, 135, 136, 145, 153, 177, 199, 233, 250, 251, 252, 253, 257], "significantli": [10, 107, 246, 250, 251], "caus": [10, 11, 14, 37, 45, 52, 54, 64, 69, 70, 71, 73, 74, 80, 90, 92, 94, 96, 101, 102, 106, 107, 118, 119, 125, 145, 154, 174, 176, 177, 184, 190, 191, 198, 199, 201, 202, 206, 208, 213, 237, 238, 239, 247, 248, 250, 251, 252, 257], "reliabl": [10, 48, 118, 251], "softwar": [10, 18, 22, 27, 41, 50, 51, 52, 61, 62, 64, 65, 71, 75, 93, 104, 109, 117, 130, 134, 142, 143, 146, 172, 206, 225, 247, 252], "doe": [10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 26, 32, 43, 44, 45, 48, 50, 52, 53, 54, 60, 61, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 91, 92, 94, 96, 97, 99, 101, 102, 103, 104, 106, 107, 108, 113, 117, 118, 119, 121, 124, 126, 133, 135, 136, 142, 145, 148, 149, 154, 161, 162, 164, 171, 174, 176, 177, 182, 184, 185, 186, 192, 197, 198, 201, 202, 203, 205, 206, 208, 213, 226, 233, 234, 235, 237, 238, 239, 241, 246, 248, 251, 257], "step": [10, 11, 14, 16, 19, 20, 26, 37, 45, 46, 47, 50, 58, 62, 68, 69, 71, 83, 88, 92, 97, 98, 99, 103, 120, 127, 130, 132, 164, 176, 177, 192, 223, 238], "sidewai": [10, 133, 218], "m": [10, 14, 37, 48, 77, 80, 85, 101, 102, 106, 107, 116, 123, 135, 138, 142, 149, 154, 164, 166, 179, 183, 184, 202, 213, 214, 237], "propos": [10, 41, 48, 61, 62, 185, 193, 196, 215, 233, 234, 235, 237, 238, 240, 241, 243, 253, 254], "alreadi": [10, 14, 16, 19, 20, 23, 24, 26, 29, 32, 33, 39, 45, 47, 50, 52, 59, 64, 68, 69, 71, 74, 90, 91, 92, 94, 101, 103, 106, 107, 108, 118, 119, 126, 132, 135, 143, 154, 164, 176, 177, 182, 183, 184, 197, 199, 203, 206, 213, 237, 238, 239, 249], "accord": [10, 11, 16, 26, 44, 45, 47, 48, 52, 68, 71, 73, 90, 94, 99, 101, 102, 104, 106, 119, 123, 154, 167, 177, 179, 182, 184, 190, 202, 213, 235], "samuel": 10, "johnson": 10, "alwai": [10, 11, 12, 14, 16, 20, 26, 37, 48, 52, 53, 54, 64, 66, 68, 69, 70, 71, 73, 74, 83, 88, 90, 91, 94, 97, 99, 101, 102, 104, 106, 107, 117, 118, 119, 121, 124, 125, 127, 130, 133, 135, 149, 154, 162, 164, 173, 174, 177, 182, 184, 192, 196, 201, 202, 203, 206, 208, 233, 237, 239, 240, 243, 246, 247, 249, 251, 252, 257], "efficaci": 10, "precept": 10, "examin": [10, 11, 16, 26, 44, 52, 71, 74, 78, 90, 91, 94, 96, 97, 99, 100, 102, 118, 119, 125, 131, 140, 145, 149, 164, 206], "real": [10, 11, 12, 13, 14, 16, 20, 23, 44, 48, 59, 64, 66, 67, 69, 70, 71, 73, 74, 104, 118, 121, 135, 137, 142, 152, 171, 177, 192, 201, 202, 233, 250, 251], "task": [10, 13, 19, 20, 21, 23, 24, 26, 47, 64, 68, 69, 78, 92, 96, 97, 99, 102, 107, 108, 119, 126, 129, 151, 184, 200, 203, 221, 232, 236, 243, 252], "made": [10, 16, 17, 46, 48, 52, 66, 68, 69, 71, 74, 86, 91, 94, 96, 97, 99, 101, 102, 106, 107, 118, 119, 131, 135, 136, 141, 154, 172, 174, 177, 184, 187, 188, 191, 192, 199, 203, 213, 218, 225, 227, 233, 237, 239, 243, 246, 247, 248, 250, 251, 252, 253], "eleg": [10, 142, 151, 153, 191], "year": [10, 68, 130, 135, 136, 142, 143, 201, 202, 213, 221, 225], "ve": [10, 12, 14, 29, 78, 88, 106, 107, 112, 132, 135, 139, 142, 154, 212, 218, 221, 223, 224, 225, 232, 246], "person": [10, 12, 13, 18, 64, 65, 75, 88, 93, 104, 109, 113, 145, 146, 153, 172, 173, 252], "work": [10, 11, 12, 13, 14, 15, 16, 19, 24, 26, 27, 37, 42, 45, 46, 47, 48, 49, 53, 54, 55, 56, 58, 61, 62, 63, 68, 69, 71, 78, 83, 87, 88, 90, 91, 96, 97, 98, 99, 101, 103, 105, 107, 108, 111, 114, 117, 118, 119, 121, 129, 130, 132, 134, 135, 138, 139, 140, 141, 142, 143, 145, 149, 152, 154, 168, 172, 173, 176, 179, 184, 192, 198, 201, 203, 204, 205, 208, 211, 213, 219, 220, 223, 224, 225, 226, 227, 236, 239, 243, 246, 247, 248, 249, 251, 255, 257], "project": [10, 16, 17, 19, 21, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 46, 48, 49, 51, 53, 54, 77, 78, 79, 80, 83, 84, 85, 87, 91, 95, 97, 98, 100, 103, 104, 108, 112, 116, 117, 119, 131, 132, 135, 138, 142, 143, 154, 159, 172, 198, 199, 208, 209, 213, 214, 221, 225, 228, 232, 238, 246, 247, 248, 250, 251], "written": [10, 11, 12, 14, 16, 22, 43, 47, 48, 50, 52, 53, 61, 64, 69, 71, 74, 94, 95, 97, 99, 101, 104, 106, 110, 119, 122, 127, 128, 131, 132, 135, 136, 140, 143, 147, 148, 152, 153, 154, 162, 173, 174, 176, 177, 182, 184, 191, 192, 198, 201, 206, 213, 220, 225, 233, 238, 248], "interfac": [10, 11, 13, 14, 17, 19, 20, 22, 24, 26, 28, 30, 41, 43, 45, 46, 49, 50, 51, 52, 53, 54, 61, 66, 67, 68, 69, 70, 71, 73, 74, 80, 86, 94, 98, 101, 106, 108, 112, 118, 120, 122, 133, 135, 136, 143, 150, 152, 154, 168, 171, 176, 177, 182, 183, 184, 192, 199, 201, 202, 203, 206, 208, 209, 213, 223, 225, 238, 239, 246, 249, 250, 251], "how": [10, 13, 14, 16, 17, 19, 20, 22, 24, 26, 37, 42, 43, 44, 45, 47, 48, 49, 50, 60, 61, 62, 64, 66, 68, 69, 71, 73, 74, 80, 83, 84, 85, 88, 90, 91, 92, 96, 97, 99, 100, 101, 105, 107, 108, 111, 117, 118, 119, 121, 124, 125, 126, 130, 131, 132, 133, 139, 144, 145, 149, 150, 152, 154, 173, 176, 177, 179, 182, 184, 192, 198, 203, 208, 222, 225, 232, 233, 238, 250, 251, 257], "compar": [10, 16, 17, 20, 26, 48, 56, 69, 73, 91, 96, 108, 111, 135, 147, 154, 161, 164, 166, 173, 177, 184, 190, 192, 201, 208, 213, 236, 243], "section": [10, 11, 12, 14, 16, 17, 19, 20, 24, 25, 26, 43, 44, 45, 47, 48, 52, 53, 54, 59, 66, 67, 68, 69, 70, 71, 73, 74, 76, 77, 79, 80, 87, 88, 90, 91, 92, 94, 96, 97, 99, 102, 103, 118, 119, 125, 130, 145, 149, 151, 153, 154, 161, 164, 166, 171, 173, 174, 176, 177, 179, 180, 182, 183, 184, 188, 190, 192, 198, 199, 201, 202, 203, 206, 233, 238, 239, 240, 243, 246, 247, 251], "while": [10, 11, 14, 16, 22, 23, 24, 25, 26, 37, 44, 45, 47, 48, 52, 60, 62, 68, 69, 70, 71, 74, 90, 92, 94, 96, 97, 99, 101, 102, 104, 106, 108, 118, 119, 131, 143, 149, 150, 152, 154, 162, 164, 176, 177, 182, 184, 192, 197, 199, 201, 202, 203, 205, 208, 219, 220, 223, 224, 225, 227, 228, 240, 243, 246, 251], "where": [10, 11, 12, 13, 14, 16, 21, 27, 32, 37, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 55, 62, 66, 68, 69, 70, 71, 73, 74, 77, 80, 82, 83, 88, 90, 91, 92, 94, 95, 96, 97, 99, 101, 102, 103, 104, 106, 111, 118, 119, 123, 125, 126, 127, 128, 131, 133, 145, 152, 154, 159, 162, 164, 170, 174, 176, 177, 184, 191, 192, 197, 199, 200, 201, 202, 203, 205, 206, 208, 211, 225, 233, 236, 237, 239, 241, 243, 246, 247, 250, 251, 254, 257], "contend": 10, "onli": [10, 11, 12, 13, 14, 16, 17, 20, 22, 23, 26, 43, 44, 45, 46, 47, 48, 52, 53, 54, 60, 61, 63, 64, 66, 67, 68, 69, 71, 73, 74, 77, 79, 83, 84, 85, 86, 88, 90, 91, 92, 94, 96, 97, 99, 100, 101, 102, 103, 104, 106, 107, 108, 111, 116, 118, 119, 121, 124, 125, 126, 127, 130, 131, 133, 135, 138, 142, 143, 147, 149, 150, 152, 154, 155, 164, 166, 171, 173, 174, 176, 177, 182, 183, 184, 189, 190, 192, 195, 197, 198, 199, 201, 202, 203, 205, 206, 208, 213, 216, 223, 225, 233, 234, 236, 237, 238, 239, 243, 246, 248, 249, 250, 251, 257], "offer": [10, 15, 16, 20, 47, 53, 74, 94, 96, 99, 101, 102, 103, 141, 145, 170, 177, 179, 182, 201, 203], "partli": [10, 102, 177], "philosoph": [10, 48], "unnecessari": [10, 12, 13, 14, 62, 96, 171, 205], "view": [10, 26, 45, 48, 68, 69, 71, 78, 79, 80, 90, 91, 94, 96, 97, 98, 100, 101, 102, 103, 106, 111, 119, 139, 147, 153, 154, 201, 205, 208, 232], "nearli": [10, 90, 99, 118, 131, 140, 153, 154], "achiev": [10, 16, 19, 48, 91, 124, 127, 134, 143, 154, 177, 190, 201, 243], "composit": [10, 45, 48, 67, 68, 69, 70, 71, 73, 74, 96, 154, 201, 235, 237], "merg": [10, 18, 62, 64, 65, 66, 70, 74, 75, 93, 96, 107, 108, 109, 130, 146, 161, 172, 190, 205, 215, 226, 235, 246, 251, 254], "realiti": 10, "usual": [10, 11, 14, 20, 26, 47, 48, 64, 66, 68, 69, 71, 74, 85, 90, 92, 96, 97, 101, 102, 103, 104, 106, 107, 123, 126, 140, 149, 151, 152, 162, 173, 176, 184, 191, 199, 205, 208, 233, 257], "convert": [10, 16, 47, 48, 53, 58, 69, 74, 77, 92, 97, 99, 101, 105, 106, 107, 118, 123, 124, 127, 135, 143, 154, 161, 166, 171, 179, 184, 185, 198, 201, 208, 211, 234, 237, 243, 246, 250, 257], "textual": [10, 22, 26, 69, 71, 106, 200], "consist": [10, 11, 16, 17, 22, 26, 37, 43, 45, 48, 51, 66, 67, 68, 69, 71, 73, 74, 91, 94, 95, 99, 101, 108, 116, 121, 124, 132, 133, 153, 154, 166, 183, 184, 198, 201, 208, 216, 219, 233, 235, 236, 237, 238, 243, 246, 247], "graph": [10, 41, 48, 69, 105, 106, 107, 116, 122, 137, 150, 173, 174, 200, 213, 235, 249], "abstract": [10, 12, 20, 22, 43, 44, 45, 48, 66, 67, 68, 69, 70, 71, 73, 74, 85, 88, 106, 108, 116, 118, 119, 131, 132, 133, 143, 154, 156, 160, 162, 164, 166, 177, 184, 192, 194, 200, 201, 202, 203, 205, 207, 233, 251, 257], "tree": [10, 33, 62, 69, 73, 74, 80, 90, 94, 97, 108, 111, 133, 173, 198, 208, 233, 241], "ast": 10, "g": [10, 11, 26, 59, 68, 69, 80, 86, 87, 107, 108, 111, 118, 119, 121, 123, 124, 133, 149, 164, 171, 173, 176, 205, 233, 237, 239, 250, 251, 257], "includ": [10, 11, 12, 14, 18, 20, 21, 23, 26, 28, 30, 32, 36, 37, 43, 44, 45, 47, 48, 50, 51, 52, 54, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 75, 83, 85, 88, 90, 92, 93, 94, 95, 97, 99, 101, 102, 103, 104, 106, 107, 108, 109, 112, 117, 118, 119, 121, 124, 126, 127, 131, 132, 137, 139, 140, 143, 144, 145, 146, 149, 152, 153, 154, 155, 161, 164, 167, 172, 174, 177, 178, 184, 189, 192, 193, 196, 197, 199, 200, 201, 202, 203, 205, 208, 213, 224, 225, 227, 228, 229, 231, 233, 236, 237, 238, 239, 240, 242, 243, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257], "suppos": [10, 11, 16, 19, 47, 142, 154, 173, 191, 198, 199, 208], "our": [10, 12, 13, 14, 27, 30, 34, 37, 42, 43, 44, 45, 47, 61, 62, 88, 90, 91, 92, 94, 97, 101, 102, 107, 108, 110, 117, 123, 127, 139, 154, 164, 176, 189, 201, 208, 211, 213, 219, 220, 221, 222, 224, 225, 227, 229, 232, 237, 246, 247, 248], "assum": [10, 11, 14, 24, 26, 43, 45, 48, 51, 52, 63, 64, 68, 69, 71, 73, 74, 83, 85, 88, 96, 115, 118, 119, 127, 132, 145, 154, 162, 176, 177, 184, 239, 248, 250, 251, 254], "parser": [10, 11, 32, 48, 108, 143, 188, 219, 243, 246, 253], "suppli": [10, 11, 16, 17, 20, 22, 23, 26, 44, 45, 48, 52, 54, 64, 66, 67, 68, 69, 70, 71, 73, 74, 92, 94, 96, 97, 99, 101, 102, 104, 106, 118, 119, 121, 145, 149, 154, 155, 164, 176, 177, 182, 184, 186, 192, 198, 199, 201, 202, 203, 208, 234, 236, 239, 241, 250, 251], "u": [10, 11, 12, 16, 27, 34, 37, 42, 46, 47, 61, 62, 91, 94, 97, 99, 101, 102, 107, 117, 119, 123, 132, 133, 139, 143, 145, 149, 154, 164, 166, 176, 177, 202, 213, 219, 221, 222, 223, 224, 225, 227, 228, 229, 231, 232, 237, 246], "alloc": [10, 14, 55, 68, 71, 73, 74, 107, 116, 119, 121, 124, 125, 126, 127, 131, 152, 153, 155, 164, 168, 173, 176, 184, 208, 225, 236, 246, 247, 248, 249, 251], "well": [10, 11, 12, 14, 15, 16, 17, 19, 20, 22, 23, 26, 37, 44, 53, 62, 67, 68, 69, 71, 73, 74, 80, 85, 86, 90, 91, 94, 96, 97, 99, 104, 106, 108, 118, 119, 121, 124, 127, 130, 131, 135, 140, 142, 145, 147, 149, 153, 154, 162, 168, 173, 174, 184, 185, 195, 199, 201, 206, 208, 218, 220, 225, 232, 233, 236, 237, 239, 243, 249, 250], "advoc": 10, "concentr": [10, 22, 45, 201], "detail": [10, 11, 12, 14, 15, 16, 17, 19, 20, 22, 24, 25, 26, 37, 39, 40, 42, 43, 44, 45, 46, 47, 48, 52, 61, 68, 69, 71, 73, 74, 77, 83, 85, 86, 87, 90, 92, 94, 95, 96, 97, 99, 100, 101, 102, 103, 106, 107, 114, 117, 119, 123, 124, 136, 138, 139, 140, 143, 149, 152, 153, 154, 161, 174, 176, 177, 179, 180, 182, 183, 184, 193, 196, 199, 201, 202, 203, 206, 209, 213, 219, 228, 229, 231, 232, 233, 236, 238, 246, 248, 249, 250, 251, 252, 253, 254, 255], "matter": [10, 13, 16, 19, 23, 24, 48, 50, 52, 68, 69, 88, 121, 149, 190, 221, 232], "pair": [10, 11, 13, 16, 17, 26, 48, 59, 60, 64, 67, 68, 69, 70, 71, 77, 84, 118, 119, 131, 133, 135, 152, 154, 161, 164, 182, 184, 197, 207, 239], "oper": [10, 11, 12, 13, 14, 16, 22, 23, 26, 30, 37, 43, 45, 46, 49, 50, 52, 54, 58, 59, 62, 66, 67, 68, 69, 70, 71, 73, 74, 78, 92, 94, 96, 97, 101, 103, 106, 108, 111, 116, 118, 119, 124, 127, 132, 135, 137, 142, 147, 149, 153, 154, 155, 156, 164, 170, 174, 176, 180, 183, 184, 185, 186, 190, 194, 196, 199, 200, 201, 204, 205, 207, 208, 213, 216, 218, 225, 232, 234, 236, 239, 240, 243, 249, 250, 251, 252], "scope": [10, 11, 14, 19, 22, 43, 44, 54, 71, 74, 107, 118, 119, 132, 147, 149, 152, 154, 174, 177, 182, 191, 257], "identifi": [10, 11, 12, 14, 16, 20, 37, 43, 44, 45, 47, 52, 54, 68, 69, 71, 73, 74, 77, 92, 94, 96, 101, 103, 104, 106, 116, 118, 123, 124, 147, 149, 154, 176, 179, 180, 182, 198, 199, 201, 202, 203, 205, 206, 234, 241], "concept": [10, 19, 22, 24, 26, 37, 48, 51, 68, 77, 102, 135, 141, 177, 181, 201, 220], "individu": [10, 11, 12, 16, 17, 19, 20, 23, 26, 48, 67, 68, 69, 71, 73, 92, 94, 97, 118, 150, 152, 177, 179, 182, 184, 201, 202, 208, 243, 251], "togeth": [10, 16, 17, 21, 22, 26, 37, 43, 44, 48, 52, 64, 68, 69, 73, 74, 99, 102, 104, 123, 125, 137, 139, 149, 164, 183, 184, 198, 202, 225, 236, 246], "produc": [10, 12, 14, 16, 22, 26, 43, 44, 47, 48, 52, 62, 66, 67, 70, 71, 74, 86, 94, 99, 101, 107, 127, 143, 161, 173, 179, 182, 184, 199, 202, 225, 243, 249, 250], "down": [10, 15, 20, 23, 26, 45, 48, 53, 66, 69, 73, 74, 83, 90, 91, 94, 96, 97, 101, 103, 106, 108, 118, 119, 135, 138, 139, 153, 198, 199, 213, 229, 246, 251], "associ": [10, 11, 14, 16, 18, 20, 26, 37, 43, 44, 45, 48, 52, 53, 61, 62, 65, 68, 69, 70, 71, 74, 75, 90, 91, 93, 94, 95, 96, 97, 99, 101, 102, 106, 109, 111, 118, 119, 124, 127, 133, 138, 146, 149, 154, 156, 159, 161, 172, 176, 177, 184, 190, 198, 199, 203, 205, 206, 239], "orthogon": 10, "reus": [10, 17, 20, 48, 62, 147, 164, 201, 237], "share": [10, 13, 14, 26, 37, 42, 43, 44, 45, 47, 48, 53, 71, 77, 79, 89, 94, 103, 104, 108, 118, 119, 121, 124, 126, 132, 133, 142, 143, 150, 152, 153, 154, 155, 173, 176, 177, 182, 183, 184, 191, 198, 203, 204, 208, 230, 238, 249, 250, 251], "mainten": [10, 143, 232, 257], "headach": 10, "unfortun": [10, 45, 77, 135, 143, 191, 235, 239, 246], "cannot": [10, 11, 16, 26, 43, 45, 48, 53, 66, 68, 69, 70, 71, 73, 74, 91, 94, 97, 99, 101, 102, 118, 119, 145, 154, 164, 166, 174, 177, 182, 184, 192, 198, 199, 201, 202, 239, 241], "aka": 10, "aggreg": [10, 48, 154, 184], "As": [10, 11, 13, 14, 16, 17, 20, 22, 23, 25, 26, 44, 45, 47, 48, 52, 53, 61, 62, 66, 68, 69, 74, 77, 85, 86, 90, 91, 92, 94, 97, 99, 101, 102, 107, 108, 123, 125, 127, 130, 142, 145, 147, 149, 151, 154, 164, 171, 176, 177, 184, 185, 192, 198, 201, 202, 206, 211, 212, 220, 232, 233, 236, 237, 240, 249], "colleagu": [10, 62], "mine": 10, "put": [10, 11, 12, 13, 14, 20, 26, 30, 37, 48, 52, 54, 68, 74, 80, 83, 86, 92, 97, 101, 102, 107, 108, 115, 117, 118, 119, 130, 135, 149, 159, 176, 177, 213, 221, 232, 236, 240, 243, 250, 257], "off": [10, 14, 20, 26, 48, 61, 62, 69, 71, 91, 94, 101, 107, 119, 142, 143, 145, 149, 154, 174, 182, 257], "next": [10, 11, 12, 13, 14, 16, 17, 19, 20, 23, 25, 26, 44, 45, 47, 48, 52, 53, 54, 60, 66, 68, 69, 71, 74, 77, 80, 87, 91, 92, 94, 96, 97, 99, 101, 102, 103, 107, 108, 118, 119, 121, 123, 130, 135, 137, 138, 139, 149, 151, 152, 154, 159, 164, 173, 174, 176, 179, 184, 186, 192, 201, 203, 208, 213, 215, 227, 233, 234, 237, 247, 248, 251, 257], "stop": [10, 11, 12, 14, 53, 58, 77, 92, 97, 102, 103, 106, 107, 120, 136, 138, 144, 161, 164, 168, 170, 248, 250, 252], "bu": [10, 50], "asymmetri": [10, 71], "messi": 10, "abstractidltyp": 10, "typeinfo": 10, "gettypeinfo": 10, "abstractidlscop": 10, "scopeinfo": 10, "getscopeinfo": 10, "idltyp": 10, "privat": [10, 108, 149, 150, 152, 233], "_typeinfo": 10, "idlmodul": 10, "_scopeinfo": 10, "idlinterfac": 10, "extend": [10, 16, 22, 24, 26, 47, 48, 61, 62, 64, 66, 69, 70, 72, 74, 83, 108, 118, 119, 154, 156, 161, 176, 179, 182, 184, 186, 189, 192, 193, 196, 197, 201, 208, 214, 218, 234, 235, 237], "idlstr": 10, "contrast": [10, 11, 13, 22, 66, 68, 69, 73, 99, 174, 177, 201, 202, 232], "equival": [10, 11, 12, 14, 16, 17, 26, 44, 48, 59, 64, 66, 68, 69, 70, 71, 73, 74, 91, 94, 96, 106, 111, 127, 133, 147, 152, 154, 156, 161, 162, 163, 164, 168, 176, 177, 183, 184, 190, 199, 201, 203, 206, 208, 236, 237, 239, 240, 241, 243, 248], "info": [10, 92, 101, 104, 118, 119, 130, 131, 135, 233], "symmetr": [10, 71, 184], "wherea": [10, 26, 59, 61, 62, 94, 97, 108, 119, 121, 147, 150, 201, 202], "asymmetr": 10, "redund": [10, 20, 205], "advantag": [10, 11, 14, 24, 37, 39, 48, 50, 61, 69, 111, 119, 121, 131, 139, 147, 150, 153, 246], "symmetri": [10, 97, 254], "speed": [10, 34, 41, 71, 74, 99, 142], "eas": [10, 96, 101, 214], "anoth": [10, 11, 12, 13, 14, 16, 17, 19, 20, 26, 27, 32, 47, 48, 50, 52, 54, 55, 58, 61, 66, 68, 69, 70, 71, 73, 74, 86, 91, 92, 94, 97, 99, 100, 101, 103, 106, 107, 118, 119, 124, 125, 135, 137, 138, 139, 140, 145, 147, 148, 149, 150, 151, 153, 154, 164, 174, 176, 177, 184, 191, 192, 198, 199, 201, 202, 203, 205, 208, 213, 226, 237, 243, 246, 257], "drawback": [10, 14], "programm": [10, 12, 14, 15, 22, 26, 48, 50, 51, 61, 62, 64, 66, 68, 70, 71, 73, 99, 135, 143, 147, 149, 150, 152, 153, 154, 177, 182, 184, 186, 192, 208, 220, 234, 243], "awar": [10, 26, 50, 67, 69, 70, 71, 74, 94, 108, 133], "messag": [10, 14, 16, 20, 26, 52, 53, 54, 68, 69, 74, 77, 79, 90, 91, 94, 96, 97, 101, 106, 107, 115, 117, 119, 133, 142, 162, 164, 168, 179, 183, 195, 201, 213, 225, 233, 238, 248, 249, 250, 251], "oo": 10, "never": [10, 11, 16, 20, 53, 64, 91, 94, 97, 99, 102, 106, 107, 117, 118, 127, 135, 139, 142, 143, 145, 147, 154, 164, 173, 177, 182, 184, 189, 201, 206, 233, 237, 239, 246], "tend": [10, 85, 182, 208, 233, 248, 257], "ever": [10, 16, 20, 37, 90, 91, 116, 135, 147, 174, 176, 177], "taken": [10, 13, 32, 44, 47, 48, 61, 62, 68, 73, 90, 91, 94, 97, 99, 101, 107, 119, 127, 154, 166, 174, 176, 184, 237], "awai": [10, 14, 20, 71, 91, 94, 97, 106, 116, 119, 131, 141, 144, 153, 240, 243], "come": [10, 11, 12, 20, 37, 48, 51, 64, 69, 90, 94, 97, 99, 100, 101, 106, 107, 116, 118, 119, 135, 137, 140, 142, 149, 164, 199, 201, 208, 217, 221, 231, 237, 239], "node": [10, 69, 94, 107, 108, 127, 131, 135, 249, 250], "instanc": [10, 17, 19, 20, 23, 26, 43, 44, 45, 47, 48, 53, 55, 59, 60, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 90, 91, 92, 94, 96, 97, 99, 101, 103, 106, 108, 111, 118, 119, 124, 127, 133, 147, 152, 154, 155, 156, 157, 159, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 173, 174, 176, 177, 179, 180, 182, 184, 190, 194, 197, 199, 200, 201, 202, 203, 205, 206, 207, 208, 237, 239, 246, 249, 250, 251], "child": [10, 20, 23, 25, 26, 68, 69, 73, 74, 235, 252], "current": [10, 14, 16, 17, 19, 20, 23, 25, 26, 35, 41, 43, 44, 45, 48, 51, 53, 54, 61, 63, 66, 68, 69, 71, 73, 74, 78, 79, 82, 83, 88, 90, 94, 96, 97, 101, 103, 104, 106, 107, 110, 115, 117, 118, 119, 125, 127, 130, 132, 133, 135, 143, 145, 152, 154, 164, 166, 173, 176, 177, 182, 184, 186, 191, 198, 199, 200, 201, 202, 203, 206, 208, 213, 214, 221, 225, 233, 234, 236, 237, 238, 239, 240, 241, 243, 246, 247, 248, 249, 250, 251, 253, 255, 257], "parent": [10, 26, 47, 68, 69, 73, 74, 101, 108, 125, 149, 173, 177, 184, 203, 205, 206, 248], "ideal": [10, 20, 37, 71, 184, 239], "opportun": [10, 90, 94, 184, 246], "constraint": [10, 26, 48, 62, 67, 69, 73, 90, 106, 108, 121, 127, 164, 177, 190, 191, 237], "legal": [10, 11, 12, 14, 48, 66, 69, 95, 106, 121, 149, 161, 184, 241], "grammar": [10, 48, 233, 241, 242], "attach": [10, 14, 26, 43, 69, 74, 94, 98, 101, 106, 120, 126, 151], "inout": [10, 43, 44, 154], "sens": [10, 12, 13, 14, 19, 64, 70, 90, 106, 149, 164, 177, 202, 233], "onewai": [10, 48], "latter": [10, 32, 48, 68, 71, 73, 92, 111, 119, 148, 152, 173, 176, 184, 208, 235, 239], "best": [10, 11, 16, 17, 19, 48, 61, 62, 63, 69, 73, 91, 92, 94, 99, 106, 107, 130, 132, 133, 136, 140, 141, 176, 186, 190, 208, 233, 234, 246, 251, 257], "dealt": [10, 11, 23, 237], "dure": [10, 11, 46, 48, 52, 68, 69, 70, 73, 90, 91, 92, 94, 97, 99, 102, 104, 106, 108, 118, 119, 125, 127, 154, 164, 173, 174, 177, 191, 199, 201, 203, 213, 220, 225, 229, 233, 246, 250, 251], "addnod": 10, "might": [10, 11, 12, 13, 14, 16, 19, 20, 23, 26, 37, 44, 45, 47, 48, 50, 52, 53, 54, 64, 66, 68, 69, 70, 71, 86, 90, 91, 94, 97, 99, 101, 104, 106, 117, 118, 119, 121, 132, 135, 137, 143, 145, 149, 150, 151, 162, 164, 168, 171, 174, 176, 177, 182, 184, 192, 197, 198, 199, 208, 234, 236, 237, 238, 249, 257], "idloper": 10, "idlobject": 10, "void": [10, 44, 45, 48, 77, 127, 154, 176, 250], "throw": [10, 20, 94, 119, 135, 141, 149], "idlexcept": 10, "instanceof": 10, "idlargu": 10, "dir": [10, 48, 54, 74, 104, 205, 250], "flag": [10, 16, 83, 87, 92, 107, 118, 119, 125, 126, 128, 132, 154, 198, 203, 208, 213, 248, 249, 250, 252], "illegalonewayoper": 10, "constrast": 10, "signatur": [10, 45, 48, 66, 67, 68, 69, 70, 71, 73, 74, 97, 106, 108, 118, 119, 131, 133, 154, 155, 156, 157, 159, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 173, 174, 176, 177, 179, 180, 182, 184, 186, 190, 192, 199, 200, 201, 202, 203, 205, 206, 208, 234, 249, 250], "illeg": [10, 48, 118, 154, 249], "complic": [10, 11, 14, 20, 22, 47, 48, 69, 94, 123, 145, 154, 173, 191, 203, 233, 236, 257], "mechan": [10, 11, 13, 14, 37, 44, 45, 48, 62, 66, 88, 90, 94, 96, 104, 106, 107, 108, 116, 119, 121, 124, 126, 127, 147, 164, 173, 174, 176, 177, 184, 192, 201, 203, 225, 233, 237, 243, 244], "care": [10, 13, 20, 22, 47, 48, 52, 53, 64, 69, 74, 92, 94, 108, 119, 123, 174, 176, 257], "And": [10, 48, 50, 90, 92, 99, 101, 102, 107, 131, 142, 149, 153, 154, 239], "situat": [10, 16, 17, 26, 41, 48, 53, 64, 68, 69, 71, 91, 94, 97, 151, 162, 165, 174, 184, 185, 198, 201, 205, 237, 239, 250], "about": [10, 12, 14, 16, 17, 19, 20, 21, 23, 25, 26, 29, 37, 42, 43, 44, 45, 48, 49, 51, 53, 61, 66, 68, 69, 70, 71, 74, 77, 80, 92, 96, 97, 98, 99, 100, 101, 102, 103, 106, 107, 108, 114, 115, 116, 117, 118, 119, 124, 125, 128, 131, 133, 136, 137, 138, 139, 141, 142, 143, 144, 154, 161, 164, 172, 174, 176, 177, 183, 184, 190, 192, 198, 199, 201, 202, 203, 206, 208, 213, 222, 224, 233, 234, 236, 237, 238, 239, 248, 249], "rais": [10, 26, 43, 44, 45, 48, 68, 69, 74, 90, 94, 97, 106, 118, 171, 176, 184, 192, 205, 233], "protect": [10, 48, 105, 108, 119, 120, 122, 127, 176, 177, 234, 246], "against": [10, 11, 42, 43, 48, 56, 66, 68, 69, 86, 96, 99, 104, 119, 127, 153, 173, 177, 198, 201, 248], "With": [10, 11, 47, 50, 61, 64, 69, 70, 77, 90, 91, 92, 97, 99, 101, 119, 124, 149, 182, 186, 198, 208, 225, 243, 251], "_except": 10, "illegalonewayexcept": 10, "modular": 10, "walk": [10, 31, 135, 173, 191, 198], "backend": [10, 32, 33, 34, 41, 143, 213, 214, 219, 225, 232, 247, 250], "respons": [10, 45, 46, 47, 50, 74, 99, 106, 116, 118, 119, 121, 124, 125, 127, 139, 173, 176, 177, 208, 244, 251], "emit": [10, 91, 106, 107, 108, 119, 126, 127, 131, 182, 213, 243, 246, 249, 250], "stub": [10, 43, 44, 46, 48, 52, 54, 119, 127], "skeleton": [10, 44, 45, 50, 52, 54, 92, 101, 238], "framework": [10, 20, 26, 31, 40, 47, 48, 52, 62, 86, 106, 135, 140, 198, 223, 232, 237, 249], "wrong": [10, 14, 97, 106, 128, 176, 247, 250], "repeatedli": [10, 26, 47, 48, 55, 58, 80, 125, 162, 203], "edit": [10, 17, 23, 24, 25, 26, 30, 34, 47, 53, 68, 69, 74, 80, 87, 90, 92, 94, 95, 96, 97, 99, 101, 102, 115, 130, 132, 139, 152, 153, 198, 208, 233, 235, 240, 243, 250, 257], "core": [10, 11, 61, 68, 85, 101, 108, 115, 117, 118, 119, 127, 154, 206, 208, 224, 225, 233, 234, 246, 250], "Not": [10, 20, 25, 37, 48, 66, 90, 96, 105, 119, 143, 152, 162, 176, 203], "dump": [10, 108, 118, 119, 129, 131, 132, 255], "regurgit": 10, "debug": [10, 11, 37, 43, 48, 49, 50, 52, 63, 68, 79, 84, 87, 90, 92, 97, 98, 99, 100, 102, 104, 106, 107, 118, 120, 129, 131, 132, 135, 137, 138, 141, 142, 164, 177, 182, 201, 213, 229, 247, 248, 252, 254], "visit": [10, 107, 201, 225], "choos": [10, 13, 16, 17, 19, 20, 23, 24, 25, 26, 43, 44, 45, 46, 47, 50, 52, 55, 68, 69, 71, 74, 79, 90, 91, 92, 96, 97, 98, 99, 102, 103, 124, 127, 153, 171, 177, 195, 234, 238, 257], "switch": [10, 20, 43, 48, 54, 69, 80, 90, 94, 96, 97, 99, 119, 140, 208, 235], "recipi": 10, "Its": [10, 11, 44, 71, 173, 184, 190, 192, 229], "callback": [10, 19, 21, 22, 23, 24, 25, 43, 44, 52, 68, 72, 74, 91, 119, 145, 154, 249], "Then": [10, 16, 46, 47, 78, 94, 99, 101, 142, 144, 154, 177, 182, 205], "acceptor": 10, "dumpvisitor": 10, "send": [10, 26, 45, 47, 68, 74, 94, 149, 179, 180, 183, 201, 206, 225, 233, 249], "trampolin": [10, 50, 71, 126, 184], "immedi": [10, 12, 17, 19, 20, 45, 50, 66, 68, 69, 71, 73, 74, 92, 99, 118, 119, 142, 150, 154, 173, 174, 176, 177, 184, 199, 206, 239], "pointless": 10, "lost": [10, 99, 102, 118, 119, 133, 143, 233, 252], "separ": [10, 11, 12, 13, 16, 20, 25, 26, 44, 45, 46, 47, 48, 50, 52, 53, 54, 62, 67, 68, 69, 70, 71, 73, 74, 83, 86, 88, 94, 96, 97, 101, 102, 117, 118, 119, 121, 123, 127, 132, 133, 139, 143, 147, 149, 151, 152, 153, 154, 164, 171, 176, 188, 198, 202, 203, 205, 208, 213, 219, 233, 236, 238, 239, 243, 251, 252, 257], "idlscop": 10, "explicitli": [10, 16, 17, 19, 20, 26, 45, 47, 48, 53, 64, 66, 68, 69, 70, 71, 73, 74, 88, 94, 97, 101, 118, 119, 127, 130, 133, 149, 152, 153, 171, 173, 177, 182, 184, 186, 192, 201, 202, 233, 236, 237, 250], "recod": 10, "hand": [10, 12, 13, 14, 26, 46, 47, 52, 68, 69, 70, 71, 74, 92, 97, 101, 107, 115, 123, 133, 143, 154, 213, 220], "catch": [10, 12, 45, 61, 97, 102, 130, 145, 147, 203, 250, 252], "22": [10, 77, 232, 243], "state": [10, 16, 17, 20, 44, 45, 47, 48, 50, 51, 64, 68, 69, 70, 71, 74, 90, 94, 97, 102, 106, 107, 118, 119, 126, 127, 131, 137, 149, 151, 161, 164, 168, 174, 177, 182, 184, 190, 201, 233, 239, 243, 246, 257], "straightforward": [10, 14, 16, 26, 43, 48, 56, 64, 106, 132, 145, 219], "simpli": [10, 11, 13, 16, 19, 23, 26, 44, 45, 47, 48, 50, 51, 53, 66, 68, 69, 70, 77, 90, 92, 94, 96, 97, 101, 102, 103, 104, 107, 112, 118, 119, 125, 126, 147, 149, 154, 164, 176, 184, 201, 208, 250], "There": [10, 11, 13, 14, 16, 19, 20, 23, 26, 37, 43, 45, 46, 47, 48, 50, 52, 66, 67, 68, 69, 70, 71, 73, 74, 77, 80, 84, 90, 91, 92, 94, 97, 99, 101, 102, 103, 104, 106, 107, 108, 119, 121, 124, 125, 127, 130, 131, 132, 133, 135, 137, 140, 142, 143, 149, 150, 152, 154, 164, 173, 174, 176, 177, 179, 180, 182, 184, 185, 192, 201, 202, 206, 208, 211, 213, 222, 223, 233, 237, 238, 243, 246, 248, 249, 250, 251, 257], "noth": [10, 11, 14, 20, 48, 69, 70, 74, 94, 101, 104, 119, 154, 164, 174, 176, 184, 237, 250], "encod": [10, 16, 30, 43, 45, 74, 124, 154, 173, 184, 202, 238, 240, 243, 251], "moreov": [10, 14, 69], "sub": [10, 11, 20, 68, 107, 108, 124, 125, 142, 177, 205], "bounc": 10, "via": [10, 11, 26, 30, 34, 37, 45, 47, 48, 50, 53, 61, 62, 63, 64, 68, 69, 70, 78, 81, 88, 94, 99, 104, 106, 108, 115, 118, 119, 121, 123, 126, 127, 132, 133, 139, 145, 151, 162, 164, 167, 169, 170, 173, 174, 176, 182, 184, 194, 198, 201, 202, 205, 206, 208, 213, 218, 221, 225, 226, 236, 237, 238, 239, 246, 250, 251, 254], "bottleneck": [10, 29], "summari": [10, 55, 77, 86, 90, 103, 166, 177, 243, 250], "per": [10, 11, 53, 68, 71, 74, 86, 94, 107, 118, 119, 126, 132, 149, 182, 184, 198, 201, 238, 239, 242, 251], "redundantli": 10, "know": [10, 11, 12, 14, 16, 20, 26, 42, 43, 45, 47, 48, 50, 69, 73, 80, 91, 92, 94, 97, 101, 102, 103, 107, 118, 119, 124, 128, 131, 133, 142, 147, 149, 153, 154, 173, 176, 182, 184, 201, 208, 221, 225, 232, 236, 237, 239, 250, 257], "give": [10, 11, 12, 14, 16, 20, 23, 24, 26, 37, 44, 48, 66, 68, 69, 71, 73, 74, 80, 90, 91, 94, 96, 97, 100, 101, 104, 106, 118, 119, 127, 133, 135, 139, 140, 154, 155, 164, 168, 173, 174, 177, 179, 180, 184, 192, 198, 199, 234, 237, 257], "hack": [10, 61, 106, 108, 115, 142, 144, 219, 222, 224, 227, 228, 229, 231, 236], "lie": [10, 66, 71], "intuit": [10, 12, 44, 66, 73, 77, 96, 213, 215, 232, 235, 237], "nightmar": [10, 141], "process": [10, 11, 22, 24, 41, 44, 45, 46, 47, 48, 50, 52, 53, 68, 69, 74, 77, 91, 92, 94, 96, 98, 99, 100, 101, 106, 108, 116, 119, 120, 121, 123, 124, 126, 133, 143, 145, 149, 152, 154, 173, 174, 177, 179, 182, 184, 190, 195, 196, 198, 199, 203, 206, 208, 211, 213, 220, 228, 233, 243, 244, 246, 248, 250, 253], "arithmet": [10, 14, 60, 70, 71, 79, 118, 124, 154, 166, 201, 250, 251], "front": [10, 11, 48, 55, 107, 108, 119, 127], "operand": [10, 164, 166, 201, 241], "binari": [10, 55, 58, 60, 62, 63, 111, 115, 130, 138, 173, 179, 193, 198, 201, 219, 225, 226, 229, 231, 242, 247, 250, 252, 255], "combin": [10, 12, 14, 17, 19, 22, 23, 37, 48, 50, 51, 52, 55, 58, 62, 64, 66, 69, 70, 71, 73, 74, 99, 101, 107, 119, 124, 126, 127, 143, 149, 150, 153, 154, 164, 177, 188, 190, 192, 199, 202, 237, 239, 250, 251, 257], "simplic": [10, 61, 62, 232, 236], "record": [10, 13, 14, 16, 38, 44, 45, 46, 61, 68, 71, 74, 91, 96, 97, 99, 101, 102, 104, 105, 108, 116, 118, 119, 127, 131, 139, 142, 149, 154, 164, 203, 233, 244, 248], "doubl": [10, 12, 16, 26, 47, 48, 53, 55, 63, 69, 71, 74, 77, 90, 92, 94, 96, 97, 102, 118, 124, 152, 171, 176, 177, 185, 192, 196, 199, 201, 226, 239, 240, 243, 250, 251, 257], "To": [10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 24, 25, 26, 37, 42, 43, 44, 45, 46, 47, 52, 56, 67, 68, 69, 71, 73, 74, 77, 78, 80, 85, 88, 90, 92, 94, 95, 96, 97, 99, 101, 102, 103, 106, 107, 108, 111, 112, 115, 117, 118, 128, 130, 132, 133, 142, 145, 147, 149, 150, 151, 152, 154, 161, 162, 174, 184, 189, 192, 194, 199, 201, 202, 203, 208, 218, 232, 233, 235, 239, 241, 243, 246, 249, 250, 252], "distinguish": [10, 11, 26, 37, 45, 66, 68, 71, 74, 77, 94, 99, 119, 127, 154, 173, 182, 184, 201, 206, 208, 234, 255], "store": [10, 11, 12, 16, 23, 44, 45, 46, 48, 52, 55, 64, 68, 77, 89, 90, 92, 95, 96, 99, 101, 102, 103, 106, 107, 108, 118, 119, 121, 124, 125, 126, 127, 131, 133, 147, 152, 154, 159, 162, 173, 174, 176, 177, 201, 202, 203, 208, 246, 247, 252], "numer": [10, 14, 26, 34, 38, 41, 48, 59, 61, 68, 69, 94, 136, 147, 152, 177, 188, 192, 201, 202, 233, 244, 250], "given": [10, 11, 13, 14, 16, 17, 20, 22, 23, 25, 26, 37, 43, 44, 45, 47, 48, 50, 62, 64, 66, 68, 69, 70, 71, 73, 74, 77, 92, 94, 99, 101, 102, 104, 106, 107, 108, 118, 119, 123, 133, 135, 145, 147, 149, 150, 152, 154, 159, 162, 164, 169, 171, 173, 176, 177, 182, 184, 198, 200, 201, 202, 203, 205, 233, 235, 236, 237, 239, 246, 250, 251], "addit": [10, 11, 14, 15, 16, 17, 20, 22, 26, 37, 43, 44, 45, 47, 48, 50, 58, 64, 68, 69, 70, 71, 73, 74, 77, 88, 90, 91, 92, 94, 96, 97, 99, 101, 102, 106, 107, 108, 114, 115, 116, 121, 123, 124, 125, 127, 131, 138, 139, 143, 145, 147, 150, 151, 152, 154, 166, 168, 176, 177, 182, 184, 189, 190, 192, 194, 198, 201, 202, 203, 208, 223, 225, 239, 241, 246, 247, 248, 250, 251, 257], "subtract": [10, 12, 44, 48, 60, 147, 166, 176, 192, 202], "notic": [10, 12, 13, 16, 17, 18, 19, 20, 26, 43, 44, 47, 52, 62, 65, 69, 75, 77, 90, 91, 93, 94, 96, 97, 101, 108, 109, 135, 140, 146, 172, 199, 201, 247], "repetit": [10, 11, 24, 154], "idlexpress": 10, "evaluationerror": 10, "lh": 10, "leftsubexpress": 10, "rh": [10, 106], "rightsubexpress": 10, "char": [10, 48, 56, 59, 77, 92, 97, 127, 176, 184, 201, 208, 236, 249, 257], "op": [10, 182, 202], "longvalu": 10, "doublevalu": 10, "imagin": [10, 71, 96, 140, 145], "ugli": 10, "replic": 10, "realist": 10, "bloat": [10, 197], "wors": [10, 127, 236], "succinctli": [10, 48], "retain": [10, 48, 74, 172, 174, 192, 206, 236], "expr": [10, 11, 177, 257], "left": [10, 12, 19, 26, 47, 48, 52, 53, 60, 67, 68, 69, 70, 71, 73, 74, 96, 97, 108, 118, 123, 124, 133, 138, 145, 164, 166, 174, 176, 179, 184, 211, 232, 233, 234, 236, 243, 249, 251], "subexpress": [10, 12, 108, 116], "version": [10, 11, 12, 13, 14, 20, 24, 25, 26, 41, 46, 47, 48, 50, 53, 54, 62, 68, 70, 73, 85, 86, 89, 90, 92, 94, 95, 96, 97, 102, 104, 106, 108, 116, 118, 119, 125, 130, 132, 139, 141, 142, 152, 153, 164, 173, 176, 177, 184, 192, 201, 203, 206, 208, 213, 219, 225, 226, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 249, 253], "met": [10, 119], "again": [10, 11, 14, 20, 44, 46, 47, 52, 60, 68, 69, 71, 73, 74, 90, 91, 94, 97, 99, 101, 102, 107, 118, 119, 121, 147, 154, 174, 177, 184, 199, 213, 249, 250], "quit": [10, 16, 19, 22, 23, 42, 47, 48, 68, 69, 71, 96, 97, 119, 135, 139, 142, 149, 164, 202, 225, 233, 257], "line": [10, 11, 13, 16, 17, 19, 20, 23, 25, 26, 37, 43, 45, 47, 52, 53, 54, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 74, 77, 78, 79, 80, 87, 89, 91, 92, 95, 96, 97, 100, 101, 102, 103, 104, 106, 108, 115, 118, 119, 132, 133, 147, 149, 153, 154, 164, 176, 182, 192, 196, 198, 199, 200, 202, 206, 208, 209, 213, 219, 233, 236, 237, 238, 244, 246, 250, 251, 252, 253, 254], "By": [10, 13, 14, 20, 22, 26, 43, 45, 47, 48, 52, 53, 54, 68, 69, 71, 73, 74, 90, 91, 94, 96, 99, 101, 102, 103, 104, 119, 150, 152, 154, 174, 177, 184, 192, 201, 203, 250], "split": [10, 14, 26, 69, 116, 118, 139, 164, 208, 233, 236, 251, 253, 257], "wind": [10, 59, 119], "clumsi": [10, 48, 234], "ineffici": [10, 14, 99, 192], "necessari": [10, 16, 17, 19, 20, 22, 26, 43, 44, 45, 47, 48, 52, 68, 69, 73, 74, 77, 82, 86, 92, 94, 95, 96, 99, 100, 101, 104, 106, 117, 118, 119, 121, 124, 127, 130, 133, 154, 164, 173, 174, 176, 177, 182, 183, 184, 198, 199, 201, 202, 229, 231, 233, 236, 237, 239, 241, 246, 247, 248, 249, 250, 257], "evil": 10, "unsaf": [10, 154], "promis": [10, 140], "comput": [10, 14, 16, 22, 26, 36, 50, 62, 66, 68, 69, 70, 71, 74, 91, 94, 99, 103, 104, 105, 106, 108, 116, 127, 131, 134, 135, 136, 143, 153, 154, 164, 166, 169, 173, 177, 190, 197, 198, 205, 208, 235, 238, 239, 248, 251, 257], "becom": [10, 11, 17, 20, 23, 26, 44, 48, 52, 62, 66, 68, 69, 74, 77, 92, 94, 96, 97, 103, 118, 119, 130, 131, 147, 156, 161, 174, 176, 177, 184, 192, 201, 206, 208, 233, 237, 239, 240, 241, 243], "corrupt": [10, 64, 154, 173, 177, 222, 246, 247, 249], "awri": 10, "safe": [10, 13, 16, 24, 43, 48, 53, 62, 64, 68, 74, 102, 127, 135, 154, 174, 176, 177, 180, 184, 201, 203, 244, 248], "runtim": [10, 27, 28, 29, 37, 48, 49, 51, 54, 62, 77, 103, 106, 108, 116, 118, 121, 124, 125, 126, 129, 135, 141, 149, 153, 164, 173, 211, 213, 250, 251], "unfriendli": 10, "behaviour": [10, 118, 119, 235, 237], "safeti": [10, 48, 147, 201, 239, 248], "net": [10, 63, 104, 213, 233], "mistak": [10, 106], "ridden": 10, "harder": [10, 22, 48], "result": [10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 26, 37, 43, 44, 45, 48, 50, 54, 55, 58, 59, 64, 66, 68, 69, 70, 71, 74, 91, 92, 94, 96, 99, 106, 107, 111, 118, 119, 121, 125, 126, 131, 133, 135, 136, 137, 143, 145, 147, 149, 152, 154, 155, 156, 161, 163, 164, 166, 167, 168, 171, 173, 174, 176, 177, 179, 182, 183, 184, 185, 190, 191, 192, 195, 198, 199, 202, 203, 205, 208, 220, 233, 234, 236, 237, 239, 241, 243, 246, 247, 248, 249, 250, 251, 253, 257], "exactli": [10, 14, 16, 20, 26, 45, 47, 52, 54, 67, 68, 69, 70, 71, 73, 94, 97, 103, 108, 119, 143, 152, 154, 155, 164, 166, 174, 182, 192, 201, 208, 233, 237, 238, 257], "extract": [10, 11, 30, 37, 45, 63, 68, 95, 107, 120, 149, 154, 191, 204], "layer": [10, 22, 37, 46, 48, 64, 66, 71, 94, 99, 104, 118, 122, 176], "protocol": [10, 16, 26, 43, 44, 45, 46, 48, 50, 52, 53, 54, 64, 66, 67, 68, 70, 71, 72, 73, 74, 85, 91, 97, 106, 108, 111, 118, 119, 143, 154, 157, 173, 179, 181, 187, 202, 203, 205, 213, 214, 243, 255, 257], "data": [10, 14, 18, 20, 21, 23, 30, 32, 38, 45, 46, 48, 55, 62, 65, 74, 75, 77, 93, 97, 106, 107, 108, 109, 111, 115, 116, 118, 120, 124, 126, 127, 131, 132, 139, 143, 145, 146, 149, 152, 153, 154, 163, 172, 173, 176, 177, 179, 182, 183, 184, 195, 197, 199, 203, 207, 208, 225, 233, 240, 243, 248, 249, 251], "incredibli": 10, "certain": [10, 11, 20, 22, 26, 68, 69, 70, 73, 74, 94, 119, 139, 152, 153, 154, 174, 192, 197, 203, 233, 239, 242, 252], "context": [10, 12, 17, 20, 26, 45, 48, 66, 68, 69, 71, 73, 74, 97, 99, 102, 106, 108, 116, 118, 120, 133, 147, 168, 174, 177, 191, 199, 201, 203, 208], "arrai": [10, 14, 20, 55, 66, 118, 124, 152, 154, 176, 192, 239, 246, 248, 251], "idlconst": 10, "resolveidentifi": 10, "intvalu": 10, "resolv": [10, 37, 45, 47, 52, 94, 96, 118, 119, 126, 149, 199, 205, 229, 235, 250, 251], "mismatch": [10, 50, 97, 108, 147, 153, 201, 250, 251, 254], "detect": [10, 16, 52, 53, 61, 62, 64, 74, 91, 96, 102, 106, 127, 132, 162, 176, 177, 182, 184, 199, 201, 251], "signal": [10, 44, 45, 48, 50, 64, 66, 67, 68, 70, 74, 77, 91, 94, 99, 105, 111, 118, 119, 154, 164, 167, 171, 173, 177, 182, 184, 192, 201, 203, 205, 206, 208, 234, 239, 246, 247, 249, 250, 251, 252, 257], "site": [10, 42, 62, 95, 96, 107, 108, 114, 117, 131, 232, 233, 251], "re": [10, 14, 16, 20, 21, 24, 42, 44, 45, 48, 55, 68, 77, 80, 85, 87, 88, 91, 92, 97, 99, 101, 103, 104, 106, 107, 108, 117, 119, 131, 132, 142, 143, 149, 150, 158, 162, 164, 165, 173, 174, 176, 177, 184, 192, 197, 199, 206, 208, 211, 212, 213, 221, 223, 225, 232, 233, 242, 246, 247, 249, 250, 251, 257], "fact": [10, 12, 13, 14, 16, 17, 19, 20, 43, 44, 47, 48, 58, 64, 69, 91, 97, 99, 102, 125, 131, 135, 136, 139, 147, 149, 191, 198, 233, 236, 237], "expect": [10, 11, 13, 14, 23, 24, 37, 44, 45, 47, 48, 68, 69, 77, 90, 94, 96, 97, 101, 103, 104, 106, 107, 116, 118, 119, 121, 127, 130, 154, 155, 164, 171, 177, 197, 199, 201, 221, 233, 243, 250, 251, 254], "suffici": [10, 68, 70, 103, 107, 119, 127, 164, 184, 237, 250], "pai": [10, 16, 55, 62, 173], "elsewher": [10, 11, 26, 47, 52, 90, 106, 153, 177, 197, 236], "seal": [10, 39, 44, 48, 62, 66, 68, 69, 70, 73, 74, 91, 99, 106, 108, 116, 118, 119, 131, 152, 153, 154, 155, 159, 161, 163, 164, 166, 169, 171, 177, 179, 180, 184, 192, 199, 202, 203, 205, 234, 237, 250], "constrain": [10, 20, 26, 48, 69, 73, 91, 108, 164, 177, 237, 246], "lack": [10, 11, 39, 62, 119, 143, 153, 177, 225, 239], "preprocessor": [10, 49, 52], "forward": [10, 17, 44, 48, 68, 74, 90, 92, 99, 107, 111, 137, 173, 184, 187, 201, 213, 221, 233, 249, 251], "condition": [10, 106, 127, 177], "final": [10, 13, 14, 16, 19, 20, 21, 32, 37, 43, 45, 47, 59, 66, 68, 73, 74, 84, 92, 94, 102, 104, 105, 108, 119, 122, 123, 126, 130, 136, 145, 149, 165, 175, 177, 184, 188, 190, 192, 198, 201, 208, 213, 219, 233, 235, 242, 243, 244, 251], "benefit": [10, 48, 99, 101], "typic": [10, 13, 14, 19, 22, 26, 37, 44, 46, 47, 50, 62, 68, 69, 73, 74, 94, 101, 102, 104, 106, 108, 127, 132, 133, 149, 150, 151, 152, 153, 154, 159, 162, 168, 174, 177, 184, 197, 198, 205, 206, 233, 238, 250], "done": [10, 12, 14, 16, 17, 26, 29, 32, 34, 48, 53, 58, 69, 70, 71, 85, 90, 91, 92, 99, 101, 107, 108, 115, 116, 118, 119, 125, 126, 130, 133, 135, 137, 140, 142, 143, 149, 154, 162, 174, 176, 208, 212, 225, 232, 233, 255], "enabl": [10, 17, 22, 25, 26, 47, 50, 61, 62, 68, 69, 74, 90, 94, 101, 102, 115, 118, 126, 127, 131, 142, 154, 174, 182, 218, 223, 226, 227, 232, 251], "port": [10, 52, 60, 66, 68, 73, 74, 76, 129, 135, 136, 198, 199, 201, 205, 225, 247], "across": [10, 17, 22, 26, 47, 48, 50, 52, 69, 86, 90, 97, 100, 101, 107, 116, 118, 127, 138, 198, 246, 257], "platform": [10, 14, 22, 23, 50, 61, 62, 66, 68, 69, 71, 74, 77, 82, 84, 88, 104, 124, 126, 127, 129, 130, 136, 141, 142, 143, 154, 168, 170, 177, 180, 183, 184, 198, 201, 203, 205, 206, 213, 223, 225, 228, 229, 232, 240, 243, 246, 247, 248, 250], "turn": [10, 11, 14, 16, 19, 20, 22, 43, 46, 48, 52, 53, 69, 70, 74, 77, 80, 83, 91, 94, 97, 99, 101, 104, 106, 107, 118, 119, 126, 127, 135, 142, 143, 149, 150, 151, 152, 153, 182, 186, 190, 239], "cross": [10, 66, 74, 80, 82, 84, 129, 135, 143, 147, 173, 189, 213, 214, 223, 224, 225, 240, 243, 247, 248], "portabl": [10, 14, 16, 45, 47, 50, 51, 61, 62, 66, 71, 74, 86, 101, 106, 122, 176, 177, 192, 205, 239, 251], "fix": [10, 14, 50, 53, 61, 66, 68, 69, 70, 73, 74, 80, 91, 98, 99, 100, 102, 107, 111, 117, 119, 121, 125, 130, 131, 135, 139, 142, 144, 152, 179, 184, 202, 213, 218, 219, 222, 223, 227, 229, 232, 233, 235, 249, 250, 251, 252, 253, 254, 257], "unreach": [10, 174, 199], "manipul": [10, 14, 26, 45, 46, 48, 61, 62, 68, 69, 71, 73, 74, 94, 96, 99, 107, 127, 133, 154, 184, 202, 204, 205, 236, 239], "ordinari": [10, 20, 44, 45, 52, 94, 97, 154, 184, 208], "place": [10, 11, 17, 20, 26, 42, 45, 47, 48, 52, 54, 68, 69, 73, 74, 82, 83, 86, 89, 91, 92, 94, 96, 97, 99, 101, 102, 104, 107, 118, 119, 126, 132, 133, 135, 154, 164, 177, 183, 184, 199, 201, 202, 206, 208, 219, 233, 236, 238, 247, 251, 257], "substitut": [10, 14, 45, 62, 201], "templat": [10, 11, 20, 92, 101, 143, 152, 232, 243], "fill": [10, 26, 39, 40, 48, 55, 59, 66, 68, 69, 71, 73, 74, 101, 108, 154, 163, 164, 176, 177, 182, 184, 201, 236, 237, 246, 247, 251, 257], "notat": [10, 13, 14, 94, 97, 153, 164, 182, 192, 198, 250], "smart": [10, 133], "encapsul": [10, 22, 45, 48, 71, 74, 145, 154, 201], "extern": [10, 37, 63, 96, 104, 108, 118, 119, 122, 153, 154, 173, 176, 184, 198, 199, 250], "ones": [10, 14, 17, 71, 101, 107, 117, 166, 176, 205, 233, 250], "verifi": [10, 99, 130, 149, 201, 233, 239, 251], "reproduc": [10, 50], "human": [10, 66, 199, 236], "reader": [10, 19, 51, 64, 105, 143, 243], "indent": [10, 26, 69, 117, 133, 181, 182, 225, 250], "One": [10, 11, 14, 20, 26, 67, 68, 69, 71, 73, 94, 96, 106, 107, 111, 127, 131, 137, 143, 145, 154, 182, 184, 199, 203, 206, 213], "pretti": [10, 14, 30, 37, 56, 60, 105, 107, 108, 132, 181, 211, 225, 249, 257], "printer": [10, 37, 66, 71, 107, 133, 182, 197], "account": [10, 42, 43, 45, 46, 53, 69, 74, 117, 154, 174, 182, 192, 197, 237, 250], "page": [10, 26, 28, 34, 43, 46, 47, 52, 53, 61, 72, 73, 74, 91, 92, 94, 96, 97, 98, 99, 102, 103, 104, 111, 114, 119, 120, 130, 135, 136, 139, 143, 149, 154, 161, 164, 167, 177, 190, 201, 222, 228, 229, 231, 233], "width": [10, 26, 48, 66, 67, 68, 69, 70, 71, 73, 74, 133, 154, 173, 179, 182, 184, 200, 236], "heurist": 10, "blown": [10, 23, 138, 143, 173], "much": [10, 11, 14, 15, 16, 17, 19, 20, 22, 23, 24, 26, 37, 43, 45, 47, 48, 55, 66, 68, 69, 71, 73, 74, 80, 83, 90, 91, 94, 99, 106, 107, 115, 119, 131, 132, 133, 135, 137, 140, 142, 143, 145, 147, 152, 154, 182, 191, 194, 197, 208, 211, 219, 220, 225, 229, 231, 232, 233, 241, 246, 247, 249, 250, 251], "emitt": [10, 176], "realli": [10, 14, 16, 17, 25, 26, 68, 69, 94, 107, 108, 118, 133, 137, 154, 191], "argu": 10, "compon": [10, 17, 20, 22, 26, 37, 46, 48, 50, 51, 52, 61, 62, 64, 66, 68, 69, 70, 74, 92, 101, 104, 116, 118, 119, 120, 127, 133, 140, 154, 182, 190, 198, 202, 203, 205, 247, 251, 252], "someth": [10, 11, 12, 14, 20, 26, 30, 37, 42, 58, 69, 80, 92, 97, 99, 102, 104, 106, 107, 117, 118, 119, 128, 130, 142, 143, 145, 147, 149, 154, 177, 197, 198, 203, 208, 233, 237, 243, 246, 257], "track": [10, 14, 53, 55, 94, 97, 106, 108, 119, 133, 139, 154, 170, 229, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 251, 252], "o": [10, 14, 16, 17, 23, 25, 28, 33, 37, 48, 56, 60, 68, 69, 71, 101, 104, 108, 118, 123, 127, 132, 133, 135, 136, 142, 143, 150, 154, 164, 166, 167, 176, 177, 179, 183, 184, 185, 198, 201, 205, 206, 207, 219, 220, 222, 223, 225, 237, 246, 249], "stream": [10, 16, 25, 43, 47, 60, 66, 71, 92, 97, 106, 116, 138, 159, 164, 167, 173, 177, 178, 179, 180, 181, 182, 183, 199, 204, 205, 206, 213, 224, 229, 239, 247, 248, 249, 257], "insert": [10, 11, 20, 26, 45, 48, 52, 68, 69, 73, 90, 91, 94, 96, 97, 102, 108, 119, 133, 135, 154, 176, 182, 184, 201, 208], "whitespac": [10, 48, 54, 73, 117, 147, 195, 196, 236, 243], "told": [10, 90, 97, 135], "less": [10, 12, 14, 16, 24, 26, 43, 48, 60, 66, 67, 68, 69, 71, 99, 118, 123, 135, 139, 151, 154, 169, 171, 176, 177, 184, 192, 195, 198, 201, 202, 208, 213, 217, 225, 236, 237, 246, 249, 250, 251], "demand": [10, 69, 99, 118, 119, 135], "brace": [10, 94, 97], "around": [10, 11, 12, 13, 14, 16, 20, 26, 28, 47, 48, 61, 68, 69, 70, 71, 73, 77, 92, 96, 107, 108, 125, 127, 136, 138, 144, 145, 154, 164, 168, 177, 182, 184, 192, 208, 233, 234, 235, 243, 247, 248], "nest": [10, 11, 13, 16, 26, 44, 48, 64, 74, 94, 107, 108, 139, 145, 153, 154, 182, 250, 257], "wrap": [10, 11, 16, 48, 68, 69, 73, 92, 96, 97, 107, 124, 154, 162, 168, 182, 184, 200, 213, 225, 235, 236, 249], "util": [10, 26, 43, 47, 92, 118, 120, 149, 164, 184, 208, 236], "dumpnam": 10, "dumpinherit": 10, "dumpbodi": 10, "finish": [10, 14, 26, 46, 47, 52, 71, 80, 92, 94, 96, 101, 102, 103, 108, 125, 139, 145, 174, 177, 184, 213, 233, 257], "decreas": [10, 69, 182, 213, 237], "intefac": 10, "trick": [10, 11, 15, 233], "block": [10, 11, 13, 14, 16, 25, 43, 45, 48, 58, 59, 74, 96, 105, 106, 118, 119, 126, 127, 132, 133, 152, 161, 168, 174, 176, 177, 182, 184, 192, 199, 203, 206, 213, 237, 247, 257], "rememb": [10, 11, 16, 20, 26, 52, 69, 71, 90, 99, 101, 119, 142, 174, 222, 240, 243], "ourselv": [10, 47], "won": [10, 61, 63, 85, 107, 121, 133, 174, 218, 234, 257], "connect": [10, 16, 18, 19, 45, 46, 47, 65, 66, 67, 68, 69, 71, 74, 75, 92, 93, 94, 96, 99, 102, 103, 109, 116, 119, 120, 146, 164, 172, 174, 199, 206, 247], "anonym": [10, 11, 14, 94, 149, 154, 201], "inner": [10, 11, 14, 107, 177, 184], "exdent": 10, "begin": [10, 11, 12, 13, 14, 16, 19, 20, 25, 26, 43, 45, 47, 48, 59, 60, 64, 68, 94, 96, 97, 99, 101, 102, 103, 107, 118, 119, 126, 137, 142, 147, 154, 164, 177, 182, 184, 196, 199, 201, 203, 208, 225, 233, 246, 257], "strang": [10, 138, 142], "fatal": [10, 74, 106], "cope": 10, "spot": 10, "delimit": [10, 48, 68, 108, 184, 195, 196, 240, 243, 250, 253], "cost": [10, 12, 99, 164, 184, 192, 250], "demonstr": [10, 17, 19, 23, 24, 26, 37, 43, 45, 58, 61, 62, 74, 79, 94, 102, 147, 173, 198, 238], "denot": [10, 26, 48, 68, 70, 73, 74, 91, 94, 97, 118, 119, 192], "coupl": [10, 46, 94, 97, 106, 132, 133, 145, 227, 247], "administr": [10, 46, 47, 96], "similarli": [10, 12, 14, 16, 20, 26, 37, 44, 48, 52, 59, 68, 69, 99, 106, 124, 126, 154, 191, 208], "expand": [10, 11, 32, 47, 69, 72, 90, 94, 96, 97, 102, 104, 105, 119, 135, 139, 143, 149, 154, 177, 186, 191, 203, 246], "balanc": [10, 43, 44, 45, 46, 111, 153, 237], "possibl": [10, 13, 14, 16, 23, 26, 29, 48, 53, 61, 62, 66, 68, 69, 71, 74, 88, 90, 91, 92, 94, 96, 97, 99, 103, 106, 107, 118, 119, 121, 123, 124, 127, 133, 135, 138, 139, 141, 142, 145, 147, 149, 152, 154, 164, 174, 176, 177, 184, 185, 190, 192, 198, 199, 201, 202, 203, 206, 226, 233, 234, 236, 237, 238, 239, 248, 250, 257], "termin": [10, 14, 45, 68, 74, 92, 94, 99, 101, 102, 106, 119, 154, 162, 164, 174, 176, 177, 182, 184, 201, 206, 208, 250, 251, 257], "yet": [10, 16, 17, 19, 20, 23, 25, 37, 44, 46, 48, 77, 92, 94, 97, 102, 105, 106, 107, 110, 115, 117, 118, 119, 127, 130, 132, 139, 140, 143, 153, 162, 174, 177, 184, 197, 206, 225, 246, 250], "bulk": [10, 26, 77], "continu": [10, 13, 26, 48, 59, 68, 69, 71, 74, 90, 92, 94, 97, 99, 106, 107, 119, 120, 125, 127, 135, 143, 147, 176, 182, 199, 232, 233, 238, 243, 255, 257], "reset": [10, 16, 26, 74, 91, 119, 126, 147, 162], "advent": 10, "non": [10, 11, 12, 14, 20, 22, 23, 26, 44, 45, 48, 49, 50, 58, 66, 69, 70, 71, 74, 80, 94, 97, 104, 107, 118, 119, 125, 126, 127, 135, 140, 154, 155, 164, 166, 173, 174, 176, 177, 182, 184, 200, 201, 202, 203, 205, 206, 208, 234, 239, 243, 246, 248, 249, 250], "local": [10, 11, 12, 13, 14, 16, 20, 26, 45, 48, 52, 53, 58, 59, 60, 62, 74, 83, 92, 96, 98, 103, 105, 108, 118, 119, 121, 125, 126, 127, 130, 145, 147, 154, 173, 174, 176, 177, 191, 198, 199, 202, 203, 208, 219, 232, 248, 253], "exit": [10, 12, 17, 20, 23, 25, 43, 45, 46, 47, 58, 68, 73, 74, 77, 78, 79, 92, 94, 101, 102, 103, 105, 108, 118, 119, 122, 126, 145, 154, 164, 176, 177, 182, 184, 199, 203, 206, 208, 213, 228, 246, 250, 251, 252, 257], "techniqu": [10, 11, 16, 19, 20, 26, 45, 71, 98, 101, 103, 127, 139, 143, 145, 149, 153, 164, 173, 201, 237, 243], "boilerpl": [10, 11, 84, 88], "cleanup": [10, 59, 94, 97, 107, 118, 119, 125, 127, 145, 152, 174, 176, 177, 184, 199, 203, 213, 240], "remain": [10, 14, 17, 20, 43, 44, 48, 52, 66, 68, 70, 73, 74, 86, 91, 92, 94, 96, 101, 107, 118, 119, 125, 126, 131, 141, 142, 143, 145, 149, 174, 182, 192, 213, 255], "degre": [10, 66, 69, 70, 100, 201], "expos": [10, 11, 30, 66, 67, 68, 69, 70, 71, 73, 74, 118, 119, 197], "linkedlist": 10, "arraylist": 10, "dumpcolon": 10, "getinherit": 10, "hasnext": 10, "dumpcomma": 10, "knew": [10, 91], "index": [10, 14, 58, 66, 69, 74, 91, 92, 107, 118, 119, 154, 156, 163, 164, 166, 173, 176, 184, 192, 201, 205, 233, 236, 246, 251, 257], "slightli": [10, 13, 16, 20, 23, 71, 94, 106, 119, 154, 161, 190, 199, 208], "ninherit": 10, "isfirst": 10, "didn": [10, 37, 143, 153, 219, 250], "power": [10, 14, 22, 48, 58, 61, 62, 108, 139, 151, 152, 153, 171, 191, 192, 225, 238], "old": [10, 42, 48, 66, 68, 69, 74, 105, 117, 123, 135, 136, 142, 143, 154, 159, 176, 177, 203, 208, 212, 213, 215, 216, 219, 223, 224, 232, 234, 237, 246, 248, 249, 252, 255, 257], "fashion": [10, 66, 77, 90, 99, 101, 147, 149, 152, 174, 201], "length": [10, 14, 26, 48, 59, 61, 66, 69, 70, 71, 118, 119, 144, 154, 156, 179, 182, 198, 201, 202, 203, 206, 208, 213, 240, 243, 251], "cover": [10, 24, 26, 48, 66, 68, 94, 103, 118, 154, 184, 199, 220, 248], "custom": [10, 19, 26, 44, 46, 50, 92, 95, 98, 99, 100, 129, 147, 152, 176, 198, 226, 239, 250], "loop": [10, 11, 14, 16, 20, 22, 26, 64, 68, 69, 74, 92, 94, 107, 108, 119, 125, 138, 177, 191, 192, 199, 236], "behind": [10, 13, 24, 48, 118, 164, 202, 225, 226, 237], "scene": [10, 226], "colon": [10, 11, 12, 88, 94, 97, 108, 143, 250], "comma": [10, 11, 20, 68, 73, 80, 108, 133, 195, 198, 233], "bit": [10, 46, 48, 55, 60, 61, 62, 63, 66, 77, 83, 87, 89, 92, 94, 107, 108, 115, 118, 124, 132, 135, 137, 138, 142, 149, 154, 158, 164, 166, 176, 184, 192, 198, 199, 201, 203, 206, 211, 213, 219, 222, 224, 225, 227, 229, 231, 243, 246, 247, 250, 251, 252], "drag": [10, 69, 74, 92, 139], "rebind": [10, 147], "claus": [10, 11, 13, 14, 16, 17, 20, 23, 26, 48, 74, 92, 97, 107, 145, 154, 177, 184, 187, 192, 201, 237, 241, 257], "interfer": [10, 119, 152, 154, 177], "facil": [10, 14, 15, 16, 19, 22, 44, 45, 48, 50, 62, 68, 74, 94, 97, 100, 101, 102, 103, 118, 119, 126, 127, 154, 167, 169, 170, 177, 183, 184, 188, 192, 202, 203, 205, 249, 251], "wish": [10, 16, 17, 19, 20, 22, 23, 24, 26, 37, 48, 51, 52, 53, 63, 64, 68, 69, 71, 73, 74, 79, 94, 96, 101, 103, 119, 164, 174, 176, 192, 199, 201, 202, 233], "kept": [10, 48, 99, 108, 119, 141, 154, 197, 257], "propag": [10, 99, 107, 108, 139, 192, 198], "rare": [10, 26, 48, 64, 68, 69, 106, 107, 124, 145, 150, 152, 164, 184, 257], "respect": [10, 11, 14, 16, 18, 23, 26, 43, 45, 48, 52, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 93, 97, 99, 102, 103, 104, 106, 109, 125, 131, 143, 146, 153, 164, 166, 172, 176, 177, 192, 202, 225, 237, 248], "stai": [10, 14, 70, 101, 116, 164, 192], "invest": 10, "hasn": [10, 14, 198], "1995": [10, 12, 13, 14, 15, 18, 25, 47, 62, 65, 93, 109, 122, 134, 136, 146, 172], "peopl": [10, 12, 14, 30, 61, 130, 142, 145, 221, 225, 232, 233, 234, 243, 248, 249, 250, 251, 252, 253], "thought": [10, 37, 61, 66, 71, 118, 127, 141, 143, 154, 184, 237], "mainstream": [10, 61, 62, 143], "peak": 10, "widespread": 10, "Of": [10, 11, 26, 71, 94, 103, 121, 127, 131, 199, 238], "cours": [10, 11, 19, 58, 64, 69, 71, 80, 91, 94, 103, 121, 127, 208, 225, 237, 239], "were": [10, 11, 13, 14, 16, 20, 26, 37, 45, 50, 53, 56, 61, 62, 69, 71, 73, 90, 91, 92, 94, 96, 97, 99, 101, 102, 104, 107, 108, 118, 119, 121, 125, 135, 137, 139, 140, 142, 143, 149, 151, 154, 164, 165, 172, 177, 179, 182, 184, 199, 201, 206, 208, 220, 225, 229, 232, 233, 238, 246, 247, 249, 251], "detractor": 10, "de": [10, 11, 119, 154, 176, 252], "facto": [10, 11], "standard": [10, 14, 16, 17, 20, 22, 23, 24, 37, 43, 44, 45, 47, 48, 49, 50, 52, 53, 54, 58, 59, 61, 62, 66, 68, 69, 74, 80, 86, 90, 92, 94, 96, 101, 103, 106, 119, 121, 132, 133, 140, 147, 149, 150, 154, 161, 162, 164, 167, 171, 173, 176, 177, 180, 181, 182, 184, 190, 192, 194, 195, 200, 202, 203, 206, 208, 213, 216, 225, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 247, 248, 249, 250, 251, 257], "On": [10, 14, 19, 26, 42, 47, 48, 63, 66, 69, 71, 77, 82, 89, 92, 101, 104, 106, 107, 115, 116, 121, 125, 130, 132, 135, 139, 154, 162, 176, 177, 198, 203, 205, 206, 213, 219, 222, 224, 227, 246, 247, 248, 249, 251], "fring": 10, "smalltalk": [10, 135, 225], "gain": [10, 26, 47, 48, 50, 52, 62, 153, 176, 192, 250], "currenc": 10, "pun": 10, "area": [10, 26, 52, 61, 62, 66, 69, 70, 71, 74, 96, 97, 107, 124, 125, 131, 154, 173, 176, 177, 198, 201, 208, 225, 233, 241, 257], "establish": [10, 45, 50, 103, 104, 107, 145, 182, 184, 197, 199, 201, 247, 249], "nich": 10, "r": [10, 26, 48, 60, 80, 92, 118, 130, 135, 136, 137, 138, 139, 141, 142, 143, 149, 154, 166, 184, 185, 196, 214, 232, 240, 243], "swept": [10, 67], "asid": [10, 12, 117, 152], "shop": 10, "jump": [10, 80, 87, 107, 118, 121, 214, 238, 247, 255], "bandwagon": 10, "latest": [10, 96, 130], "commerc": 10, "com": [10, 11, 27, 33, 42, 46, 62, 80, 85, 98, 117, 130, 195, 199, 205, 208, 213, 218, 233, 238, 240, 241, 242, 243, 250, 251, 252, 253, 254, 255], "competit": 10, "energet": 10, "game": [10, 56, 91, 96, 102, 238], "budget": 10, "bring": [10, 12, 44, 46, 50, 52, 94, 103, 143, 154, 221, 225, 232, 237], "frame": [10, 19, 21, 22, 23, 43, 45, 48, 64, 69, 72, 73, 74, 77, 90, 97, 101, 107, 119, 120, 121, 125, 145, 164, 176, 249], "held": [10, 23, 74, 147, 154, 174, 177, 184], "mediocr": 10, "everyon": [10, 69, 85], "herd": 10, "shore": 10, "present": [10, 11, 16, 20, 26, 32, 43, 45, 46, 47, 48, 52, 62, 68, 69, 73, 74, 79, 86, 90, 92, 94, 97, 99, 101, 102, 106, 107, 108, 113, 118, 119, 125, 133, 138, 149, 173, 174, 177, 179, 185, 192, 197, 199, 214, 233, 235, 236, 238, 246, 249], "larger": [10, 11, 26, 37, 66, 70, 74, 97, 99, 102, 133, 164, 236], "organis": 10, "duti": 10, "ensur": [10, 11, 16, 19, 20, 22, 26, 45, 46, 48, 52, 68, 69, 73, 74, 90, 92, 99, 103, 104, 107, 108, 111, 118, 124, 125, 126, 127, 130, 132, 154, 173, 177, 182, 184, 198, 199, 201, 203, 205, 208, 243, 248], "surround": [10, 11, 12, 20, 26, 48, 69, 133, 147, 233, 244, 250, 251, 252, 253], "cloud": 10, "document": [10, 11, 12, 13, 16, 17, 18, 19, 20, 24, 25, 26, 28, 34, 37, 41, 43, 44, 50, 59, 64, 65, 68, 69, 74, 75, 77, 78, 83, 84, 85, 92, 93, 94, 96, 101, 102, 104, 106, 107, 109, 110, 115, 116, 117, 118, 119, 125, 129, 130, 131, 132, 135, 142, 143, 146, 148, 154, 164, 166, 168, 171, 172, 174, 177, 178, 179, 180, 183, 184, 185, 188, 190, 192, 195, 205, 206, 208, 214, 217, 220, 222, 224, 227, 229, 233, 238, 240, 241, 242, 243, 244, 249, 253, 254, 255, 257], "diagram": [10, 11, 30, 73, 118, 203, 233], "ultim": [10, 53, 94, 119, 125, 137, 176], "ask": [10, 20, 26, 42, 47, 73, 94, 96, 97, 99, 101, 102, 130, 144, 233], "21st": 10, "centuri": 10, "thank": [10, 47, 102, 226, 233, 250, 251, 252, 253], "carl": [10, 233, 236, 238, 240, 242, 243, 250, 251, 252, 253, 254], "l": [10, 43, 48, 59, 77, 88, 123, 132, 135, 198, 206, 239], "gai": [10, 233, 236, 238, 240, 242, 243, 250, 251, 252, 253, 254], "hugh": 10, "green": [10, 11, 26, 66, 68, 91, 94, 97, 102, 145, 161, 162, 164, 250], "scott": [10, 118, 143, 235, 257], "mckai": [10, 118, 143, 235], "feedback": [10, 62, 69, 131, 232, 233, 246], "draft": [10, 44, 47, 48, 130, 233, 238, 239, 241, 244], "copyright": [10, 12, 13, 14, 15, 21, 25, 47, 72, 84, 98, 101, 178, 222], "1999": [10, 62, 109, 146, 185], "inc": [10, 18, 25, 47, 50, 51, 65, 93, 109, 136, 172, 234, 257], "reserv": [10, 12, 13, 14, 15, 25, 26, 47, 48, 53, 68, 73, 172, 199], "brand": [10, 18, 65, 75, 93, 109, 146, 172], "regist": [10, 18, 26, 43, 45, 48, 49, 52, 53, 65, 69, 75, 92, 93, 104, 107, 109, 116, 118, 120, 122, 125, 127, 132, 143, 146, 154, 164, 172, 173, 176, 199, 201, 206, 213, 225], "trademark": [10, 18, 65, 75, 93, 109, 146, 172], "owner": [10, 16, 17, 20, 25, 26, 68, 69, 74, 97, 149, 150, 152, 206, 233], "author": [11, 18, 25, 37, 47, 59, 65, 69, 73, 74, 75, 93, 101, 104, 109, 130, 143, 146, 172, 203, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244], "d_j_v": 11, "me": [11, 26, 68, 106, 135, 138, 257], "shorthand": [11, 14, 56, 70, 191, 241], "within": [11, 16, 17, 20, 22, 26, 37, 39, 43, 44, 45, 47, 48, 50, 67, 68, 69, 71, 73, 74, 77, 78, 79, 82, 85, 89, 92, 94, 95, 97, 103, 106, 108, 118, 119, 121, 123, 124, 125, 126, 127, 131, 132, 135, 138, 143, 145, 149, 152, 154, 162, 164, 168, 174, 176, 177, 179, 182, 184, 185, 189, 195, 198, 201, 203, 205, 206, 211, 219, 227, 232, 233, 236, 237, 243, 244, 246, 247, 248, 250, 251, 257], "seri": [11, 13, 23, 26, 56, 61, 68, 70, 71, 73, 101, 119, 163, 167, 184, 198], "gui": [11, 16, 17, 19, 20, 22, 26, 37, 46, 49, 50, 64, 68, 69, 71, 73, 74, 79, 92, 94, 119, 135, 138, 140, 143, 150, 208, 225, 247], "fast": [11, 29, 55, 62, 99, 119, 130, 250], "gloss": 11, "inform": [11, 15, 17, 19, 20, 23, 24, 25, 26, 27, 30, 39, 43, 46, 47, 48, 50, 53, 54, 62, 68, 69, 71, 73, 74, 77, 78, 87, 90, 91, 92, 94, 96, 97, 99, 102, 103, 104, 106, 107, 108, 116, 118, 119, 121, 124, 125, 127, 128, 131, 141, 143, 145, 147, 149, 150, 153, 154, 161, 173, 174, 182, 183, 184, 186, 191, 198, 199, 201, 204, 205, 208, 215, 224, 227, 228, 229, 231, 233, 238, 239, 244, 248, 249, 250, 251, 252], "basi": [11, 30, 44, 47, 67, 69, 71, 74, 77, 94, 101, 106, 118, 143, 154, 173, 184, 239], "onc": [11, 12, 14, 16, 20, 22, 23, 26, 37, 45, 46, 47, 53, 64, 69, 70, 71, 74, 88, 90, 91, 94, 96, 99, 103, 106, 108, 112, 115, 118, 119, 127, 133, 139, 147, 150, 154, 161, 162, 164, 174, 177, 182, 184, 191, 198, 199, 201, 203, 233, 246, 249], "arrang": [11, 22, 26, 52, 66, 69, 71, 73, 74, 90, 94, 101, 119, 139, 154, 159, 176, 177, 192, 199, 247], "recogn": [11, 50, 52, 54, 99, 154, 201, 208, 251], "invoc": [11, 45, 50, 54, 77, 92, 104, 119, 149, 184, 246, 251], "affect": [11, 16, 48, 50, 64, 66, 69, 71, 73, 74, 91, 92, 94, 99, 119, 145, 150, 154, 174, 177, 182, 234, 235, 237, 239, 240, 241, 243, 251], "treat": [11, 12, 14, 16, 22, 26, 37, 44, 67, 94, 97, 106, 143, 151, 154, 164, 197, 200, 201, 203, 252], "opaqu": [11, 48, 66, 71, 208], "elementari": [11, 45], "upon": [11, 12, 19, 22, 37, 45, 47, 74, 85, 91, 94, 96, 118, 119, 143, 151, 152, 173, 177, 184, 199, 203, 208, 235], "35": [11, 48], "552": 11, "cinnamon": 11, "compris": [11, 22, 23, 46, 68, 69, 74, 99, 119, 154, 164, 184, 201, 239], "entir": [11, 13, 17, 20, 26, 37, 68, 69, 70, 73, 77, 91, 94, 95, 96, 97, 99, 101, 106, 115, 118, 119, 130, 139, 145, 153, 182, 184, 198, 202, 206, 233, 236, 238, 251], "pull": [11, 34, 85, 117, 130, 167, 198, 226, 233, 235, 253], "discard": [11, 45, 68, 71, 118, 154, 166, 184], "placehold": [11, 185, 201, 239], "content": [11, 12, 16, 20, 21, 22, 26, 27, 34, 43, 46, 47, 52, 60, 66, 68, 69, 71, 72, 73, 74, 77, 88, 90, 92, 94, 96, 97, 98, 99, 101, 118, 127, 149, 154, 156, 159, 173, 178, 179, 184, 199, 203, 213, 232, 233, 240, 243], "correspond": [11, 12, 13, 14, 26, 37, 43, 44, 45, 48, 52, 55, 56, 59, 64, 66, 67, 68, 69, 70, 71, 73, 74, 80, 92, 94, 96, 101, 104, 106, 107, 108, 116, 118, 119, 121, 122, 124, 137, 140, 149, 152, 154, 164, 166, 168, 173, 174, 176, 177, 190, 192, 198, 199, 201, 205, 206, 208, 236, 237, 248, 250, 257], "happen": [11, 12, 14, 16, 20, 37, 52, 66, 69, 77, 91, 94, 97, 107, 108, 119, 125, 128, 135, 137, 143, 145, 154, 164, 176, 177, 184, 199, 203, 207, 220, 227], "scan": [11, 71, 119, 127, 176], "word": [11, 12, 13, 14, 26, 48, 59, 60, 66, 69, 71, 77, 92, 96, 108, 118, 132, 136, 137, 145, 147, 149, 154, 163, 165, 176, 177, 192, 199, 206, 208, 213, 225, 233, 234, 236, 239, 243, 246, 248, 249, 250, 251, 254], "discuss": [11, 14, 15, 16, 19, 23, 26, 37, 42, 61, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 94, 95, 97, 99, 100, 101, 106, 127, 130, 131, 133, 143, 152, 154, 155, 156, 159, 161, 162, 164, 166, 167, 168, 169, 170, 174, 176, 177, 179, 180, 182, 183, 184, 186, 190, 192, 198, 199, 200, 201, 202, 203, 205, 206, 207, 208, 233, 235, 248], "further": [11, 21, 26, 29, 43, 46, 48, 49, 70, 74, 77, 86, 91, 94, 97, 101, 102, 118, 119, 123, 124, 125, 127, 131, 136, 142, 147, 152, 153, 154, 164, 168, 176, 184, 197, 215, 218, 223, 225, 232, 237, 246], "ht": 11, "whenev": [11, 16, 20, 22, 23, 26, 45, 68, 69, 74, 90, 92, 94, 101, 103, 119, 121, 124, 127, 130, 147, 154, 164, 174, 176, 177, 182, 184, 201, 203, 237, 241, 252], "6": [11, 26, 45, 46, 47, 48, 53, 59, 60, 63, 69, 77, 79, 91, 94, 100, 104, 184, 185, 202, 213, 220, 235, 237, 238, 244, 247, 257], "8": [11, 48, 54, 56, 63, 66, 69, 74, 77, 95, 107, 108, 118, 125, 135, 136, 164, 176, 184, 203, 208, 240, 243, 244, 251, 253, 254], "13": [11, 77, 92, 107, 202, 222, 232, 234, 237, 241, 242, 243, 250], "titl": [11, 20, 23, 25, 26, 68, 69, 74, 195, 201, 233, 244], "symbol": [11, 12, 13, 16, 20, 23, 25, 26, 48, 59, 60, 68, 69, 74, 77, 92, 94, 99, 102, 108, 111, 120, 124, 126, 133, 135, 143, 147, 152, 159, 168, 173, 177, 179, 199, 201, 203, 205, 206, 225, 226, 237, 241, 243, 249, 250, 251, 255], "light": [11, 66, 91, 225, 232], "four": [11, 12, 16, 17, 23, 26, 48, 53, 66, 67, 68, 69, 70, 71, 90, 94, 97, 102, 139, 166, 184, 202, 213], "most": [11, 12, 13, 14, 16, 19, 20, 22, 23, 24, 26, 29, 42, 43, 44, 48, 50, 51, 52, 53, 58, 59, 62, 64, 66, 68, 69, 70, 71, 73, 74, 77, 86, 90, 92, 94, 96, 97, 99, 100, 102, 104, 106, 107, 111, 115, 118, 119, 124, 126, 127, 132, 135, 139, 140, 143, 145, 151, 152, 153, 154, 164, 166, 174, 176, 177, 182, 184, 192, 199, 201, 202, 203, 208, 213, 216, 223, 233, 236, 237, 239, 240, 241, 243, 246, 250], "dep": [11, 185, 193, 196, 219, 232, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 246, 250, 253, 254], "002": 11, "pi": [11, 171], "commonli": [11, 14, 16, 19, 20, 26, 55, 58, 62, 66, 68, 69, 74, 77, 106, 107, 118, 154, 159, 184, 198, 202, 208, 235, 250], "manag": [11, 19, 20, 21, 22, 23, 24, 26, 34, 41, 43, 44, 45, 46, 47, 50, 51, 52, 61, 68, 69, 73, 74, 84, 89, 91, 94, 101, 104, 105, 116, 118, 124, 127, 131, 140, 141, 143, 152, 154, 174, 176, 177, 184, 201, 203, 208, 213, 225, 226, 231, 232, 252], "parenthes": [11, 14, 135, 145, 153, 191, 241], "setup": [11, 46, 80, 119, 236, 238], "bracket": [11, 12, 48, 60, 102, 133, 154, 184, 195, 208, 241], "plu": [11, 48, 68, 69, 70, 82, 97, 123, 137, 147, 152, 176, 182, 192, 202, 222, 232, 233, 239], "aux": [11, 191], "ruleset": 11, "afterward": [11, 107, 108, 145, 174, 176], "semicolon": [11, 12, 80, 88, 94, 108, 195], "special": [11, 12, 13, 14, 22, 23, 26, 43, 44, 45, 47, 48, 59, 61, 62, 66, 67, 68, 69, 70, 71, 72, 73, 74, 77, 80, 90, 91, 92, 94, 98, 101, 106, 108, 111, 115, 118, 119, 122, 123, 124, 127, 132, 136, 137, 139, 149, 151, 152, 162, 164, 166, 173, 176, 177, 179, 180, 182, 184, 186, 201, 202, 203, 205, 208, 214, 225, 234, 237, 238, 239, 243, 248, 249, 250, 257], "enclos": [11, 12, 13, 43, 44, 48, 94, 154, 164, 195, 198, 205, 208], "none": [11, 13, 16, 26, 60, 64, 66, 69, 70, 71, 91, 92, 94, 104, 107, 118, 151, 154, 184, 225, 234, 237, 238, 243, 248], "close": [11, 44, 45, 46, 62, 66, 67, 68, 69, 70, 71, 74, 78, 94, 97, 99, 101, 103, 107, 108, 118, 119, 124, 137, 141, 145, 149, 173, 176, 182, 192, 195, 199, 203, 208, 243, 257], "parenthesi": [11, 80, 257], "tri": [11, 12, 64, 73, 91, 97, 103, 106, 108, 119, 184, 201], "fail": [11, 16, 17, 20, 25, 26, 43, 68, 69, 92, 97, 118, 119, 127, 130, 131, 142, 154, 164, 176, 177, 199, 203, 206, 246, 247, 248, 249, 251, 257], "backtrack": 11, "earlier": [11, 13, 19, 20, 47, 48, 63, 66, 94, 97, 99, 119, 143, 149, 150, 177, 185, 192, 202, 249], "highest": [11, 233], "surpris": [11, 14, 147], "side": [11, 16, 20, 26, 43, 47, 48, 55, 58, 68, 69, 71, 74, 92, 95, 96, 108, 118, 119, 123, 127, 149, 154, 177, 192, 211, 234, 236, 239, 246, 249, 257], "strictli": [11, 16, 62, 94, 106, 127, 239, 257], "decor": [11, 68, 119], "mind": [11, 20, 68, 117, 139, 141, 236, 239], "alpha": [11, 48, 66], "curli": [11, 94, 97], "squar": [11, 12, 66, 71, 90, 91, 96, 97, 102, 139, 143, 149, 171, 250], "insid": [11, 12, 13, 14, 20, 26, 47, 48, 52, 53, 61, 63, 68, 69, 70, 71, 74, 86, 102, 107, 118, 119, 126, 135, 154, 174, 176, 191, 213], "Such": [11, 64, 94, 149, 161, 177, 189, 233, 238], "charact": [11, 12, 14, 16, 23, 26, 47, 52, 54, 56, 59, 60, 66, 68, 69, 71, 74, 77, 92, 94, 97, 101, 108, 116, 118, 119, 122, 123, 147, 152, 154, 161, 163, 164, 176, 177, 179, 182, 183, 184, 195, 196, 198, 199, 200, 201, 202, 203, 233, 236, 239, 240, 242, 243, 246, 249, 250, 252, 257], "beta": [11, 135, 136], "gamma": [11, 152], "delta": [11, 12, 70, 184], "epsilon": 11, "relev": [11, 16, 20, 24, 26, 68, 69, 97, 101, 118, 119, 125, 127, 130, 131, 153, 176, 198, 201, 206, 208, 247, 249], "neither": [11, 66, 67, 145, 149, 150, 154, 155, 172, 177], "nor": [11, 66, 71, 94, 99, 118, 154, 164, 172, 173], "token": [11, 48, 97, 108, 129, 149, 164, 206, 240, 243], "liter": [11, 20, 52, 94, 99, 124, 179, 182, 188, 195, 208, 232, 240, 241, 244, 250, 253, 254], "escap": [11, 47, 48, 58, 60, 145, 182, 195, 196, 201, 240, 243, 251], "variat": [11, 14, 68, 69], "valid": [11, 14, 20, 45, 64, 68, 69, 70, 73, 74, 77, 101, 106, 107, 118, 119, 127, 154, 166, 173, 177, 179, 184, 185, 193, 195, 199, 201, 202, 239, 242, 243, 250], "transform": [11, 26, 27, 66, 67, 70, 71, 73, 74, 107, 123, 126, 140, 164, 195, 201, 238, 239], "partial": [11, 35, 45, 48, 62, 68, 71, 118, 121, 131, 132, 150, 189, 225], "alter": [11, 44, 68, 69, 99, 108, 140, 155, 184, 190, 235], "intercept": [11, 50, 184], "unless": [11, 14, 16, 18, 25, 26, 29, 48, 52, 64, 65, 66, 74, 75, 85, 87, 91, 93, 94, 101, 107, 109, 113, 119, 146, 154, 164, 166, 172, 174, 177, 184, 192, 197, 199, 201, 233, 236, 237, 250, 257], "color": [11, 22, 26, 64, 66, 68, 69, 71, 74, 96, 98, 99, 100, 131, 135, 139, 145, 159, 164, 178, 208, 228, 239, 251], "meet": [11, 48, 61, 62, 233, 234], "prop": [11, 154, 191], "addition": [11, 29, 52, 78, 99, 108, 132, 150, 177, 213, 239, 246, 247, 248], "did": [11, 47, 48, 73, 77, 94, 99, 102, 104, 118, 135, 140, 141, 143, 145, 177, 199, 201, 238, 243, 249], "abid": 11, "zero": [11, 13, 14, 48, 59, 67, 69, 70, 73, 74, 118, 119, 125, 127, 147, 149, 154, 155, 164, 166, 169, 171, 174, 176, 177, 182, 184, 192, 201, 202, 203, 206, 233, 248, 250, 251], "until": [11, 20, 26, 45, 46, 47, 52, 53, 59, 62, 68, 77, 92, 94, 99, 101, 102, 106, 107, 114, 119, 125, 126, 130, 133, 143, 145, 174, 176, 177, 182, 184, 192, 199, 201, 203, 206, 213, 233, 236, 237, 242, 246], "reach": [11, 16, 46, 53, 92, 94, 119, 142, 154, 184, 199, 233], "intermedi": [11, 14, 66, 99, 108, 116, 127, 128, 246, 249], "whose": [11, 16, 19, 20, 26, 43, 45, 47, 48, 52, 67, 68, 69, 70, 71, 74, 91, 94, 96, 97, 99, 103, 104, 118, 119, 139, 154, 155, 174, 177, 184, 192, 199, 201, 238, 247, 257], "endif": 11, "itself": [11, 12, 16, 17, 19, 20, 22, 23, 26, 44, 45, 46, 47, 48, 52, 58, 61, 64, 67, 68, 69, 70, 71, 73, 74, 80, 83, 88, 91, 92, 94, 96, 97, 99, 101, 103, 104, 108, 118, 119, 124, 125, 127, 135, 145, 149, 154, 174, 176, 177, 184, 195, 197, 201, 203, 208, 214, 223, 233, 238, 239, 243, 248, 249, 257], "arbitrari": [11, 13, 14, 48, 67, 68, 70, 74, 94, 118, 119, 154, 173, 191, 198, 233, 237], "arrow": [11, 12, 13, 26, 69, 71, 94, 97], "wrapper": [11, 28, 47, 50, 119, 124, 127, 131, 154, 162, 181, 182, 200, 201, 208, 228, 250], "everyth": [11, 19, 26, 37, 59, 80, 95, 97, 100, 101, 107, 108, 124, 131, 133, 164, 165, 184, 220, 232, 237, 257], "interven": [11, 13, 69, 94, 107, 125, 176], "preced": [11, 14, 26, 48, 53, 62, 88, 92, 94, 97, 102, 124, 152, 164, 196, 201, 202, 235, 237, 246, 247, 257], "prefix": [11, 26, 32, 43, 44, 48, 52, 54, 101, 108, 135, 140, 143, 150, 153, 154, 182, 191, 192, 196, 208, 243, 257], "suffix": [11, 12, 47, 48, 74, 77, 90, 92, 94, 97, 99, 173, 182, 192, 198, 208], "omit": [11, 12, 14, 15, 44, 45, 68, 77, 92, 96, 107, 111, 123, 149, 153, 154, 161, 162, 165, 185], "Or": [11, 48, 87, 144, 162], "referenc": [11, 37, 99, 108, 126, 127, 150, 154, 164, 174, 176, 192, 197, 203, 251], "shown": [11, 16, 19, 20, 23, 25, 26, 45, 47, 66, 68, 69, 70, 73, 74, 77, 90, 94, 96, 97, 102, 137, 140, 147, 152, 153, 184, 201, 203, 243], "appear": [11, 12, 19, 20, 22, 23, 26, 45, 46, 47, 48, 52, 55, 62, 66, 68, 69, 73, 74, 90, 91, 92, 94, 96, 97, 99, 101, 102, 103, 107, 119, 121, 123, 127, 131, 135, 136, 143, 145, 147, 149, 150, 152, 154, 155, 162, 164, 173, 174, 177, 179, 184, 198, 199, 201, 206, 233, 237, 238, 239, 241, 251], "usefulli": [11, 200], "consecut": [11, 166, 193, 243], "2a": 11, "rewrit": [11, 12, 14, 107, 135, 140, 191], "rewritten": [11, 12, 13, 48, 149, 185, 217, 232, 246, 248], "0a1": 11, "succe": [11, 43, 45, 103, 118, 119, 145, 177, 199], "consult": [11, 114, 201, 205], "relat": [11, 16, 26, 30, 45, 46, 51, 52, 61, 62, 64, 68, 69, 72, 87, 94, 96, 106, 118, 124, 127, 149, 166, 176, 177, 184, 190, 199, 202, 203, 221, 225, 232, 233, 239, 246], "highlight": [11, 26, 61, 68, 74, 96, 97, 99, 129, 195, 218, 220, 225, 227, 228, 229, 231, 232, 243, 250, 251, 252, 253, 254, 255], "major": [11, 12, 14, 19, 26, 29, 61, 62, 69, 73, 74, 99, 101, 104, 118, 124, 130, 153, 188, 213, 222, 224, 232], "rev": [11, 117], "042a": 11, "handl": [11, 14, 17, 20, 22, 23, 25, 26, 37, 43, 44, 45, 48, 52, 53, 61, 62, 64, 68, 69, 70, 73, 74, 77, 78, 92, 94, 97, 106, 107, 108, 118, 119, 126, 127, 131, 132, 137, 140, 145, 152, 154, 164, 176, 181, 182, 184, 199, 203, 211, 218, 226, 238, 243, 247, 249, 250, 251, 252], "vanish": 11, "12": [11, 77, 104, 126, 154, 195, 196, 202, 232, 238, 240, 243, 244, 253], "found": [11, 13, 16, 26, 37, 43, 45, 48, 51, 56, 63, 66, 68, 69, 70, 73, 74, 77, 83, 89, 90, 91, 95, 99, 104, 106, 107, 111, 118, 119, 121, 125, 131, 132, 135, 143, 145, 147, 149, 150, 152, 154, 164, 165, 173, 176, 177, 182, 184, 199, 201, 211, 212, 218, 232, 235, 236, 240, 241, 249, 251], "subsequ": [11, 16, 20, 37, 45, 47, 55, 68, 69, 70, 73, 74, 83, 92, 94, 97, 101, 116, 119, 126, 133, 134, 143, 154, 164, 176, 183, 184, 203, 235, 236, 257], "act": [11, 26, 43, 44, 45, 48, 53, 68, 69, 73, 74, 92, 94, 96, 111, 127, 136, 149, 150, 151, 154, 177, 191, 201, 239], "join": [11, 71, 77, 108, 127, 164, 174, 176, 177, 213, 236, 247, 251, 257], "revis": [11, 48, 85, 106, 124, 143, 233, 239, 244], "irrelev": [11, 135, 197], "draw": [11, 14, 22, 26, 31, 64, 66, 67, 69, 70, 72, 73, 74, 135, 139, 149, 200, 208], "attent": [11, 55, 225], "intent": [11, 44, 48, 164, 186, 190, 198, 201, 234, 246, 248], "path": [11, 37, 44, 48, 52, 54, 63, 70, 72, 74, 77, 80, 83, 92, 95, 101, 103, 104, 107, 115, 116, 119, 120, 121, 132, 154, 198, 203, 205, 213, 226, 233, 246, 249, 251, 252], "north": [11, 26, 221], "south": [11, 26, 221], "west": [11, 202], "east": [11, 202, 221], "editori": 11, "sake": [11, 47, 208], "trace": [11, 34, 41, 52, 54, 79, 85, 94, 96, 107, 118, 120, 124, 127, 128, 248, 249], "therefor": [11, 14, 26, 47, 48, 53, 69, 70, 71, 78, 83, 91, 96, 99, 102, 103, 118, 119, 127, 130, 149, 164, 174, 176, 195, 201, 206, 239, 249], "idea": [11, 16, 19, 30, 38, 42, 48, 85, 99, 107, 130, 137, 139, 140, 152, 173, 233, 257], "conflict": [11, 62, 96, 106, 149, 150, 154, 184, 198, 201, 235, 238, 250], "lexic": [11, 49, 97, 108, 119, 120, 152, 154, 177, 242], "box": [11, 16, 17, 20, 23, 25, 47, 50, 52, 61, 64, 66, 67, 68, 70, 74, 81, 90, 92, 94, 99, 101, 103, 107, 122, 130, 136, 176, 203, 208, 247, 257], "column": [11, 19, 20, 22, 45, 53, 58, 59, 66, 68, 69, 73, 94, 96, 97, 118, 133, 182, 201, 235, 251, 257], "visibl": [11, 26, 45, 47, 48, 66, 68, 69, 71, 73, 74, 90, 94, 96, 97, 99, 102, 103, 118, 154, 164, 177, 201, 208, 226], "row": [11, 19, 20, 22, 43, 45, 48, 66, 69, 73, 147, 201, 235, 243], "locat": [11, 26, 37, 43, 45, 47, 50, 52, 53, 55, 66, 73, 74, 80, 83, 84, 88, 90, 91, 92, 94, 95, 96, 97, 99, 103, 105, 108, 118, 120, 121, 125, 126, 127, 145, 154, 173, 176, 177, 183, 184, 198, 199, 204, 214, 219, 229, 232, 249, 250, 251, 252, 253], "recaptur": 11, "illustr": [11, 16, 19, 20, 22, 24, 26, 43, 44, 45, 47, 64, 69, 71, 74, 94, 100, 135, 139, 149, 154], "repeat": [11, 12, 14, 16, 17, 25, 48, 69, 77, 119, 124, 131, 154, 161, 176, 201, 236, 239, 243, 246, 251], "twice": [11, 12, 64, 69, 74, 107, 119, 142, 154, 182, 184], "implicitli": [11, 16, 43, 48, 91, 119, 177, 238], "longer": [11, 14, 16, 20, 43, 52, 55, 64, 68, 74, 91, 94, 96, 99, 106, 107, 117, 118, 119, 133, 142, 152, 154, 155, 161, 174, 177, 190, 197, 201, 213, 219, 232, 240, 243, 247, 248, 249, 250, 251, 257], "gwydion": [11, 117, 142, 172, 236, 238, 247], "semi": [11, 67, 94, 97], "haven": [11, 14, 37, 107, 115, 126, 211], "accid": [11, 102], "scale": [11, 26, 37, 48, 66, 69, 70, 74, 118, 154, 202], "easili": [11, 16, 19, 20, 22, 26, 48, 62, 74, 90, 94, 99, 153, 177, 182, 192, 201, 208, 220, 257], "adjac": [11, 48, 69, 70, 164], "bet": 11, "opt": [11, 63, 80, 83, 88, 132, 213, 219, 222, 224, 227, 241, 242], "space": [11, 12, 22, 26, 48, 64, 66, 68, 69, 71, 73, 74, 80, 92, 94, 107, 117, 118, 119, 121, 125, 133, 154, 177, 182, 184, 202, 208, 214, 232, 235, 239, 240, 243, 249, 257], "upper": [11, 14, 48, 69, 70, 71, 92, 103, 155, 192], "gracefulli": [11, 71], "secondari": [11, 237], "primari": [11, 26, 43, 45, 48, 66, 74, 106, 111, 131, 154, 155, 156, 173, 177, 199, 201, 207, 233, 237, 243, 244], "cohes": 11, "setter": [11, 16, 23, 25, 26, 44, 48, 59, 60, 64, 66, 68, 69, 73, 74, 91, 92, 106, 108, 111, 118, 119, 150, 161, 163, 173, 174, 176, 177, 184, 194, 195, 201, 202, 206, 213, 239, 247, 257], "invalid": [11, 45, 56, 91, 92, 107, 108, 118, 119, 161, 167, 184, 199, 201, 203, 246, 250, 252], "flavor": [12, 43, 80, 201], "pascal": [12, 13, 14, 61, 118, 135, 147, 148, 149, 153, 252], "subroutin": [12, 118, 125], "calcul": [12, 14, 16, 22, 26, 69, 71, 73, 94, 118, 119, 131, 152, 156, 198], "dimension": [12, 14, 48, 55, 66, 70, 71], "plane": [12, 66, 70, 71, 74], "pythagorean": 12, "theorem": 12, "x1": [12, 67, 70, 71], "y1": [12, 67, 70, 71], "x2": [12, 67, 70, 71], "y2": [12, 67, 70, 71], "sqrt": [12, 13, 66, 143, 171, 250], "phrase": [12, 14, 44, 64, 198, 241], "procedur": [12, 13, 14, 26, 59, 61, 71, 94, 99, 107, 108, 145, 151, 154, 174, 177, 191, 201, 233], "why": [12, 14, 16, 94, 96, 97, 102, 107, 135, 176, 233, 248], "angl": [12, 13, 48, 60, 67, 70, 71, 74, 102, 154, 171, 184, 208], "greater": [12, 14, 48, 60, 66, 67, 119, 123, 147, 149, 153, 155, 156, 169, 174, 176, 177, 179, 182, 184, 192, 201, 235, 236], "sign": [12, 17, 42, 48, 69, 70, 90, 94, 102, 171, 176, 177, 192, 208, 222, 251], "unlik": [12, 14, 20, 26, 45, 48, 62, 69, 73, 74, 96, 102, 119, 123, 145, 148, 153, 154, 164, 177, 198, 233, 252], "refer": [12, 13, 14, 15, 16, 17, 20, 23, 24, 25, 26, 30, 32, 37, 43, 44, 45, 46, 52, 53, 54, 64, 66, 67, 68, 69, 70, 71, 73, 74, 77, 80, 85, 86, 90, 94, 96, 97, 98, 99, 101, 102, 104, 105, 107, 108, 112, 116, 118, 119, 121, 124, 126, 127, 137, 143, 144, 147, 148, 149, 153, 154, 158, 161, 164, 166, 174, 177, 179, 180, 181, 182, 183, 188, 189, 192, 195, 197, 201, 202, 204, 205, 206, 207, 208, 213, 214, 232, 234, 236, 244, 246, 247, 248, 249, 250, 251, 252, 253, 257], "confus": [12, 14, 26, 37, 77, 185, 208, 248, 249, 250, 252], "clash": [12, 48], "face": [12, 66, 237, 257], "distinct": [12, 20, 26, 44, 48, 52, 68, 69, 74, 97, 106, 117, 182, 192, 202, 205, 208, 246, 250], "letter": [12, 48, 69, 123, 203, 205], "capit": [12, 154, 208], "_t": 12, "tradit": [12, 14, 15, 61, 104, 118, 123, 177, 201], "digit": [12, 48, 143, 152, 163, 193, 202, 236, 242, 243, 250], "perhap": [12, 14, 20, 37, 47, 64, 97, 103, 107, 119, 131, 135, 143, 168, 184, 206, 221, 223, 233, 238, 257], "graphic": [12, 22, 30, 43, 46, 48, 62, 64, 66, 69, 72, 73, 74, 94, 200, 208, 236], "underscor": [12, 43, 48, 94, 96, 123, 193, 198, 208, 242, 250, 257], "dollar": [12, 48, 94, 102, 123, 152], "hyphen": [12, 48, 132, 147, 154, 198, 208, 257], "asterisk": [12, 14, 26, 64, 213], "question": [12, 13, 16, 17, 25, 26, 42, 43, 45, 48, 68, 69, 74, 94, 96, 97, 99, 101, 118, 123, 142, 144, 164, 172, 174, 201, 221, 237], "mark": [12, 13, 16, 26, 45, 48, 69, 94, 107, 123, 130, 152, 153, 191, 201, 213, 233, 250, 252], "exclam": [12, 123, 137], "overlap": [12, 70, 74, 154, 236], "minu": [12, 48, 69, 71], "five": [12, 26, 68, 71, 101, 107], "choic": [12, 14, 26, 47, 52, 69, 71, 97, 99, 101, 107, 133, 135, 177, 192, 195, 203, 234, 238, 243], "reflect": [12, 16, 45, 68, 69, 70, 71, 74, 90, 99, 101, 107, 186, 202, 234], "conclus": 12, "skip": [12, 62, 77, 79, 83, 88, 97, 101, 106, 108, 119, 149, 162, 164, 184, 236, 248], "moment": [12, 47, 94, 97, 103, 108, 118, 119, 131, 152], "implicit": [12, 43, 45, 48, 118, 124, 127, 150, 154, 164, 176, 177, 186, 201, 234, 248], "prefer": [12, 20, 42, 48, 68, 69, 71, 73, 74, 87, 88, 91, 94, 113, 119, 135, 164, 174, 184, 208, 233, 238, 246, 248, 257], "style": [12, 13, 14, 15, 16, 17, 25, 26, 47, 61, 62, 64, 66, 68, 69, 71, 73, 74, 96, 99, 106, 108, 117, 135, 140, 143, 182, 191, 202, 208, 233, 241, 249], "vari": [12, 20, 26, 66, 69, 71, 74, 77, 90, 96, 162, 201, 206], "who": [12, 14, 15, 22, 50, 51, 61, 64, 80, 135, 142, 182, 186, 192, 201, 206, 214, 233, 238, 253], "clutter": 12, "leav": [12, 13, 14, 20, 47, 48, 73, 74, 77, 94, 96, 101, 107, 127, 139, 145, 154, 161, 164, 176, 184, 192, 237, 239, 257], "pseudo": [12, 43, 45, 47, 49, 52, 62, 104, 108, 169, 188, 251], "regard": [12, 14, 66, 182, 203], "concis": [12, 14, 22, 48, 58, 106, 184, 198, 233, 236, 241, 244, 250], "subtyp": [12, 48, 62, 94, 106, 108, 154, 156, 164, 177, 184, 237, 246, 250], "mathemat": [12, 14, 70, 71, 101, 166, 192], "gotten": 12, "elimin": [12, 14, 62, 91, 97, 99, 107, 108, 116, 131, 153, 177, 201, 242, 243, 247], "var": [12, 13, 14, 58, 59, 119, 130, 159, 184, 191, 199, 203, 257], "deltax": 12, "deltai": 12, "worri": [12, 26, 44, 45, 47, 48, 52, 68, 69, 74, 144, 184], "mixedcasenam": 12, "convention": [12, 48, 198], "anywher": [12, 13, 14, 48, 68, 145, 152, 197, 248], "condit": [12, 14, 16, 18, 43, 44, 45, 48, 57, 58, 65, 70, 71, 72, 74, 75, 77, 86, 93, 94, 105, 107, 108, 109, 118, 119, 127, 133, 146, 164, 167, 172, 173, 174, 176, 179, 181, 182, 185, 204, 205, 206, 211, 220, 249, 250, 251], "quadrat": [12, 14], "formula": [12, 14], "paul": [12, 13, 14, 15, 61, 62, 118, 119, 135, 136, 137, 138, 139, 141, 142, 143, 235], "haahr": [12, 13, 14, 15, 61, 62, 235, 257], "root": [13, 26, 45, 69, 82, 94, 96, 104, 106, 118, 127, 171, 173, 174, 198, 201, 203, 205, 250, 252], "equat": 13, "solv": [13, 37, 111, 198, 225, 233, 239], "root1": 13, "root2": 13, "solvequadrat": 13, "discrimin": [13, 16, 69, 129], "sqrtdiscrimin": 13, "mayb": [13, 42, 106, 107, 118, 119, 135, 142], "degener": [13, 164], "paradigm": [13, 224, 225, 227, 228], "receiv": [13, 22, 26, 37, 45, 47, 48, 68, 69, 74, 97, 119, 120, 126, 154, 177, 199, 206, 208, 233, 238, 249, 251, 257], "approach": [13, 14, 24, 27, 32, 43, 47, 48, 61, 62, 68, 92, 106, 107, 173, 192], "worth": [13, 14, 20, 23, 26, 71, 94, 103, 131, 142, 154, 219], "mention": [13, 14, 16, 48, 52, 54, 74, 77, 99, 131, 145, 152], "strongli": [13, 68, 69, 154, 174, 177], "decim": [13, 60, 179, 193, 201, 202, 236, 242, 251], "elseif": [13, 45, 56], "comment": [13, 47, 48, 92, 104, 106, 107, 108, 112, 123, 143, 172, 218, 233, 238], "text": [13, 16, 19, 20, 25, 37, 45, 48, 50, 53, 64, 66, 68, 71, 72, 73, 74, 84, 90, 91, 92, 94, 96, 97, 99, 101, 102, 104, 133, 139, 142, 180, 184, 191, 192, 195, 198, 200, 201, 203, 205, 208, 211, 229, 232, 233, 234, 236, 243, 244, 246, 250, 251, 255], "properti": [13, 14, 22, 46, 48, 62, 66, 68, 69, 73, 74, 78, 92, 94, 97, 98, 99, 106, 107, 119, 121, 125, 131, 139, 140, 159, 177, 184, 186, 191, 208, 249, 257], "signific": [13, 48, 69, 99, 124, 127, 154, 166, 198, 201, 206, 222, 232, 239, 257], "fortran": [13, 14, 104, 118], "appropri": [13, 15, 16, 19, 20, 22, 26, 32, 37, 43, 45, 47, 50, 52, 53, 62, 64, 66, 68, 69, 73, 74, 86, 91, 94, 96, 97, 106, 115, 117, 118, 119, 121, 124, 125, 127, 132, 145, 152, 154, 162, 171, 172, 176, 177, 182, 184, 195, 198, 199, 201, 202, 203, 205, 208, 213, 233, 234, 236, 250, 257], "saw": [13, 44, 46, 52, 90, 94, 97, 99, 101, 137, 154], "sine": [13, 171], "cosin": [13, 171], "sinco": [13, 171, 250], "sin": [13, 171, 246, 250], "co": [13, 52, 53, 64, 68, 130, 154, 171, 176, 177, 250], "said": [13, 64, 90, 99, 119, 154, 174, 177, 184, 233], "theta": 13, "hold": [13, 14, 16, 26, 45, 61, 69, 73, 74, 96, 97, 99, 111, 118, 119, 121, 147, 154, 164, 176, 177, 182, 184, 199, 201, 203, 234, 237], "solver": 13, "branch": [13, 48, 56, 69, 108, 115, 117, 119, 126, 130, 149, 225, 233], "incident": 13, "classifi": [13, 64, 118, 237, 250], "count": [13, 14, 58, 107, 118, 119, 121, 125, 153, 154, 156, 164, 166, 176, 177, 182, 184, 192, 201, 206, 213, 236, 242, 248, 250, 257], "r1": [13, 67], "r2": [13, 67], "neg": [13, 44, 45, 48, 59, 60, 66, 71, 154, 155, 166, 171, 177, 179, 192, 202, 250, 254], "whole": [13, 16, 17, 37, 48, 62, 66, 68, 69, 71, 74, 119, 137, 140, 153, 154, 168, 248, 257], "chain": [13, 48, 108, 125, 149, 154], "comparison": [13, 16, 48, 55, 59, 60, 154, 166, 177, 201, 236, 249, 250], "clearer": [13, 14, 16, 69, 250], "predic": [13, 55, 59, 60, 68, 69, 147, 161, 164, 190, 192, 201, 208, 236], "distanc": [13, 70, 71, 143, 171], "iter": [13, 37, 55, 57, 97, 111, 131, 158, 164, 173, 184, 188, 190, 191, 201, 213, 222, 224, 249, 257], "dot": [13, 26, 66, 139, 199, 246], "sum": [14, 143, 149, 154, 166, 184, 192, 202], "pairwis": 14, "late": [14, 53, 143, 223], "dotproduct": 14, "xlo": 14, "xhi": 14, "ylo": 14, "yhi": 14, "proceed": [14, 68, 94, 177], "invent": [14, 194], "minim": [14, 16, 47, 48, 85, 92, 94, 99, 101, 149, 184, 201, 206, 213, 234, 237], "lower": [14, 26, 45, 48, 50, 64, 68, 69, 71, 74, 77, 92, 99, 103, 118, 119, 127, 177, 192, 201], "adjust": [14, 32, 69, 77, 80, 83, 154, 177, 184, 202], "subscript": 14, "equal": [14, 26, 45, 59, 60, 66, 67, 68, 69, 70, 71, 73, 74, 111, 118, 119, 153, 154, 155, 156, 161, 164, 169, 171, 174, 176, 184, 201, 202, 236, 248, 249, 251], "relationship": [14, 20, 26, 43, 45, 50, 62, 69, 74, 90, 97, 99, 119, 139, 164, 176, 201, 237, 239], "oppos": [14, 20, 97, 164, 179, 239], "enumer": [14, 118], "ahead": [14, 97, 102, 107, 118, 135, 202], "iso": [14, 48, 104, 202], "carri": [14, 26, 68, 71, 74, 78, 91, 94, 102, 154, 166, 184, 208, 219], "obtain": [14, 18, 43, 45, 46, 48, 54, 55, 65, 67, 75, 93, 94, 104, 109, 111, 115, 118, 119, 146, 172, 190, 201, 208], "beyond": [14, 19, 20, 45, 61, 68, 96, 104, 111, 149, 164, 182, 184], "tutori": [14, 15, 16, 22, 43, 44, 45, 49, 61, 80, 144, 148, 153], "recoveri": [14, 105, 164, 184, 199], "possibli": [14, 68, 69, 70, 71, 99, 106, 107, 118, 119, 121, 131, 150, 176, 208, 237, 238, 239, 257], "correct": [14, 16, 22, 23, 26, 48, 68, 73, 91, 94, 97, 101, 106, 118, 119, 145, 154, 166, 173, 184, 192, 199, 222, 225, 233, 239, 246, 247, 250, 252], "debugg": [14, 47, 53, 54, 61, 62, 68, 77, 90, 92, 96, 97, 98, 99, 100, 101, 102, 103, 106, 116, 120, 145, 164, 177, 182, 247, 250, 251, 252], "report": [14, 26, 29, 42, 52, 53, 62, 69, 78, 97, 98, 105, 107, 118, 131, 145, 172, 177, 179, 199, 201, 208, 213, 214, 219, 222, 224, 227, 229, 246, 247, 249, 250, 251, 252, 253, 254, 255], "opposit": [14, 16, 47, 67, 70, 94, 97, 108, 118, 121, 154], "slight": [14, 68], "amount": [14, 20, 26, 44, 45, 46, 66, 69, 70, 73, 74, 94, 104, 106, 119, 135, 154, 184, 198, 213], "infinit": [14, 70, 71, 73, 143, 155, 182, 192, 199, 250], "heckler": 14, "audienc": [14, 49, 72], "observ": [14, 38, 62, 172, 177, 236], "fewer": [14, 61, 62, 101, 164], "among": [14, 37, 50, 67, 97, 99, 102, 126, 208, 209, 235, 238, 247, 248], "compound": [14, 94, 108], "wonder": [14, 16, 20, 119, 136, 142], "especi": [14, 69, 101, 107, 108, 136, 149, 182, 192, 194, 215, 219, 223, 225, 235, 240, 246, 249], "perfectli": [14, 71], "meaning": [14, 20, 48, 74, 92, 116, 118, 203, 234], "pick": [14, 42, 71, 106, 143], "conveni": [14, 17, 20, 22, 26, 45, 47, 48, 52, 66, 68, 69, 70, 71, 74, 94, 96, 97, 101, 107, 120, 150, 152, 154, 159, 161, 164, 165, 166, 177, 180, 183, 186, 188, 191, 192, 198, 201, 236, 240, 243, 247, 249], "xi": 14, "yi": 14, "complet": [14, 15, 16, 17, 20, 22, 23, 24, 25, 26, 32, 43, 44, 45, 46, 48, 50, 52, 55, 62, 64, 66, 67, 68, 69, 70, 71, 73, 74, 78, 80, 91, 92, 94, 97, 99, 101, 102, 106, 108, 116, 118, 119, 127, 132, 135, 138, 139, 140, 142, 145, 150, 154, 166, 173, 183, 184, 192, 198, 200, 201, 202, 203, 206, 208, 217, 221, 223, 225, 227, 232, 233, 236, 246, 250, 251, 252, 253, 254, 255], "success": [14, 20, 51, 64, 68, 74, 92, 103, 108, 118, 119, 145, 173, 176, 177, 184, 199, 201, 250], "rel": [14, 22, 26, 37, 47, 52, 66, 67, 68, 69, 73, 74, 88, 92, 118, 119, 128, 133, 135, 155, 156, 164, 177, 182, 184, 198, 203, 205, 243, 252, 253], "third": [14, 16, 47, 54, 66, 69, 71, 73, 91, 94, 95, 97, 99, 101, 113, 133, 149, 150, 164, 173, 198, 246], "realiz": [14, 69, 74, 135], "inaccur": 14, "multi": [14, 45, 53, 55, 62, 68, 69, 94, 119, 127, 139, 196, 198, 199, 213, 224, 225, 227, 228, 232, 238, 244, 253, 254], "dimens": [14, 26, 48, 58, 66, 73, 154, 246, 248], "link": [14, 20, 29, 34, 37, 41, 42, 51, 55, 63, 80, 86, 90, 92, 94, 97, 99, 102, 104, 108, 111, 118, 119, 123, 130, 131, 135, 139, 153, 198, 203, 205, 211, 213, 226, 228, 229, 231, 238, 248, 250, 251, 252, 253], "rang": [14, 16, 20, 48, 61, 62, 66, 72, 74, 81, 92, 96, 97, 108, 118, 119, 128, 152, 154, 164, 165, 166, 171, 184, 200, 201, 202, 246], "queue": [14, 26, 45, 55, 68, 73, 74, 106, 108, 118, 177, 203, 235], "varieti": [14, 19, 22, 24, 26, 37, 48, 62, 68, 71, 73, 82, 90, 94, 96, 99, 119, 139, 143, 147, 152, 164, 176, 177, 202, 219], "predefin": [14, 26, 94, 154, 162, 164, 251], "aspect": [14, 19, 20, 26, 50, 52, 69, 71, 119, 137, 140, 182, 198, 237], "impact": [14, 48, 131, 247, 250], "perfect": [14, 37, 77], "expens": [14, 62, 99, 197, 250], "precis": [14, 48, 69, 70, 71, 73, 85, 91, 94, 101, 118, 119, 150, 154, 171, 176, 192, 201, 202, 203, 242, 250, 251], "term": [14, 22, 26, 47, 66, 67, 68, 69, 71, 74, 90, 94, 99, 101, 107, 116, 117, 118, 119, 121, 127, 154, 162, 164, 174, 177, 184, 225, 236, 237, 249], "proport": [14, 69, 73, 99, 200], "concern": [14, 26, 37, 43, 45, 47, 48, 53, 68, 69, 71, 74, 94, 97, 143, 153, 159, 164, 174, 184, 208, 233, 257], "multipli": [14, 48, 70, 176, 192, 202, 235], "mul": 14, "carefulli": [14, 102, 153], "higher": [14, 46, 71, 107, 118, 119, 164, 177, 208], "shorter": [14, 17, 26, 68, 69, 156, 202, 236], "retun": 14, "memori": [14, 77, 79, 90, 91, 99, 101, 111, 116, 119, 120, 121, 124, 127, 131, 135, 141, 142, 147, 152, 153, 154, 159, 168, 173, 174, 176, 177, 197, 198, 201, 219, 222, 236, 247, 249, 250], "intermediari": [14, 43], "storag": [14, 46, 48, 118, 119, 124, 139, 163, 164, 174, 176, 184, 201, 248], "reclam": [14, 174], "anymor": [14, 119, 213], "essai": [14, 15, 61], "bigger": 14, "slower": [14, 99, 126, 246], "clever": [14, 237], "shouldn": [14, 108, 130, 152, 237, 250], "anyon": [14, 26, 225], "wasn": [14, 128, 143], "translat": [14, 32, 47, 48, 50, 52, 53, 68, 70, 71, 74, 92, 97, 108, 143, 154, 201, 246], "previou": [14, 17, 19, 52, 66, 68, 69, 70, 74, 88, 94, 97, 104, 107, 118, 119, 125, 130, 143, 147, 153, 164, 173, 177, 184, 201, 208, 239, 253, 257], "nonetheless": [14, 94, 154, 239], "artifici": [14, 71, 191, 208], "took": [14, 138, 143, 168, 246], "forget": [14, 130, 177, 184, 249, 257], "backslash": [14, 47, 48, 195, 243], "idiom": [14, 135, 153], "obviat": [14, 20, 191], "ml": [14, 107], "haskel": [14, 37], "dialect": [14, 101, 188], "notabl": [14, 48, 50, 51, 107, 118, 143, 243, 246, 253, 257], "extrem": [14, 19, 64, 71, 135, 138, 139, 177, 248], "larg": [14, 26, 37, 48, 62, 66, 69, 71, 73, 74, 77, 94, 107, 108, 115, 117, 119, 132, 135, 152, 153, 184, 185, 191, 192, 193, 201, 208, 220, 238, 242, 248, 250], "enjoi": [14, 135, 230], "unread": [14, 184], "apl": 14, "pervas": [14, 48], "critic": [14, 127, 131, 139, 153, 233], "encourag": [14, 22, 48, 66, 68, 69, 99, 174], "readabl": [14, 16, 26, 128, 184, 193, 199, 203, 236, 240, 241, 242, 243, 250, 257], "promot": 15, "rich": [15, 22, 30, 48, 61, 62, 87, 99, 102, 140, 208, 233], "explor": [15, 46, 61, 69, 90, 96, 102, 138, 144], "perspect": [15, 49, 61, 147, 225], "environ": [15, 16, 17, 19, 20, 22, 24, 25, 26, 37, 43, 44, 45, 46, 47, 48, 50, 51, 53, 61, 62, 63, 64, 68, 69, 71, 74, 78, 84, 88, 92, 94, 95, 96, 97, 101, 102, 103, 104, 108, 115, 116, 118, 119, 120, 121, 124, 125, 126, 127, 131, 134, 136, 138, 139, 140, 141, 142, 143, 149, 150, 162, 174, 176, 192, 198, 201, 203, 204, 213, 214, 226, 233, 239, 244, 246, 247, 248, 250, 251, 252, 257], "mesh": 15, "analog": [15, 16, 17, 26, 69, 106, 119, 164, 177, 237], "bag": [15, 138], "introduct": [15, 21, 24, 49, 61, 64, 68, 69, 78, 80, 102, 104, 105, 120, 122, 144, 149, 188, 201, 220, 251], "bog": 15, "At": [16, 19, 20, 22, 23, 48, 50, 64, 68, 69, 74, 94, 101, 103, 118, 119, 131, 133, 139, 143, 152, 177, 214, 223, 233, 238, 251], "interact": [16, 20, 26, 41, 43, 46, 47, 48, 50, 52, 53, 63, 64, 68, 69, 80, 84, 87, 88, 91, 97, 98, 100, 101, 102, 103, 108, 116, 118, 119, 127, 138, 142, 154, 164, 177, 184, 199, 200, 213, 232, 246, 250], "click": [16, 20, 22, 26, 43, 46, 47, 52, 53, 63, 64, 68, 69, 74, 90, 92, 94, 96, 97, 101, 102, 103, 130], "menu": [16, 19, 20, 21, 22, 24, 43, 46, 47, 63, 68, 71, 74, 90, 97, 98, 99, 101, 102, 103, 115, 140, 150], "displai": [16, 17, 19, 20, 23, 25, 43, 54, 64, 66, 68, 69, 71, 73, 74, 78, 80, 94, 98, 101, 102, 103, 105, 133, 137, 139, 149, 182, 200, 208, 214, 229, 233, 249, 251], "remedi": [16, 199, 239], "respond": [16, 20, 45, 69, 74, 105, 199], "mous": [16, 22, 23, 68, 69, 73, 74, 94, 96], "event": [16, 18, 20, 22, 26, 64, 65, 69, 73, 75, 92, 93, 94, 97, 109, 118, 119, 127, 138, 146, 172, 222, 228, 232, 233, 235, 250], "handler": [16, 48, 69, 77, 94, 97, 118, 164, 174, 176, 177, 208, 213, 235], "cumbersom": [16, 48, 69], "simpler": [16, 20, 71, 73, 92, 99, 154, 208, 216, 225, 236, 237, 238, 246], "price": 16, "devic": [16, 26, 50, 66, 69, 71, 73, 149, 184, 208, 250], "notif": [16, 26, 45, 118, 127], "low": [16, 19, 20, 25, 26, 28, 45, 52, 61, 70, 86, 107, 118, 119, 127, 152, 154, 166, 199, 201, 208, 232, 248, 249], "repres": [16, 19, 20, 22, 26, 37, 44, 45, 46, 47, 48, 61, 62, 66, 67, 68, 69, 70, 71, 73, 74, 77, 90, 92, 94, 97, 99, 101, 102, 106, 107, 116, 118, 119, 121, 124, 125, 127, 133, 145, 147, 149, 150, 152, 154, 155, 162, 163, 164, 166, 176, 177, 179, 182, 184, 192, 199, 200, 201, 203, 204, 205, 206, 208, 233, 237, 243], "essenti": [16, 20, 23, 26, 44, 45, 74, 154, 177, 201, 206, 234], "disk": [16, 17, 19, 20, 23, 25, 26, 37, 47, 52, 64, 66, 69, 74, 92, 94, 101, 102, 116, 135, 173, 184, 198, 203, 246], "empti": [16, 23, 43, 44, 45, 47, 55, 59, 60, 69, 70, 74, 77, 91, 92, 94, 96, 97, 102, 118, 147, 154, 155, 161, 164, 173, 174, 177, 184, 201, 203, 206, 207, 213, 236, 239, 248, 250, 251, 257], "stretchi": [16, 25, 26, 48, 55, 60, 68, 69, 111, 118, 119, 164, 177, 184, 239, 257], "filenam": [16, 17, 25, 48, 53, 54, 69, 74, 78, 118, 164, 184, 198, 203, 206, 249], "obviou": [16, 26, 67, 69, 92, 94, 135, 149, 208, 233, 236, 237, 238], "unmodifi": [16, 48, 176], "piec": [16, 20, 22, 26, 37, 47, 48, 52, 66, 68, 69, 71, 74, 90, 91, 94, 96, 97, 99, 102, 107, 119, 147, 184, 186, 202, 206, 214], "prioriti": [16, 17, 19, 20, 23, 25, 90, 118, 126, 177], "medium": [16, 17, 19, 20, 23, 25, 26, 64, 66, 67, 71, 73, 74, 107, 235], "effect": [16, 17, 20, 22, 48, 55, 58, 62, 64, 66, 68, 69, 70, 71, 73, 74, 80, 96, 97, 101, 102, 106, 108, 116, 118, 119, 127, 131, 135, 145, 149, 150, 154, 164, 176, 182, 184, 190, 192, 201, 202, 208, 214, 234, 239, 246, 249], "pane": [16, 17, 20, 22, 23, 25, 68, 69, 73, 74, 90, 92, 96, 97, 98, 99, 101, 103, 137, 139, 164, 235], "correctli": [16, 19, 48, 53, 64, 70, 71, 80, 92, 94, 103, 127, 132, 154, 174, 213, 218, 233, 242, 246, 249, 250, 251], "glu": [16, 17, 21, 26], "15": [16, 19, 20, 23, 25, 48, 59, 63, 69, 73, 77, 80, 143, 232, 251], "recal": [16, 43, 44, 45, 47, 52, 69, 91, 96, 102], "label": [16, 17, 19, 20, 23, 24, 25, 26, 48, 68, 69, 73, 74, 94, 97, 117, 118, 149, 200, 208, 233], "reusabl": [16, 17, 104, 164, 237], "redefin": [16, 17, 32, 68, 69, 94, 150], "throughout": [16, 20, 45, 48, 64, 66, 74, 102, 104, 154, 166, 182, 184, 192], "avail": [16, 17, 19, 20, 22, 24, 26, 30, 37, 43, 45, 46, 47, 48, 50, 52, 53, 54, 58, 62, 63, 64, 66, 68, 69, 73, 74, 78, 80, 81, 90, 91, 92, 94, 96, 97, 99, 101, 102, 103, 106, 108, 110, 118, 119, 121, 125, 127, 131, 133, 137, 138, 140, 141, 143, 149, 154, 159, 164, 166, 172, 174, 176, 177, 184, 188, 192, 201, 202, 203, 206, 208, 209, 215, 216, 218, 220, 223, 225, 227, 229, 230, 232, 233, 236, 237, 238, 239, 240, 241, 243, 246, 247, 248, 249, 250, 251, 252], "action": [16, 18, 23, 26, 53, 65, 68, 69, 74, 75, 91, 93, 94, 96, 106, 109, 119, 130, 142, 146, 164, 172, 173, 174, 176, 184, 199, 201, 203, 249], "push": [16, 17, 19, 20, 23, 25, 26, 55, 68, 69, 74, 94, 117, 121, 177, 207, 233], "acceler": [16, 17, 25, 68, 69, 74], "keyboard": [16, 17, 22, 25, 26, 68, 69, 74, 80, 96, 214], "gestur": [16, 17, 23, 25, 68, 69, 74, 119], "shift": [16, 17, 23, 25, 48, 60, 69, 74, 92, 124, 143, 166, 176, 192, 213, 251], "sure": [16, 20, 37, 45, 47, 55, 80, 83, 90, 91, 92, 94, 101, 107, 115, 119, 130, 132, 135, 142, 164, 176, 182, 214, 233, 246, 250], "elegantli": [16, 17, 20], "clean": [16, 20, 22, 24, 52, 87, 91, 99, 104, 106, 112, 130, 132, 152, 153, 197, 209, 212, 213, 219, 232, 246], "recommend": [16, 17, 68, 73, 77, 85, 91, 132, 144, 174, 177, 193, 233, 238, 242, 246, 257], "reload": 16, "trivial": [16, 47, 68, 69, 101, 121, 143, 236, 257], "involv": [16, 22, 26, 37, 47, 69, 71, 74, 86, 92, 99, 101, 108, 118, 119, 130, 131, 132, 143, 152, 154, 164, 168, 174, 177, 184, 186, 198, 201, 202, 203, 208, 219, 225, 234, 237, 257], "prompt": [16, 17, 20, 25, 54, 68, 74, 79, 92, 94, 96, 101, 184, 201, 203], "explain": [16, 47, 51, 84, 85, 90, 92, 94, 100, 101, 102, 108, 149, 151, 153, 154, 174, 177, 208, 233, 238, 257], "sheet": [16, 20, 21, 22, 25, 43, 64, 66, 67, 68, 69, 70, 71, 72, 73, 90, 144, 208, 235], "notifi": [16, 17, 20, 25, 26, 43, 68, 69, 74, 101, 118, 174, 176, 177], "portion": [16, 18, 26, 55, 65, 66, 67, 69, 71, 73, 74, 75, 92, 93, 96, 99, 109, 115, 131, 146, 172, 184, 205, 208], "host": [16, 22, 37, 45, 46, 60, 66, 94, 104, 117, 118, 132, 153, 199, 201, 202, 203, 205, 206, 221, 248], "resiz": [16, 19, 26, 68, 69, 73, 74, 94, 133], "modal": [16, 26, 68], "cancel": [16, 20, 68, 69, 94], "silent": [16, 68, 118, 119, 162], "interpret": [16, 26, 45, 48, 52, 68, 69, 74, 104, 118, 119, 143, 154, 163, 164, 166, 173, 182, 184, 201, 202, 206, 238, 240, 241, 243, 249, 251], "short": [16, 26, 48, 64, 68, 69, 77, 99, 102, 119, 130, 145, 150, 201, 202, 205, 233, 240, 243, 246, 249, 257], "successfulli": [16, 20, 68, 69, 74, 94, 96, 99, 103, 118, 119, 184, 214], "newli": [16, 68, 103, 106, 119, 201, 249], "screen": [16, 19, 20, 22, 66, 68, 69, 71, 73, 74, 102, 135, 257], "previous": [16, 17, 61, 62, 68, 71, 74, 77, 78, 96, 118, 119, 130, 143, 182, 184, 201, 213, 246, 247, 249, 250, 251], "unusu": [16, 73, 92, 145, 239], "briefli": [16, 44, 79, 143, 196, 243], "unexpectedli": [16, 25], "pleas": [16, 17, 20, 24, 26, 34, 71, 83, 104, 117, 142, 183, 184, 202, 208, 213, 219, 222, 224, 225, 227, 233, 257], "network": [16, 37, 47, 48, 50, 53, 62, 74, 94, 103, 118, 138, 162, 178, 184, 213, 229, 252, 257], "wash": 16, "dog": [16, 59], "video": [16, 61, 62], "men": 16, "behav": [16, 22, 68, 94, 101, 108, 119, 147, 154, 164, 174, 184, 237], "badli": [16, 199], "unchang": [16, 20, 66, 154, 190, 192], "newlin": [16, 48, 59, 74, 133, 182, 184, 196, 208, 240, 253], "revers": [16, 55, 58, 59, 60, 68, 71, 77, 107, 121, 135, 164, 236, 257], "total": [16, 48, 58, 66, 68, 69, 73, 74, 121, 200, 206, 257], "fourth": [16, 47, 69, 119, 149], "ye": [16, 26, 47, 52, 60, 68, 69, 74, 77, 94, 97, 102, 118, 149, 233, 234, 235, 237, 239, 240, 243, 257], "answer": [16, 50, 73, 88, 94, 101, 118, 119, 174], "occur": [16, 20, 22, 26, 48, 52, 64, 68, 69, 70, 71, 74, 91, 94, 97, 99, 118, 119, 125, 126, 149, 150, 164, 173, 174, 176, 177, 179, 182, 184, 199, 201, 202, 203, 208, 229, 239, 243, 249, 250, 251, 252], "miscellan": [16, 49, 69, 192, 227], "smooth": 16, "brief": [16, 20, 23, 26, 43, 45, 47, 80, 97, 144], "deselect": [16, 69], "practic": [16, 19, 20, 23, 26, 48, 53, 69, 71, 74, 91, 94, 121, 124, 135, 154, 171, 174, 184, 198, 234, 238, 240, 241, 243, 257], "delet": [16, 44, 45, 68, 87, 96, 97, 98, 108, 127, 153, 197, 201, 203, 251], "radio": [16, 17, 20, 23, 25, 26, 68, 69, 74], "beneath": [16, 20, 68, 97, 154], "inequ": [16, 70, 73], "lastli": [16, 20], "lose": [16, 94, 118, 154], "window": [16, 17, 19, 20, 22, 23, 24, 25, 26, 43, 44, 45, 47, 51, 52, 53, 60, 61, 64, 66, 68, 69, 70, 71, 73, 74, 77, 78, 79, 82, 83, 84, 88, 90, 91, 92, 95, 97, 98, 99, 100, 103, 104, 118, 126, 127, 130, 132, 133, 139, 140, 143, 154, 162, 164, 183, 197, 198, 199, 201, 203, 205, 206, 211, 213, 219, 222, 223, 224, 227, 246, 248, 249, 250, 251, 252], "conclud": [16, 26, 47, 91], "hierarchi": [16, 17, 20, 21, 22, 26, 30, 62, 72, 80, 90, 105, 108, 119, 120, 123, 137, 139, 192, 194, 201, 203, 214, 232], "robust": [16, 20, 22], "unsav": [16, 139], "wide": [16, 20, 24, 26, 66, 68, 69, 71, 95, 96, 102, 154, 165, 166, 192, 211, 223, 249, 257], "categori": [16, 17, 19, 20, 24, 25, 26, 46, 64, 70, 73, 74, 97, 101, 102, 118, 135, 154, 201], "home": [16, 118, 199, 203], "alongsid": [16, 20, 26, 94, 143, 192, 233, 236], "abil": [16, 20, 37, 67, 74, 90, 99, 103, 154, 179, 182, 197, 240, 243, 246], "memo": 16, "learn": [16, 48, 51, 60, 97, 98, 100, 102, 115, 131, 135, 152, 153, 221, 223, 225, 232], "tour": [16, 21, 24, 61, 69, 99, 100, 144], "compact": [17, 131, 156, 241], "disabl": [17, 26, 68, 69, 94, 97, 107, 118, 196, 243], "gadget": [17, 19, 20, 21, 22, 23, 43, 45, 64, 68, 72, 73, 74, 235], "statu": [17, 21, 23, 25, 26, 68, 74, 90, 96, 97, 103, 105, 118, 119, 127, 139, 164, 174, 200, 201, 206, 235, 236, 238, 239, 240, 241, 242, 243, 244, 246], "sensit": [17, 68, 69, 94, 133, 147, 154, 198, 236, 247], "dialog": [17, 19, 21, 22, 23, 25, 43, 44, 45, 46, 47, 52, 53, 64, 68, 69, 74, 92, 94, 96, 97, 99, 101, 102, 103, 104, 135, 140, 184, 208, 252], "global": [17, 25, 37, 68, 90, 102, 104, 106, 107, 108, 118, 121, 125, 126, 127, 147, 150, 154, 164, 177, 192, 208, 219, 253], "f4": [17, 23, 25], "alt": [17, 23, 25, 69, 74], "consider": [17, 32, 86, 94, 127, 135, 149, 185], "superclass": [17, 20, 26, 29, 30, 48, 58, 62, 66, 67, 68, 69, 70, 71, 73, 74, 90, 92, 99, 106, 111, 118, 119, 127, 133, 154, 155, 156, 160, 161, 162, 164, 166, 169, 170, 173, 174, 177, 184, 194, 199, 200, 201, 202, 203, 205, 207, 214, 215, 219, 232, 237, 244, 257], "cut": [17, 23, 25, 26, 68, 69, 74, 96, 101, 145, 198], "clipboard": [17, 22, 23, 25, 68, 69, 74], "layout": [17, 20, 21, 22, 23, 25, 43, 64, 68, 69, 72, 74, 84, 90, 98, 108, 127, 131, 132, 133, 154, 159, 173, 235, 248], "properli": [17, 48, 97, 101, 142, 213, 214, 225, 233, 247, 251, 255], "outlin": [17, 26, 43, 45, 51, 66, 67, 69, 71, 77], "broadli": [17, 26, 69, 74], "speak": [17, 26, 69, 71, 74, 102, 106, 239], "updat": [17, 25, 29, 37, 44, 45, 46, 47, 66, 69, 84, 86, 88, 90, 91, 94, 96, 97, 99, 101, 102, 105, 108, 116, 117, 127, 130, 132, 142, 154, 176, 200, 201, 211, 219, 220, 223, 225, 226, 231, 246, 247, 249, 250, 251, 252], "horizont": [17, 19, 20, 23, 25, 48, 66, 68, 69, 70, 71, 73, 74], "appendix": [17, 79, 191], "refresh": [17, 25, 45, 69, 74, 90, 91, 94, 96, 97, 99], "2000": [18, 62, 65, 93, 109, 131, 172, 195], "2011": [18, 65, 75, 109, 146, 172, 214, 219, 256], "hacker": [18, 42, 61, 65, 75, 76, 77, 80, 93, 109, 143, 146, 172, 213, 219, 222, 223, 224, 227, 228, 229, 231, 232, 233, 240, 252], "compani": [18, 65, 75, 93, 109, 143, 146, 172], "herein": [18, 65, 75, 93, 109, 146, 172], "fictiti": [18, 65, 75, 93, 109, 146, 172], "permiss": [18, 50, 65, 75, 93, 96, 109, 118, 133, 146, 149, 162, 172, 184, 203], "herebi": [18, 65, 75, 93, 109, 146, 172], "grant": [18, 65, 75, 93, 109, 146, 172, 184, 201], "charg": [18, 65, 75, 93, 104, 109, 116, 119, 146, 172], "distribut": [18, 25, 26, 41, 44, 47, 50, 51, 65, 68, 70, 75, 93, 95, 109, 143, 146, 172, 190, 198, 219, 225, 226, 229, 231, 232, 249], "sublicens": [18, 65, 75, 93, 109, 146, 172], "sell": [18, 65, 75, 93, 109, 146, 149, 172], "permit": [18, 48, 60, 65, 66, 75, 93, 104, 106, 109, 118, 119, 123, 146, 147, 149, 153, 154, 172, 174, 177, 179, 184, 186, 189, 190, 191, 243, 250], "whom": [18, 65, 75, 93, 109, 146, 172], "furnish": [18, 65, 75, 93, 109, 146, 172], "subject": [18, 24, 48, 65, 69, 73, 75, 93, 109, 118, 127, 135, 143, 146, 164, 172, 176, 177, 184], "shall": [18, 48, 65, 75, 93, 109, 146, 172], "substanti": [18, 20, 65, 75, 93, 109, 119, 121, 146, 172, 224, 225, 246, 248], "THE": [18, 65, 75, 93, 109, 146, 172], "AS": [18, 65, 75, 93, 109, 146, 172], "warranti": [18, 25, 47, 65, 75, 93, 109, 146, 172], "OF": [18, 25, 47, 65, 75, 93, 109, 146, 172], "OR": [18, 60, 65, 75, 93, 109, 146, 172, 192], "impli": [18, 44, 65, 66, 71, 75, 93, 94, 109, 119, 146, 164, 172, 177, 199, 237, 239], "BUT": [18, 65, 75, 93, 109, 146, 172], "NOT": [18, 60, 65, 75, 93, 109, 119, 142, 146, 162, 172, 176, 192, 202], "TO": [18, 48, 65, 75, 93, 109, 130, 146, 172, 208], "merchant": [18, 65, 75, 93, 109, 146, 172], "fit": [18, 65, 69, 73, 75, 90, 91, 92, 93, 101, 109, 133, 145, 146, 154, 166, 172, 182, 192, 208, 238, 257], "FOR": [18, 65, 75, 93, 109, 146, 172, 188], "AND": [18, 45, 60, 65, 75, 93, 109, 146, 172, 192], "noninfring": [18, 65, 75, 93, 109, 146, 172], "IN": [18, 48, 65, 75, 93, 109, 146, 172], "NO": [18, 65, 75, 93, 104, 109, 146, 172, 208], "holder": [18, 44, 65, 75, 93, 109, 146, 172, 213], "BE": [18, 65, 75, 93, 109, 146, 172], "liabl": [18, 65, 75, 93, 109, 146, 172], "claim": [18, 65, 73, 75, 93, 109, 146, 172, 176, 177, 257], "damag": [18, 65, 75, 93, 109, 146, 172], "liabil": [18, 65, 75, 93, 109, 146, 172], "contract": [18, 48, 52, 65, 69, 75, 93, 109, 146, 154, 172, 234], "tort": [18, 65, 75, 93, 109, 146, 172], "aris": [18, 48, 65, 75, 93, 94, 109, 127, 133, 146, 172, 184, 225], "WITH": [18, 65, 75, 93, 109, 146, 172], "reli": [19, 22, 37, 43, 48, 58, 64, 85, 99, 108, 119, 126, 147, 152, 177, 219, 233, 237, 239, 240, 243], "heavili": [19, 108, 143, 152, 233], "principl": [19, 22, 24, 69, 74, 91, 164, 237], "obscur": [19, 94, 140, 177, 251], "variou": [19, 23, 26, 37, 45, 53, 68, 69, 73, 74, 94, 101, 104, 106, 119, 127, 133, 145, 161, 179, 182, 184, 192, 201, 202, 206, 208, 227, 229, 231, 233, 236, 243, 246, 247, 249, 251, 253], "overal": [19, 20, 22, 23, 24, 25, 26, 52, 68, 71, 74, 90, 121, 200], "familiar": [19, 20, 23, 24, 26, 51, 69, 96, 97, 101, 143, 153, 208], "studi": [19, 26, 50, 61, 62, 100, 135, 233], "spend": [19, 45, 139], "button": [19, 20, 22, 23, 25, 45, 46, 47, 52, 64, 68, 72, 73, 74, 90, 91, 92, 94, 97, 101, 102, 103, 119, 130, 140], "visual": [19, 26, 30, 66, 69, 71, 74, 97, 98, 104, 142, 247, 249, 251], "children": [19, 20, 22, 23, 25, 26, 68, 72, 73, 74, 205], "firstli": [19, 149], "particularli": [19, 20, 26, 48, 69, 73, 91, 94, 174, 177, 184, 198, 199, 225, 237, 239, 246], "attract": [19, 135, 238], "rearrang": [19, 121, 177], "secondli": [19, 149], "group": [19, 20, 22, 26, 45, 50, 51, 64, 68, 73, 78, 79, 101, 121, 124, 134, 143, 145, 182, 201, 206, 237, 242, 257], "inher": [19, 20, 127, 177], "vertic": [19, 20, 23, 25, 48, 66, 67, 68, 69, 70, 73, 74], "incorpor": [19, 20, 66, 69, 102, 107, 117, 172, 197, 202, 242, 254], "exclus": [19, 60, 66, 69, 154, 156, 164, 184, 192, 203], "serv": [19, 26, 45, 47, 68, 92, 118, 147, 154, 201, 208], "interactor": [19, 20, 24, 68, 69, 78, 81, 84, 87, 94, 96, 116, 119, 213, 252], "segment": [19, 26, 66, 67, 70, 71, 118, 173, 252, 257], "minut": [19, 48, 135, 142, 144, 202], "fragment": [19, 20, 43, 45, 72, 97, 99, 106, 108, 127, 149, 184, 191, 205, 243, 257], "revolv": [20, 138], "warrant": 20, "proper": [20, 26, 48, 106, 149, 164, 177, 237, 248, 250], "pop": [20, 26, 47, 53, 55, 68, 69, 74, 90, 94, 96, 97, 121, 125, 142, 177, 207, 252], "formal": [20, 48, 121, 201, 233], "perman": [20, 74, 89, 94, 118, 177, 190, 235], "rigor": 20, "wizard": [20, 22, 24, 26, 47, 52, 64, 68, 69, 73, 92, 98, 99, 100], "straight": [20, 50, 67, 71, 107, 119], "suggest": [20, 42, 66, 74, 107, 117, 166, 172, 174, 184, 203, 236, 237, 247], "shut": [20, 45, 213, 229, 251], "obvious": [20, 26, 69, 118, 119, 238], "insist": [20, 198], "entranc": 20, "argc": [20, 77, 126], "argv": [20, 43, 77, 126], "frustrat": [20, 201], "earli": [20, 45, 48, 52, 61, 62, 100, 135, 141, 143, 199, 233, 252], "stage": [20, 23, 54, 101, 104, 106, 130, 233, 246, 250, 252], "ineleg": [20, 69], "concret": [20, 26, 43, 45, 47, 48, 62, 66, 68, 70, 73, 74, 118, 119, 127, 152, 154, 164, 177, 184, 198, 199, 203, 205, 239], "freedom": 20, "glue": [20, 23, 47, 48, 74, 108, 126], "eventu": [20, 37, 80, 107, 141, 174, 177, 197, 216, 246], "cleanli": [20, 110, 143], "modern": [20, 22, 61, 62, 211, 225, 240, 243, 246], "edg": [20, 26, 66, 67, 69, 70, 71, 74, 139, 250], "quick": [20, 42, 44, 49, 61, 69, 83, 84, 97, 98, 100, 144, 152, 185, 240, 243], "icon": [20, 26, 66, 68, 69, 74, 94, 97, 101, 102, 135, 139, 142], "solut": [20, 50, 66, 69, 127, 132, 145, 191, 236, 238], "duim": [20, 23, 24, 25, 33, 43, 45, 46, 50, 61, 64, 90, 94, 101, 235, 236], "undefin": [20, 48, 54, 64, 68, 74, 96, 97, 102, 106, 118, 127, 161, 164, 177, 184, 206, 233, 238], "lean": 20, "imag": [20, 22, 26, 30, 66, 68, 69, 70, 71, 73, 74, 104, 118, 135, 138, 140, 154, 184, 198], "oddli": 20, "subset": [20, 44, 70, 96, 119, 143, 167, 173, 192, 201, 202, 225], "bottom": [20, 26, 67, 68, 69, 70, 71, 73, 74, 96, 97, 101, 102, 103, 118, 208, 249], "conjunct": [20, 74, 119, 159, 162, 164, 184, 198, 201, 203, 236, 239, 249], "entri": [20, 45, 66, 67, 68, 69, 70, 71, 73, 74, 77, 78, 80, 82, 84, 86, 88, 90, 92, 94, 104, 107, 108, 118, 119, 122, 123, 126, 154, 161, 166, 171, 177, 179, 180, 182, 184, 197, 202, 203, 206, 208, 246, 248, 251, 257], "logic": [20, 26, 46, 60, 66, 68, 69, 94, 104, 106, 131, 132, 133, 154, 156, 166, 182, 201, 206, 238, 257], "wire": [20, 243], "underli": [20, 21, 22, 23, 47, 48, 52, 53, 68, 118, 120, 127, 154, 162, 167, 173, 177, 184, 199, 203, 249], "seriou": [20, 74, 80, 97, 102, 106, 136, 141, 164, 177, 208, 215, 235, 246, 251, 252], "focu": [20, 25, 26, 43, 48, 68, 69, 73, 74, 108, 131, 137, 143, 197], "ok": [20, 26, 43, 46, 47, 52, 68, 69, 74, 92, 94, 97, 102, 103, 118, 119, 176, 208, 257], "prefac": [21, 49, 98], "overview": [21, 49, 51, 61, 72, 90, 94, 96, 97, 100, 108, 125, 144, 158, 174], "enhanc": [21, 50, 61, 81, 192, 193, 196, 213, 215, 217, 225, 233, 238, 246, 250, 251, 252, 253], "pronounc": [22, 233], "dwim": 22, "toolkit": [22, 43, 61, 62, 71, 101, 143], "ui": [22, 69, 119, 130, 139, 232], "insul": 22, "regardless": [22, 69, 97, 101, 118, 119, 145, 177, 184, 196, 199, 201, 237, 240, 243], "capabl": [22, 45, 48, 52, 69, 71, 94, 96, 99, 106, 118, 119, 134, 135, 162, 170, 225, 249], "fundament": [22, 50, 69, 71, 201], "quickli": [22, 47, 99, 102, 130, 138, 143, 240, 243], "experienc": [22, 48], "har": 22, "ground": [22, 26, 97, 139, 153, 236], "clear": [22, 46, 68, 71, 74, 90, 91, 94, 97, 106, 107, 113, 118, 119, 126, 135, 143, 149, 154, 173, 184, 208, 233, 234, 246, 248, 251], "minimum": [22, 26, 52, 67, 69, 70, 71, 73, 74, 118, 119, 156, 166, 182, 192, 233, 238], "swamp": 22, "hardwar": [22, 50, 71, 118, 127, 184, 206], "configur": [22, 53, 69, 73, 74, 99, 103, 106, 130, 132, 136, 139, 141, 183, 199, 200, 226, 247, 248, 249, 250, 251, 255], "nativ": [22, 35, 45, 48, 50, 52, 73, 74, 96, 101, 107, 116, 118, 121, 125, 126, 132, 143, 184, 199, 203, 205, 213, 246], "target": [22, 26, 37, 43, 44, 45, 48, 56, 61, 62, 74, 87, 94, 103, 104, 116, 118, 120, 125, 127, 129, 143, 154, 163, 164, 176, 201, 203, 213, 235, 238, 239, 240, 241, 242, 243, 249, 257], "consequ": [22, 66, 68, 71, 145, 164, 184, 201], "discret": [22, 26, 130, 189, 202, 233], "physic": [22, 26, 48, 69, 118, 184, 203, 205], "repaint": [22, 26, 73, 74, 94], "request": [22, 26, 34, 43, 44, 45, 46, 47, 48, 50, 51, 53, 66, 68, 94, 96, 117, 119, 130, 164, 182, 183, 184, 197, 199, 218, 226, 233, 235, 237, 251, 257], "scratch": [22, 69, 142], "font": [22, 26, 48, 66, 68, 69, 74, 197], "routin": [22, 23, 68, 74, 108, 119, 126, 149, 198, 208, 249], "lai": [22, 26, 68, 69, 73, 74, 94, 102, 138, 227], "hierarch": [23, 26, 64, 69, 74, 96, 106, 198], "hook": [23, 135, 139, 208], "onlin": [23, 68, 69, 73, 74, 142, 172, 206, 221], "mnemon": [23, 45, 68, 69, 74], "forth": [23, 42, 66, 90, 96, 119, 154, 238], "toward": [23, 32, 71, 97, 106, 140, 166, 192, 223, 246], "tooltip": [23, 69], "press": [23, 26, 68, 69, 74, 80, 97, 100], "quicker": [23, 74], "alphanumer": [23, 69, 147, 198, 236], "keysym": [23, 25, 74], "sole": [23, 154, 197], "transpir": 23, "complement": [24, 61, 66, 155, 156, 166, 176], "advis": [24, 26, 182], "depth": [24, 66, 68, 69, 74, 99, 119, 133, 135, 144, 182, 257], "divid": [24, 26, 48, 60, 68, 69, 97, 118, 166, 171, 176, 192, 200, 202, 208, 238], "broader": [24, 61, 62, 90, 100, 257], "spectrum": 24, "materi": [24, 30, 61, 71, 92, 117, 212, 232], "independ": [24, 37, 48, 50, 71, 74, 86, 88, 96, 118, 177, 190, 201, 202], "whichev": [24, 95, 99], "organ": [24, 26, 34, 43, 59, 62, 68, 96, 117, 198, 206, 225, 249], "smoother": 24, "furthermor": [24, 48, 64, 71, 118, 133, 147, 161, 173, 186, 234], "instal": [24, 26, 37, 46, 50, 51, 54, 64, 68, 74, 80, 83, 88, 92, 94, 96, 98, 102, 104, 108, 116, 117, 118, 119, 126, 130, 132, 144, 164, 199, 201, 206, 208, 213, 219, 221, 222, 224, 225, 226, 227, 229, 231, 232, 247, 249, 250, 253], "synopsi": [25, 37, 47, 101], "2004": [25, 47, 143, 146, 250], "licens": [25, 37, 47, 95, 213, 222, 232, 233], "txt": [25, 47, 74, 101, 117, 205], "apart": [25, 32, 45, 50, 99, 108, 124, 197, 223, 225], "necess": 26, "remind": [26, 251], "necessarili": [26, 48, 52, 66, 68, 71, 119, 127, 147, 177, 201, 208, 233], "border": [26, 69, 71, 73, 74, 140], "toolbar": [26, 47, 69, 90, 91, 94, 96, 97, 101, 102], "grai": [26, 62, 66, 68, 69, 91, 96, 97, 201], "encompass": [26, 69], "microsoft": [26, 45, 46, 50, 62, 69, 92, 96, 99, 101, 104, 154, 164, 201, 203, 205, 208], "singli": 26, "toggl": [26, 69, 94, 218], "frequent": [26, 55, 71, 102, 119, 135, 142, 148, 177, 208, 219, 251], "heavier": 26, "destruct": [26, 68, 70, 147, 155, 164, 174, 176], "intrins": [26, 69, 137, 176, 251], "bold": [26, 66, 68, 69, 184], "emphas": 26, "guidelin": [26, 68, 69, 114, 177, 244, 257], "accordingli": [26, 69, 94, 104, 123, 164, 192], "20": [26, 69, 77, 97, 135, 154, 202, 232], "characterist": [26, 62, 66, 71, 74, 94, 99, 101, 127, 154, 201], "sunken": [26, 69], "recess": 26, "groov": [26, 69], "drawn": [26, 66, 68, 69, 71, 73, 74, 106, 140, 200], "flat": [26, 69, 101], "No": [26, 48, 50, 59, 60, 64, 68, 69, 71, 77, 94, 102, 149, 154, 177, 184, 199, 203, 221, 232, 233, 237, 238, 243, 257], "drop": [26, 68, 69, 74, 90, 94, 96, 97, 107, 119, 139, 156, 162, 177, 201, 232, 247], "shortcut": [26, 46, 80, 90, 102, 214], "combo": [26, 69, 90], "richer": [26, 69, 202, 236], "directori": [26, 37, 52, 54, 63, 69, 74, 77, 80, 82, 83, 85, 86, 87, 88, 89, 104, 114, 115, 117, 118, 128, 130, 131, 132, 198, 204, 205, 206, 208, 211, 213, 219, 233, 246, 247, 249, 250, 251, 252, 253], "32": [26, 46, 48, 61, 62, 63, 77, 89, 92, 94, 97, 118, 166, 176, 184, 192, 199, 208, 213, 219, 247, 250, 251], "pixel": [26, 68, 69, 71, 73, 74], "unexpect": [26, 94, 97, 101, 177, 199], "retriev": [26, 37, 43, 44, 45, 46, 48, 74, 96, 119, 125, 126, 145, 184, 202, 213, 214, 233, 251], "accompani": [26, 45, 69, 97, 140, 172, 201], "repli": [26, 48], "white": [26, 48, 66, 68, 71, 91, 97, 162], "head": [26, 55, 59, 69, 71, 77, 107, 195], "modif": [26, 48, 62, 64, 69, 104, 164, 203, 208, 249], "date": [26, 48, 52, 69, 97, 98, 99, 103, 104, 124, 130, 195, 201, 203, 204, 212, 225, 232, 233, 237, 246, 247, 248, 249, 250], "ascend": 26, "descend": [26, 74, 144, 182, 225], "depict": [26, 71, 94, 97, 201], "upward": 26, "image11": 26, "downward": [26, 71], "decrement": [26, 45, 58, 176, 177, 192], "50": [26, 69, 73, 97, 135, 152, 154, 202, 246], "24": [26, 48, 77, 79, 94, 202, 241], "exact": [26, 45, 69, 70, 71, 74, 91, 118, 119, 147, 151, 171, 192, 201], "1234": [26, 69, 233], "align": [26, 66, 67, 68, 69, 70, 71, 73, 74, 119, 124, 154, 164, 243, 251, 257], "center": [26, 38, 67, 68, 69, 71, 73, 74], "height": [26, 48, 66, 67, 68, 69, 70, 71, 73, 74, 173], "10": [26, 48, 59, 61, 62, 63, 68, 69, 71, 73, 74, 77, 124, 152, 154, 164, 179, 184, 213, 229, 232, 233, 241, 243, 244, 246, 249, 250, 251, 252], "identif": [26, 124], "slide": [26, 61, 62, 69], "interestingli": [26, 174], "occas": 26, "tick": [26, 69], "evenli": 26, "oddbal": 26, "29": [26, 202, 249], "compel": 26, "gaug": 26, "download": [26, 37, 46, 61, 63, 69, 80, 83, 95, 96, 119, 130, 138, 213, 219, 222, 224, 225, 226, 228, 229, 231, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255], "mail": [26, 34, 42, 69, 172, 205, 223, 225, 233, 235, 237, 243], "backup": [26, 97, 130, 173], "wait": [26, 29, 45, 47, 107, 118, 119, 127, 142, 174, 176, 177, 184, 199, 203, 206, 233], "candid": 26, "monitor": [26, 48, 66, 69, 90, 177, 233, 257], "constantli": [26, 251], "enter": [26, 43, 45, 46, 47, 52, 54, 68, 69, 74, 78, 80, 94, 96, 97, 99, 103, 118, 119, 126, 154, 164, 182, 199, 206], "substanc": 26, "six": [26, 48, 97, 102], "pin": [26, 73, 118], "corner": [26, 46, 67, 68, 70, 71, 73, 74, 140, 215], "tab": [26, 43, 46, 47, 48, 68, 71, 73, 74, 80, 92, 96, 117, 182, 184, 243, 251], "entireti": 26, "largest": [26, 66, 70, 73, 74, 166, 177], "axi": [26, 67, 70, 71], "seven": [26, 48, 152], "eight": [26, 48, 66, 213], "coordin": [26, 64, 66, 67, 68, 70, 71, 74, 104], "recent": [26, 29, 62, 92, 94, 97, 102, 118, 119, 130, 135, 145, 184, 218, 225, 248], "obei": [26, 66, 70, 73, 124, 171], "databas": [26, 49, 53, 92, 94, 96, 98, 101, 102, 108, 116, 118, 135, 139, 141, 203, 234], "sequenti": [26, 68, 177, 184], "ultraviolet": [26, 69], "fairli": [26, 37, 94, 101, 108, 135, 236, 243, 257], "region": [26, 64, 66, 67, 69, 71, 73, 74, 96, 118, 127, 164], "absolut": [26, 52, 118, 164, 166, 192, 205, 249], "occlud": [26, 68, 74], "attribut": [26, 43, 45, 46, 66, 69, 74, 118, 119, 133, 201, 202], "queu": [26, 45, 74, 107, 118, 174, 177, 184, 203], "guid": [26, 42, 46, 61, 68, 69, 76, 77, 84, 89, 92, 98, 101, 108, 144, 164, 223, 237, 246, 252], "modeless": [26, 68, 69], "review": [26, 83, 99, 233], "constitut": [26, 67], "extent": [26, 59, 68, 71, 107, 108, 116, 127, 131, 153, 154, 164, 174, 177], "topmost": [26, 74, 118], "stuff": [26, 59, 107, 135, 154, 191, 257], "app": [26, 77, 80, 83, 101, 103, 108, 118, 119, 198, 238, 253], "foreground": [26, 66, 68, 69, 71, 74, 94, 162], "simplest": [26, 44, 68, 94, 107, 133, 142, 152, 206, 237], "proce": [26, 45, 47, 48, 52, 92, 94, 101, 118, 119, 130, 131, 176, 177, 203], "dismiss": [26, 68, 69], "gather": [26, 90, 99, 101, 108, 119], "wherev": [26, 44, 48, 124, 189, 201, 233], "guarante": [26, 48, 64, 66, 70, 71, 106, 118, 119, 154, 161, 164, 174, 176, 177, 182, 184, 233], "alert": [26, 48, 68, 74], "palett": [26, 66, 68, 74, 135], "popup": [26, 53, 69, 90, 94, 96, 97], "win32": [26, 63, 86, 88, 89, 92, 95, 101, 104, 122, 127, 132, 164, 178, 199, 201, 203, 206, 235, 251], "emul": [26, 63, 135, 143, 213], "topic": [26, 48, 68, 73, 74, 101, 117, 233], "inclus": [26, 52, 58, 60, 66, 68, 70, 140, 184, 192], "book": [26, 50, 51, 61, 62, 69, 142, 144, 148, 188, 220, 237, 257], "plugin": [27, 31, 81, 218], "interoper": [27, 45, 48, 49, 50, 61, 62, 101, 143, 233, 251], "intel": [27, 61, 62, 118, 206, 213, 219], "www": [27, 46, 48, 50, 130, 199, 202, 205], "en": [27, 46], "html": [27, 30, 50, 73, 74, 90, 94, 96, 114, 195, 202, 205, 211, 220, 232, 233, 235, 254], "appl": [28, 59, 144, 206, 225, 237], "bridg": [28, 48, 135, 154, 225, 227, 249], "assist": [28, 77, 106, 177, 201, 223, 225], "bridgesupport": 28, "macosforg": 28, "mac": [28, 33, 37, 135, 136, 143, 219, 222, 223, 225, 246, 247, 249], "prior": [28, 37, 77, 112, 162, 233], "art": [28, 51], "jscocoa": 28, "usag": [28, 49, 63, 67, 78, 90, 96, 99, 106, 108, 118, 132, 159, 176, 184, 208, 209, 217, 219, 226, 237, 246, 249, 257], "luacocoa": 28, "clozur": 28, "cl": [28, 38, 246, 251], "lispwork": [28, 53, 143, 213, 225], "annot": [29, 108, 234, 251], "c3": [29, 219, 244], "algorithm": [29, 61, 62, 91, 99, 102, 108, 135, 171, 190, 215, 224, 232, 235, 246], "linear": [29, 62, 131, 182, 219, 244], "monoton": [29, 62, 170, 235], "eric": [29, 62, 143, 146], "kidd": [29, 62, 143, 146], "wrote": [29, 47, 88, 143], "technic": [29, 62, 131, 135, 152, 233, 244], "compress": [29, 62, 184, 215, 235], "research": [29, 177, 211], "yoav": 29, "zibin": 29, "knowledg": [29, 43, 45, 48, 61, 66, 101, 119, 121, 124, 125, 127, 135, 141, 152, 176, 192, 225], "mainli": [29, 37, 52, 53, 61, 96, 99, 106, 108, 136, 213, 236], "thesi": 29, "json": [30, 83, 85, 205, 229, 232, 251, 253], "sphinx": [30, 37, 110, 114, 211, 232, 246, 253], "elasticsearch": 30, "markup": [30, 105, 111, 114, 233], "svg": 30, "j": [30, 48, 66, 166, 233, 237], "canva": 30, "analysi": [31, 108, 127, 129, 153, 164], "datastructur": 31, "inspir": [31, 38, 104, 142, 143], "pmd": 31, "pylint": 31, "clang": [31, 130, 176, 229, 231, 248, 249, 250], "reviv": [32, 107], "lexer": [32, 220], "dfmc": [32, 61, 62, 104, 107, 116, 119, 126, 131, 132, 185, 213, 239, 243, 246], "infix": [32, 108, 140, 143, 147, 148, 192], "surfac": [32, 67, 73], "exchang": [32, 107, 127, 142, 208], "flow": [32, 37, 106, 107, 116, 118, 121, 122, 143, 145, 164, 177, 213, 246, 249], "infer": [32, 61, 62, 99, 108, 116, 147, 153, 192, 246, 251], "touch": [32, 71, 152, 219, 223, 225], "rfc822": [32, 202], "interim": [32, 121], "gir": [33, 115], "gobject": [33, 115, 251], "linux": [33, 61, 63, 77, 86, 88, 104, 115, 132, 206, 213, 219, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 246, 247, 249, 250, 251, 252], "github": [33, 42, 63, 80, 85, 88, 110, 117, 130, 211, 213, 215, 218, 232, 233, 236, 238, 240, 241, 242, 243, 249, 250, 251, 252, 253, 254, 255], "lang": [33, 42, 63, 80, 117, 130, 183, 195, 213, 218, 233, 238, 240, 241, 242, 243, 250, 251, 252, 253, 254, 255], "master": [33, 85, 115, 117, 130, 233, 235, 238, 240, 241, 243], "particip": [34, 222], "submiss": [34, 48], "submit": [34, 117, 135, 218], "websit": [34, 37, 213, 219, 222, 224, 227, 233], "repositori": [34, 37, 42, 43, 45, 48, 51, 53, 54, 80, 85, 96, 108, 111, 114, 117, 139, 143, 178, 211, 215, 225, 233, 238, 244, 246, 251, 252, 253, 254, 255], "contact": [34, 46, 221, 233], "irc": [34, 221, 225, 233], "mentor": 34, "bruce": [34, 117, 143, 250, 251, 253], "mitchen": [34, 117, 143, 250, 251, 253], "dylint": [34, 41], "javascript": [34, 41, 153, 225], "cilk": [34, 41], "cocoa": [34, 41], "gtk": [34, 41, 62, 154, 198, 232], "frontend": [34, 41], "rethink": [34, 41], "llvm": [35, 61, 62, 63, 77, 104, 122, 129, 130, 176, 206, 227, 228, 229, 232, 251, 252, 253], "harp": [35, 84, 104, 116, 122, 176, 206, 213, 227, 229, 246, 247, 249, 250, 251], "jvm": [35, 132], "bla": 36, "lapack": 36, "sse": 36, "auto": [36, 69, 225], "manner": [37, 45, 48, 67, 68, 86, 145, 155, 176, 177, 182, 184, 190], "believ": [37, 107, 141, 225], "endeavor": 37, "registri": [37, 53, 78, 80, 82, 83, 84, 92, 94, 108, 129, 208, 214, 219, 222, 231, 237, 238, 246, 247, 248, 252], "night": [37, 62], "vision": [37, 62, 225], "mondai": [37, 202], "nnv": 37, "rebuilt": [37, 97, 102], "rebuild": [37, 53, 91, 94, 98, 99, 101, 102, 138, 142], "talk": [37, 47, 50, 103, 117, 201], "lid": [37, 78, 83, 84, 85, 87, 88, 98, 99, 104, 129, 142, 154, 178, 208, 209, 247, 248, 250], "wouldn": [37, 145], "roughli": [37, 61, 62, 71, 73, 102, 140, 147, 149, 182, 203, 247, 257], "sniffer": 37, "trigger": [37, 43, 97, 107, 201, 203], "big": [37, 60, 108, 118, 142, 152, 154, 176, 199, 206, 213, 236, 257], "commun": [37, 43, 44, 45, 47, 48, 50, 52, 62, 66, 104, 107, 118, 135, 141, 143, 201, 225, 233, 244], "clojur": 37, "leiningen": 37, "quicklisp": 37, "emac": [37, 61, 63, 84, 87, 96, 104, 117, 131, 162, 213, 232, 246, 247, 251, 255], "marmalad": 37, "elpa": 37, "erlang": 37, "epm": 37, "hax": 37, "haxelib": 37, "lua": 37, "luarock": 37, "nodej": 37, "npm": 37, "hackag": 37, "ocaml": 37, "godi": 37, "php": 37, "pear": 37, "perl": [37, 147, 235], "cpan": 37, "python": [37, 153, 182, 211, 233, 235, 236, 249, 251], "pip": 37, "cheeseshop": 37, "easy_instal": 37, "racket": 37, "raco": 37, "rubi": 37, "rubygem": 37, "metadata": [37, 108, 139], "tag": [37, 48, 60, 77, 118, 119, 122, 125, 130, 154, 182, 205, 248, 251], "disadvantag": [37, 48, 53, 94, 121], "git": [37, 63, 84, 117, 130, 143, 231, 233, 246, 247, 248, 251, 252, 253, 254, 255], "mercuri": [37, 48], "subvers": 37, "easiest": [37, 58, 63, 74, 94, 132, 162, 173], "unzip": 37, "unpack": [37, 63, 198, 213, 219, 222, 224, 227, 238], "tarbal": [37, 63, 130], "client": [37, 42, 44, 45, 48, 49, 50, 54, 69, 73, 90, 96, 98, 111, 116, 118, 119, 132, 152, 154, 162, 173, 189, 199, 201, 216, 235, 239, 257], "search": [37, 52, 54, 68, 69, 80, 84, 94, 104, 118, 119, 145, 154, 164, 173, 184, 198, 201, 233, 236, 249, 257], "apropo": [37, 68, 80], "uninstal": [37, 164], "nice": [37, 62, 130, 196, 226, 243], "manifest": 37, "bundl": [37, 47, 130, 225, 255], "install_name_tool": 37, "brows": [37, 46, 49, 78, 80, 92, 96, 98, 99, 102, 137, 139, 214, 232, 233], "fear": 37, "difficult": [37, 45, 62, 135, 143, 185, 198, 201, 211, 239, 243], "mitig": [37, 62], "somewher": [37, 73, 139], "awesom": [37, 136], "nowher": [37, 70, 73, 74], "technologi": [37, 134, 135, 136, 139, 140, 142], "decis": [37, 48, 50, 61, 62, 68, 71, 99, 107, 118, 131, 233, 238, 244], "relianc": [37, 62], "satisfi": [37, 43, 44, 45, 48, 55, 62, 70, 139, 164, 182, 201], "benchmark": [38, 238, 248, 249], "infrastructur": [38, 44, 47, 50, 61, 62], "borrow": [38, 166], "pypi": 38, "boinkmark": 38, "microbench": 38, "toolchain": 39, "dtrace": 40, "systemtap": 40, "2012": [41, 143, 146, 213, 215, 233, 235, 236, 247, 256], "searchabl": 41, "browsabl": [41, 42, 90], "workspac": [41, 83, 88, 231, 232, 252, 253], "packag": [41, 61, 81, 83, 85, 100, 130, 133, 178, 183, 184, 218, 231, 233, 252, 253, 254], "catalog": [41, 107, 130, 201, 231, 252], "glossari": 41, "matrix": [42, 55, 130, 144, 154, 232], "channel": [42, 130, 226, 233], "gitlab": 42, "googl": [42, 132, 222], "gist": 42, "contribut": [42, 117, 135, 172, 211, 238, 250, 251, 252, 253], "bug": [42, 50, 53, 61, 80, 87, 98, 99, 100, 117, 142, 153, 172, 177, 190, 213, 218, 219, 223, 229, 232, 237, 246, 249, 250, 251, 252, 253, 254], "unsur": [42, 69], "googlegroup": [42, 130, 195, 233], "dedic": [42, 121, 177], "chat": [42, 50, 51, 223], "comp": [42, 108], "forum": [42, 143, 233], "fosstodon": [42, 130], "reddit": [42, 130], "stack": [42, 62, 68, 73, 79, 92, 98, 99, 107, 120, 121, 125, 127, 128, 140, 154, 176, 177, 208, 246, 247, 251, 255], "overflow": [42, 48, 70, 118, 154, 171, 201, 251], "summer": [42, 225], "wiki": [42, 115, 117, 225, 233], "orb": [43, 45, 46, 49, 51, 54, 61, 251], "motiv": [43, 45, 71, 233, 238], "fulli": [43, 47, 64, 66, 71, 103, 105, 106, 123, 139, 153, 192, 199, 203, 225, 234, 237, 243, 246, 253], "scepter": [43, 44, 46, 47, 51, 52, 54, 213, 251], "resid": [43, 45, 47, 50, 66, 92, 101, 102, 103, 203, 206, 246], "bankingdemo": [43, 44, 45], "checkingaccount": [43, 45], "proxi": [43, 44, 45, 108, 118, 174], "stem": [43, 45, 47], "princip": [43, 45, 48, 77, 184], "revamp": [43, 45, 232], "overdraft": [43, 44, 45], "focal": [43, 102, 201], "tabular": 43, "readi": [43, 45, 46, 47, 50, 74, 94, 103, 119, 141, 143, 208, 218, 233], "possess": 43, "Be": [43, 45, 53, 94, 108, 132], "pidl": [43, 45, 47, 48, 53], "is_a": 43, "logical_type_id": 43, "object_to_str": 43, "obj": [43, 59, 94, 119, 198, 225], "string_to_object": 43, "str": [43, 59, 118, 119, 133], "typedef": [43, 45, 107, 127, 131, 154], "orbid": [43, 53], "arg_list": 43, "orb_init": [43, 47, 52], "orb_identifi": 43, "ancestor": [43, 69, 74, 137], "invert": [43, 70], "bootstrap": [43, 130, 143, 150, 226, 242, 246, 249, 251], "decod": [43, 173, 176, 202, 251, 257], "file_to_object": 43, "queri": [43, 45, 46, 69, 74, 120, 182, 201, 205, 208, 251], "demo": [43, 44, 46, 51, 53, 54, 251], "orbnam": [43, 45, 53], "temp": [43, 47, 108, 203, 205, 251, 252], "ior": [43, 45, 47, 53, 66], "lookup": [43, 68, 119, 120, 131, 173, 176], "failur": [43, 44, 48, 51, 92, 119, 145, 164, 173, 177, 182, 184, 199, 201, 206, 208, 250, 251], "_": [43, 48, 69, 77, 119, 121, 123, 147, 185, 193, 242, 252, 257], "dash": [43, 66, 71, 123, 203, 257], "arglist": 43, "instruct": [43, 45, 47, 50, 63, 104, 107, 118, 119, 125, 127, 130, 143, 176, 177, 201, 206], "reconstitut": 43, "unspecif": 43, "narrow": [43, 45], "coerc": [43, 47, 48, 70, 74, 97, 166, 184, 201, 203, 205, 208], "emploi": [43, 68, 77, 191, 199, 220], "coercion": [43, 48, 192, 205, 237], "omg": [44, 47, 48, 50, 51, 52], "subsect": [44, 48, 52, 118], "folder": [44, 45, 46, 47, 51, 52, 54, 69, 92, 98, 99, 101, 102, 103, 142, 198, 203], "readonli": [44, 45, 48], "credit": [44, 45, 149], "unsign": [44, 45, 48, 176, 203, 208, 246, 250, 251], "refus": [44, 97, 119, 199], "debit": [44, 45], "monetari": 44, "qualifi": [44, 90, 103, 119, 199], "overdrawn": [44, 45], "agre": [44, 198, 213, 235, 237], "notion": [44, 69, 118, 177, 183, 201], "exploit": 44, "persist": [44, 45, 46, 53, 94, 99, 101, 104, 108, 119, 173], "unknown": [44, 48, 74, 94, 97, 145, 149, 201, 202], "reject": [44, 201, 233, 238], "duplicateaccount": [44, 45], "openaccount": [44, 45], "opencheckingaccount": [44, 45], "nonexistentaccount": [44, 45], "retrieveaccount": [44, 45], "closeaccount": [44, 45], "qualif": [44, 118], "fetch": [44, 154, 201], "getter": [44, 48, 60, 94, 119, 131, 137, 150, 154, 239], "hide": [44, 48, 66, 69, 74, 92, 94, 96, 97, 118, 184, 201, 206], "remot": [44, 48, 79, 98, 100, 120, 135, 141, 199, 201, 203, 213], "subfold": [44, 46, 51, 52, 54, 92, 95, 99, 101, 102, 103], "hdp": [44, 46, 92, 99, 101, 104, 198, 250], "subproject": [44, 47, 52, 96, 99, 101, 213], "impress": [44, 66, 136], "counterpart": [44, 59, 205], "onto": [44, 48, 66, 70, 71, 73, 74, 80, 94, 96, 99, 103, 119, 121, 127, 139, 152, 154, 177, 183], "alias": [44, 48, 71, 129, 199], "rise": [44, 51], "subordin": [44, 48], "append": [44, 48, 52, 59, 71, 77, 92, 101, 152, 154, 184, 203, 207, 208, 249], "slash": [44, 48, 123], "lifetim": [45, 68, 118, 177, 206], "examplescorbabankbank": 45, "prepar": [45, 97, 102, 118, 129, 172, 201, 232, 249], "bankdb": [45, 46], "mdb": [45, 46], "jack": 45, "null": [45, 59, 69, 73, 92, 154, 177, 206], "jill": 45, "absent": [45, 131, 249], "dbm": 45, "instanti": [45, 47, 66, 67, 68, 69, 70, 71, 73, 74, 90, 99, 106, 108, 118, 119, 152, 154, 164, 169, 173, 177, 184, 199, 200, 201, 202, 203, 205, 239, 251], "password": [45, 69, 103, 118, 201, 205], "datasourc": 45, "marker": [45, 119, 123, 164, 176, 201], "disconnect": [45, 108], "th": [45, 66, 68, 119, 154], "sent": [45, 69, 74, 97, 118, 172, 179, 199, 201, 251], "suffic": [45, 92, 119, 184], "query1": 45, "incom": [45, 118], "registr": [45, 92, 118, 120, 199], "mediat": [45, 74], "deactiv": 45, "poa": [45, 47, 48, 50, 51, 251], "cooper": [45, 48, 118, 174], "upcal": 45, "afford": 45, "portableserv": [45, 47, 48], "poamanag": [45, 47], "adapterinact": 45, "wrongadapt": 45, "the_poamanag": 45, "servant_to_refer": 45, "p_servant": 45, "reference_to_serv": 45, "meant": [45, 90, 106, 139, 162, 173, 233], "entail": 45, "raw": [45, 46, 69, 104, 106, 118, 154, 163, 176, 184, 196, 225, 232, 240, 246, 249, 250, 253], "log": [45, 46, 94, 106, 130, 139, 154, 171, 206, 213, 224, 228, 237, 250, 251, 252, 253, 254, 255], "thread": [45, 55, 62, 68, 74, 77, 96, 97, 98, 99, 106, 107, 119, 120, 121, 122, 125, 126, 165, 174, 175, 180, 182, 184, 199, 203, 206, 208, 213, 218, 222, 229, 247, 248, 250, 251], "shutdown": [45, 68, 164, 199, 213, 251], "boil": 45, "exce": [45, 61, 62, 166], "existsaccount": 45, "INTO": 45, "presenc": [45, 68, 69, 74, 77, 92, 103, 106, 201], "polici": [45, 53, 74, 106, 151, 173], "scrollabl": [45, 183, 201, 235], "derefer": [45, 154], "encount": [45, 52, 77, 94, 106, 118, 119, 127, 131, 133, 164, 184, 199, 201, 238], "assumpt": [45, 62, 104, 135, 174, 234, 237], "objectid": [45, 48], "invalidnam": 45, "resolve_initial_refer": [45, 47], "wait_for_complet": 45, "rootpoa": [45, 47], "namingservic": 45, "unrecogn": 45, "meanwhil": [45, 47, 142], "pend": [45, 118, 180, 184, 199], "unblock": [45, 177, 199], "unregist": [45, 154], "chanc": [45, 94, 97, 119, 120, 142, 173, 233], "resum": [45, 97, 102, 118, 119, 145], "deeper": [46, 47, 119], "architectur": [46, 47, 48, 50, 51, 104, 118, 119, 125, 142, 143, 166, 176, 192, 206, 231, 252, 255], "tier": [46, 50, 106, 123], "sql": [46, 49, 178, 202], "2010": [46, 61, 62], "redistribut": [46, 95, 99, 242], "aspx": 46, "13255": 46, "dsn": 46, "mbd": 46, "writabl": 46, "deposit": 46, "aim": [47, 61, 62], "blank": [47, 52, 96, 133, 238, 239], "uncheck": [47, 52, 130], "spirit": [47, 201], "subsystem": 47, "consol": [47, 51, 54, 78, 79, 92, 94, 101, 102, 104, 108, 119, 162, 167, 183, 184, 200, 206, 213, 246, 248, 251], "fifth": [47, 69], "dummi": [47, 48, 52, 104], "editor": [47, 53, 61, 69, 74, 80, 84, 90, 92, 94, 97, 98, 99, 100, 101, 102, 142, 143, 164, 195, 233, 243], "navig": [47, 48, 68, 92, 96, 98, 119, 232], "hint": [47, 106, 155, 201, 257], "regener": [47, 52, 92], "stringifi": 47, "helper": [47, 77, 84, 108], "servant": [47, 53], "convers": [47, 48, 50, 69, 71, 81, 99, 106, 107, 108, 124, 129, 154, 161, 164, 166, 184, 185, 208, 236, 249, 250, 251], "impl": 47, "temphello": 47, "trap": [47, 118], "confirm": [47, 69, 94, 97, 101, 102, 177], "exercis": [47, 149], "breakpoint": [47, 53, 77, 79, 90, 96, 98, 101, 102, 119, 120, 128, 229, 251], "verb": [48, 257], "explanatori": 48, "amplifi": 48, "relax": 48, "dp": 48, "97": 48, "neal": 48, "feinberg": [48, 220], "keen": [48, 220], "mathew": 48, "p": [48, 62, 77, 80, 107, 108, 118, 123, 154, 166, 177, 184, 213, 220, 235], "withington": [48, 62, 118, 220, 235], "addison": [48, 100, 188, 201], "weslei": [48, 100, 188, 201], "1997": [48, 119, 202], "96": [48, 234], "shalit": [48, 62, 100, 188, 233], "1996": [48, 62, 100, 146, 188, 220, 234, 235], "94": 48, "11": [48, 77, 124, 153, 184, 193, 232, 242, 244, 247, 254], "mowbrai": 48, "1994": [48, 50, 135, 141, 143, 172, 201], "98": [48, 101, 208], "07": [48, 202, 232, 233], "01": [48, 124, 202, 232, 234, 236, 253], "broker": [48, 50, 51], "juli": [48, 222, 232, 237, 247], "1998": [48, 62, 143, 146], "terminologi": [48, 72, 108, 122, 147, 184, 203], "judg": [48, 108], "stabl": [48, 130, 219], "disproportion": 48, "trade": [48, 61, 62, 71], "absorb": 48, "fallout": 48, "advers": 48, "summar": [48, 77, 94, 176, 202], "foo_bar": 48, "const": [48, 73], "enum": 48, "struct": [48, 107, 127, 131, 132, 154, 227, 246, 249, 250], "arbitrarili": [48, 71, 107, 139], "alphabet": [48, 68, 81, 92, 102, 147, 161, 184, 236], "collid": [48, 92], "yield": [48, 94, 176, 177, 201, 203, 208], "26": [48, 77, 234], "roman": [48, 66], "superset": 48, "collis": [48, 233, 239], "driven": [48, 99], "due": [48, 94, 108, 118, 132, 143, 201, 206, 228, 243, 251, 257], "fusion": 48, "cold_fus": 48, "cold": 48, "red_sett": 48, "isexotherm": 48, "acronym": 48, "do_tla": 48, "tla": 48, "boundari": [48, 67, 70, 71, 74, 182, 184], "mistaken": 48, "latex_pars": 48, "la": [48, 92], "te": 48, "ten": [48, 154, 184, 233, 238], "octal": [48, 60, 179, 193, 236, 242], "9": [48, 52, 63, 69, 73, 77, 94, 135, 136, 141, 142, 149, 176, 184, 199, 246], "0x": 48, "hexadecim": [48, 60, 101, 163, 179, 193, 198, 236, 250, 251, 252], "sixteen": 48, "fifteen": 48, "prepend": 48, "fraction": [48, 66, 71, 200, 202], "expon": [48, 171, 176], "quot": [48, 59, 60, 133, 196, 239, 240, 243], "backspac": 48, "carriag": [48, 184], "feed": [48, 202], "ooo": [48, 92], "xhh": 48, "0b": 48, "hh": [48, 202], "bitwis": [48, 60, 156, 192], "logior": [48, 60, 74, 166, 192, 208], "xor": [48, 66, 156, 176], "logxor": [48, 60, 166, 192], "logand": [48, 60, 166, 192], "lognot": [48, 60, 166, 192], "ash": [48, 60, 74, 192], "truncat": [48, 133, 154, 164, 166, 171, 173, 184, 192, 201, 203], "modulo": [48, 60, 92, 176, 192], "heavyweight": 48, "moorcock": 48, "michael": 48, "moorcock_michael": 48, "eco": 48, "umberto": 48, "societi": 48, "secret": [48, 140], "knights_templar": 48, "knight": 48, "templar": 48, "mandatori": [48, 107, 182, 186, 234], "enforc": [48, 201], "trio": 48, "team": [48, 52, 135, 136, 143, 208, 225, 232, 233], "disciplin": [48, 52, 154], "lifecycl": [48, 52], "parallel": [48, 52, 53, 67, 94, 119, 143, 177, 203, 225, 237], "transfer": [48, 74, 107, 121, 125, 176, 177], "quantum_mechan": 48, "schroeding": 48, "quantum": 48, "uninstanti": [48, 177, 199], "meaningless": [48, 67], "acquir": [48, 66, 134, 201], "factori": [48, 58, 79, 92, 198], "prescrib": 48, "t34": 48, "transit": [48, 84, 154, 174], "closur": [48, 107, 119, 121, 124, 125, 135, 149, 174, 176, 213], "canonic": [48, 67, 70, 119], "lexicograph": 48, "reorder": [48, 111, 177], "prohibit": [48, 62, 177, 201], "overload": [48, 62, 149], "tank": 48, "soviet_mad": 48, "t48": 48, "t1000": 48, "soviet": 48, "secs_in_100_yr": 48, "365": 48, "60": [48, 225], "sec": [48, 257], "yr": 48, "3153600000": 48, "latitud": [48, 186, 234], "31": [48, 202, 228, 232, 234, 250], "63": 48, "16": [48, 56, 59, 66, 77, 118, 149, 154, 176, 184, 202, 203, 208, 233, 240, 253], "64": [48, 63, 89, 94, 115, 118, 132, 166, 176, 192, 208, 213, 219, 222, 224, 227, 229, 231, 246, 247, 251, 252], "28": [48, 77, 192, 202, 231, 232, 239, 243, 252], "alia": [48, 184], "dim_of_univ": 48, "ansi": [48, 162, 171, 201, 250], "ieee": [48, 124, 176], "754": 48, "1985": 48, "71828182845904523536": 48, "lyrs_to_alpha_centauri": 48, "lyr": 48, "centauri": 48, "factor": [48, 50, 70, 202, 233], "10000": [48, 147, 177], "accommod": [48, 73, 118, 184, 194, 239, 251], "approxim": [48, 72], "mirror": [48, 69, 74, 183, 235], "salary_incr": 48, "0100": 48, "50d": 48, "latin": 48, "8859": 48, "unspecifi": [48, 66, 70, 149, 166, 171, 176, 234, 236, 239], "unicod": [48, 124, 184, 203, 208, 227, 236, 239], "aleph": 48, "wchar": [48, 208], "cantors_hypothesi": 48, "cantor": 48, "hypothesi": 48, "quantiti": 48, "undergo": 48, "transmiss": [48, 52, 53], "bond_id": 48, "007": 48, "bond": 48, "o007": 48, "typecod": [48, 251], "preserv": [48, 70, 91, 101, 105, 107, 118, 127, 154, 173, 177, 197, 203, 208, 225, 246], "dynani": 48, "goedel_numb": 48, "goedel": 48, "mozart_symphony_no": 48, "layston_park_house_no": 48, "mozart": 48, "symphoni": 48, "layston": 48, "park": 48, "hous": [48, 62, 121], "singleton": [48, 131, 151, 152, 164, 168, 177, 192, 237, 250], "travers": [48, 90, 107, 127, 173, 174], "successor": 48, "predecessor": 48, "planet": 48, "venu": 48, "earth": 48, "mar": [48, 234, 241, 242, 243], "jupit": 48, "saturn": 48, "uranu": 48, "neptun": 48, "pluto": 48, "succ": 48, "pred": [48, 106, 257], "lesser": 48, "heterogen": [48, 50], "anticip": [48, 127], "foreign": [48, 94, 97, 118, 120, 122, 154, 171, 174], "convenor": 48, "durat": [48, 74, 94, 204], "attende": [48, 221], "agenda": 48, "hidden_agenda": 48, "hidden": [48, 69, 74, 94, 96, 177, 203, 206], "interchang": [48, 73, 99, 101, 107, 142, 198, 238], "ambigu": [48, 94, 106, 192, 199, 201, 241], "unnatur": [48, 257], "treatment": [48, 127, 173, 243], "reifi": 48, "rle_ent": 48, "sampl": [48, 104, 117, 149, 150, 152], "rle": 48, "entiti": [48, 70, 114, 137, 139, 140, 141, 152, 154, 201, 203], "maximum": [48, 67, 69, 70, 71, 73, 74, 111, 119, 156, 166, 176, 177, 192, 233], "marshal": [48, 52, 53, 251], "closest": [48, 62, 71, 91, 118, 119, 154], "chromosom": 48, "nul": [48, 208, 251], "mandat": [48, 177], "constel": 48, "wstring": 48, "local_nam": 48, "multidimension": [48, 248], "albeit": [48, 147, 208], "tensor": 48, "indirect": [48, 66, 118, 119, 124, 126, 143, 147, 154, 176, 184, 237, 239, 250], "melt_down": 48, "seconds_remain": 48, "melt": 48, "compliant": [48, 50], "akin": 48, "stealth": 48, "power_failur": 48, "engage_cloak": 48, "engag": [48, 247], "cloak": 48, "fuel_cel": 48, "power_sourc": 48, "burn_hydrogen": 48, "burn_rat": 48, "emiss": [48, 107], "fuel": 48, "cell": [48, 66, 73, 107, 108, 124, 176, 177], "burn": 48, "hydrogen": 48, "rate": 48, "harsh": 48, "punish": 48, "mangl": [48, 104, 118, 119, 122, 126, 176], "penalti": [48, 184], "prisoners_dilemma": 48, "mutual_cooperation_reward": 48, "mutual_defection_punish": 48, "defectors_tempt": 48, "suckers_payoff": 48, "prison": 48, "dilemma": 48, "mutual": [48, 69, 177], "reward": 48, "collector": [48, 118, 119, 124, 126, 127, 129, 130, 143, 147, 152, 154, 158, 174, 176, 197, 201, 232, 246, 249, 250, 251], "reclaim": [48, 119, 127, 153, 154, 174, 176, 177, 201], "provabl": 48, "unreferenc": 48, "dii": [48, 50], "deviat": 48, "leverag": [48, 80, 135], "incompat": [48, 77, 97, 127, 233, 246], "friendli": [48, 77], "ion": 48, "imprecis": [48, 94], "is_equival": 48, "grid1": 48, "grid2": 48, "versu": 48, "rogu": 48, "is_nil": 48, "unorder": 48, "inappropri": [48, 119, 184], "spuriou": [48, 239, 251, 253], "create_list": 48, "add_item": 48, "namedvalu": 48, "len": 48, "script": [48, 77, 129, 227, 228, 238, 240, 243, 247, 248, 249, 250, 251, 252], "thenc": 48, "auxiliari": [48, 191], "serverrequest": 48, "dynamic_serv": 48, "repositoryid": 48, "primary_interfac": 48, "buckstop": 48, "grid": [48, 73], "complianc": [49, 134, 190], "bank": [49, 50, 51, 52, 54], "odbc": [49, 50], "rational": [49, 192, 233, 244], "rapidli": [50, 71], "prolifer": 50, "todai": [50, 106, 136, 141, 143, 149], "1991": [50, 201], "decemb": [50, 122, 219, 230, 234, 246, 248, 249], "vendor": [50, 101], "middlewar": 50, "transpar": [50, 52, 66, 70, 71, 184, 203], "seamlessli": [50, 71], "interconnect": 50, "transport": 50, "dozen": [50, 71, 135], "importantli": 50, "legaci": [50, 139], "road": 50, "enterpris": [50, 213], "heart": [50, 66, 134, 139], "whatiscorba": 50, "inter": [50, 85, 127, 177], "iiop": [50, 52, 53], "java": [50, 61, 101, 102, 135, 145, 147, 152, 153, 183, 184, 213], "swing": 50, "awt": 50, "prove": [50, 71, 106, 135, 211], "tackl": 50, "marri": 50, "procur": 50, "batteri": [50, 130, 229, 231, 253], "purchas": 50, "instant": [50, 119], "imped": 50, "homogen": 50, "compat": [50, 54, 71, 99, 101, 123, 136, 142, 154, 173, 192, 208, 233, 249, 252, 253, 255], "giop": 50, "dsi": 50, "dll": [51, 52, 53, 87, 90, 92, 97, 98, 99, 101, 103, 104, 108, 116, 118, 119, 126, 154, 198, 199, 208], "standalon": [51, 54, 100, 104], "ciaran": 51, "mchale": 51, "excel": [51, 144, 233, 238], "ecosystem": [51, 250, 251, 252, 253], "michi": 51, "hen": 51, "fall": [51, 64, 69, 73, 74, 94, 107, 121, 125, 127, 135, 145, 171, 192, 237], "chose": [52, 74, 94, 101], "phat": 52, "ex": [52, 54, 63, 89, 92, 94, 97, 99, 101, 102, 103, 104, 116, 118, 126, 154, 164, 198, 199], "orbtrac": [52, 53], "suppress": [52, 53, 54, 106, 133], "socket": [52, 53, 184, 229, 251], "orbno": [52, 53], "unhandl": [52, 53, 94, 97, 102, 118, 119, 177, 201, 228, 250], "orbdebug": [52, 53], "listen": [52, 53, 94, 135, 137, 143, 199, 229, 251], "iana": [52, 53], "3672": [52, 53], "orbport": [52, 53], "ascii": [52, 101], "idprefix": 52, "pathnam": [52, 66, 80, 92, 164, 203, 206], "sibl": [52, 101], "subdirectori": [52, 86, 88, 116, 203, 205], "recognis": [52, 54, 237], "irrespect": [52, 119, 184], "quotat": 53, "lock": [53, 74, 94, 127, 140, 142, 174, 201, 218, 247, 248], "smoothli": [53, 94, 145, 152], "synchron": [53, 68, 74, 94, 119, 127, 174, 184, 199, 201, 206, 246], "111": [53, 66], "forbid": [53, 94], "1990": [53, 61, 62, 134, 143, 211, 220, 225], "era": [53, 220], "sadli": [53, 108], "9999": 53, "pool": [53, 77, 177, 219, 250], "worker": 53, "concurr": [53, 119, 177, 206, 250], "resolveinitialservic": 53, "nameservic": 53, "session": [53, 99, 102, 201, 206], "orbinterfac": [53, 54], "interfacerepositori": 53, "orbset": 53, "bin": [54, 63, 80, 83, 89, 95, 99, 101, 103, 118, 132, 206, 238, 246], "deprec": [54, 108, 206, 248, 251], "backward": [54, 68, 80, 187, 201, 214, 233, 255], "ir": [54, 249], "overwrit": [54, 133, 184, 203], "resolveinitialrefer": 54, "parti": [54, 95, 99, 149, 198], "preprocess": 54, "crash": [54, 92, 94, 102, 106, 129, 135, 150, 199, 222, 246, 247, 248, 249, 250, 252, 253, 254], "nowarn": 54, "clientprotocol": 54, "clientstub": 54, "clientskeleton": 54, "dequ": [55, 152, 177, 207, 239], "membership": [55, 164], "freshli": [55, 164, 176], "seed": [55, 58, 169], "reduce1": [55, 143, 149], "intersect": [55, 70, 108, 155], "duplic": [55, 69, 177, 208, 257], "union": [55, 66, 67, 68, 69, 70, 71, 73, 74, 92, 106, 118, 142, 155, 164, 177, 179, 184, 192, 201, 203, 208, 237, 251, 257], "tail": [55, 59, 77, 94, 97, 99, 107, 108, 121, 125, 126, 135, 207, 252], "player1": 56, "monei": [56, 135], "player2": 56, "uppercas": [56, 59, 123, 161, 179, 236, 252, 257], "schemer": 57, "num": [58, 59, 154], "got": [58, 136, 143, 221, 232], "curri": [58, 108, 135, 188, 236, 249, 257], "rcurri": [58, 185, 236, 247], "qq": 58, "jonathan": [59, 62, 118, 122, 131, 143, 257], "sobel": 59, "almost": [59, 68, 70, 86, 97, 103, 117, 119, 121, 124, 125, 141, 143, 177, 248], "23": [59, 77, 101, 191, 193, 202, 232, 242, 248], "b1011": 59, "o644": 59, "x2a5f": 59, "02e23": [59, 60], "exp": [59, 171, 250], "datum": 59, "lambda": [59, 107, 108, 118, 119, 121, 131], "letrec": 59, "then1": 59, "then2": 59, "else1": 59, "else2": 59, "cond": [59, 191], "test1": 59, "result1": 59, "test2": 59, "result2": 59, "func": [59, 70, 119], "h": [59, 80, 108, 154, 184, 198, 202], "var1": 59, "init1": [59, 177], "step1": 59, "var2": 59, "init2": [59, 177], "step2": 59, "r4r": 59, "eqv": [59, 66], "eq": 59, "con": 59, "cdr": 59, "val": [59, 118, 119, 154, 177, 257], "cadadr": 59, "ls1": 59, "ls2": 59, "ls3": 59, "ref": [59, 66, 163], "memv": 59, "sym": [59, 118, 119], "n1": 59, "n2": 59, "expt": 59, "char1": [59, 236], "char2": [59, 236], "upcas": 59, "downcas": 59, "lowercas": [59, 68, 69, 123, 161, 163, 164, 179, 236, 252, 257], "str1": 59, "str2": 59, "substr": [59, 68, 118, 164, 201, 236], "shallow": 59, "vec": [59, 246], "proc": [59, 118, 208], "arg1": [59, 177, 192, 202], "arg2": [59, 192, 202], "list1": 59, "list2": 59, "vec1": 59, "vec2": 59, "string1": [59, 154, 161, 236], "string2": [59, 154, 161, 236], "indefinit": [59, 68, 119, 127, 174, 176, 177], "cc": [59, 132, 250], "grab": [59, 74, 108, 138], "b101010": 60, "o52": 60, "x2a": 60, "negat": [60, 87, 166, 176, 192], "mulitpli": 60, "modulu": 60, "elem": 60, "col": 60, "rem": 60, "forbidden": [60, 69, 149, 243], "primarili": [61, 73, 130, 148, 154, 183, 238, 255], "solid": [61, 66, 94, 119, 142, 148, 233], "gentler": [61, 148], "freebsd": [61, 63, 77, 86, 104, 132, 206, 213, 219, 223, 225, 228, 246, 247, 249, 250, 252], "maco": [61, 63, 77, 104, 135, 136, 140, 141, 142, 198, 228, 246, 250, 251], "errata": [61, 220, 233], "offici": [61, 118, 140, 144, 149, 152, 233], "doc": [61, 68, 144, 178, 195, 232], "gotcha": [61, 107, 153], "writer": 61, "dime": [61, 81, 84, 87, 232, 246], "hann": [61, 62, 107, 235, 248], "mehnert": [61, 62, 235, 248], "excit": [61, 134], "slime": [61, 80, 213, 214, 232], "unbox": 61, "arguabl": 61, "peter": [61, 62, 104, 130, 234, 241, 250, 251, 252, 253, 254], "housel": [61, 62, 104, 130, 241, 250, 251, 252, 253, 254], "el": [61, 62, 131], "2020": [61, 62, 63, 93, 146, 230, 238, 242, 256], "pdf": [61, 62, 131, 143, 211, 220, 232], "bib": [61, 62], "x86": [61, 62, 63, 86, 88, 89, 104, 125, 126, 132, 176, 206, 222, 247, 250, 251], "unabl": [61, 62, 118, 142, 201, 251], "adequ": [61, 62], "profil": [61, 62, 79, 118, 120, 129, 164, 165, 170, 226, 228, 248, 249, 250], "coverag": [61, 62], "analyz": [61, 62, 77, 107, 108, 154, 184], "zenodo": [61, 62], "3742567": [61, 62], "ilc": [61, 62], "experiment": [61, 62, 185, 195, 246, 249, 250], "gradual": [61, 62], "paper": [61, 62, 70, 107, 131, 133, 142, 172, 235], "tradition": [61, 62], "pose": [61, 62, 257], "challeng": [61, 62, 257], "ariti": [61, 62], "parametr": [61, 62], "unif": [61, 62], "32000": [61, 62], "wit": [61, 62, 142], "undiscov": [61, 62], "reveal": [61, 62, 90, 102], "citeseerx": 61, "ist": 61, "psu": 61, "edu": [61, 172], "viewdoc": 61, "doi": [61, 62], "627": 61, "5175": 61, "rep": [61, 119, 154], "rep1": 61, "debt": [61, 62], "algebra": [61, 62, 108, 148], "distinctli": [61, 62], "philosophi": [61, 62, 105, 225], "progress": [61, 68, 69, 74, 97, 102, 108, 132, 136, 178, 225, 229, 233, 248, 250], "aspir": 61, "adher": [61, 243, 254], "5281": 62, "dl": 62, "acm": 62, "1145": 62, "1869643": 62, "1869645": 62, "2009": 62, "autom": [62, 92, 130, 252], "downcast": 62, "andrea": [62, 143, 201], "bogk": [62, 143], "2007": [62, 213], "everydai": 62, "dsl": 62, "strength": 62, "1622123": 62, "1622148": 62, "23rd": 62, "chao": 62, "congress": 62, "decent": [62, 117, 135, 147], "packet": 62, "tcp": 62, "ip": [62, 118, 119, 199], "focus": [62, 97, 108, 143, 185, 233], "dartmouth": 62, "colleg": 62, "dujardin": 62, "pole": 62, "smaller": [62, 66, 70, 71, 101, 156, 166, 177, 188], "5555": 62, "867862": 62, "multimethod": [62, 131], "bachrach": [62, 118, 122, 131, 143], "glenn": [62, 131], "burk": [62, 131], "delai": [62, 126, 133, 177], "cach": [62, 64, 108, 116, 120, 124, 131, 133, 173, 177, 184, 197, 201, 235, 251], "disjoint": [62, 118, 164, 166, 184, 192, 202, 208, 213, 237], "inject": [62, 108, 233], "half": [62, 69, 71, 73, 106, 134, 177, 213], "shareabl": 62, "keith": [62, 107, 143, 185, 235, 257], "playford": [62, 143, 185, 235], "david": [62, 233, 235], "john": [62, 203], "hotchkiss": 62, "seth": 62, "laforg": 62, "andrew": [62, 188, 233], "tobi": [62, 145], "weinberg": 62, "industri": 62, "increasingli": 62, "274946": 62, "274957": 62, "kim": [62, 234, 235], "barrett": [62, 234, 235], "bob": [62, 235], "cassel": [62, 235], "moon": [62, 235], "tucker": [62, 118, 220, 235, 257], "oopsla": 62, "resolut": [62, 71, 85, 126, 170, 201, 202], "imposs": [62, 70, 164, 177, 237], "absenc": [62, 66, 107, 118, 119, 201], "survei": 62, "heterarchi": [62, 164, 184, 237], "236337": 62, "236343": 62, "joseph": 62, "duma": 62, "paig": 62, "parson": 62, "june": [62, 202, 253], "usabl": [62, 104, 115], "asess": 62, "convei": [62, 257], "innov": 62, "203241": 62, "203253": 62, "bibliographi": 62, "bibtex": 62, "2023": [63, 75, 130, 172, 243, 256], "libgc": [63, 219, 222, 224, 227, 229, 231, 247], "libunwind": [63, 130, 229, 231, 250, 255], "sudo": 63, "apt": [63, 219, 222, 224, 227], "lldb": [63, 84, 128, 228, 249, 250, 251], "wow64": 63, "pellesc": [63, 225], "linker": [63, 101, 104, 108, 126, 213, 246, 251], "vc": 63, "sdk": 63, "00": [63, 124, 152, 202], "pell": [63, 247], "panel": [63, 69, 74, 94], "win": [63, 208], "lib": [63, 86, 99, 104, 108, 118, 119, 126, 131, 132, 154, 198, 246, 249, 250], "shell": [63, 78, 80, 83, 118, 138, 164, 206, 208, 213, 214, 247], "newer": [63, 119, 140, 233], "untar": 63, "2019": [63, 130, 146, 241, 242, 256], "boehm": [63, 77, 130, 132, 219, 222, 224, 227, 249, 250], "gc": [63, 77, 118, 121, 126, 132, 135, 213, 219, 222, 224, 227, 247, 249, 250, 253], "dev": 63, "ubuntu": [63, 130, 219, 222, 224, 225, 227, 250], "readm": [63, 99, 214], "gcc": [63, 104, 132, 176, 226], "arch": 63, "recip": 63, "clone": [63, 117, 130, 233, 246], "aur": [63, 130], "archlinux": [63, 130, 225], "cd": [63, 80, 83, 85, 88, 95, 103, 117, 130, 233, 246], "makepkg": 63, "si": [63, 237], "brew": 63, "tap": 63, "upgrad": [63, 106, 107, 108, 130, 131], "suitabl": [64, 66, 68, 69, 73, 74, 92, 94, 99, 101, 116, 127, 161, 164, 176, 177, 186, 192, 201, 203], "harlequin": [64, 68, 92, 95, 101, 109, 116, 117, 122, 124, 125, 127, 134, 220, 225, 234, 237], "geometri": [64, 66, 68, 72, 73, 74], "ordin": 64, "specialist": [64, 67], "dc": [64, 68, 71, 72, 74, 118], "justif": [64, 108, 118, 236], "pen": [64, 66, 71, 74], "brush": [64, 66, 71, 74], "mutabl": [64, 70, 107, 111, 154, 160, 161, 164, 184, 194, 239, 257], "volatil": [64, 70, 213], "caprici": 64, "fresh": [64, 66, 108, 176, 177], "cerror": 64, "2016": 65, "shape": [66, 67, 70, 72, 74, 90, 94, 96, 97, 102, 107, 127, 149, 239, 257], "opac": [66, 71], "famili": [66, 68, 69, 137, 142, 149], "weight": [66, 68, 119], "bitmap": [66, 71, 197], "stencil": 66, "overlai": [66, 71], "shade": [66, 71], "rectangular": [66, 67, 70, 71, 192], "checkerboard": 66, "color1": 66, "color2": 66, "pen1": 66, "pen2": 66, "brush1": 66, "brush2": 66, "style1": 66, "style2": 66, "rgb": 66, "000": [66, 213], "bool": [66, 71, 77, 154, 208], "clr": 66, "c1": [66, 236, 237, 239], "c2": [66, 236, 239], "nand": 66, "andc1": 66, "andc2": [66, 156], "orc1": 66, "orc2": 66, "brick": 66, "stippl": [66, 71], "mortar": 66, "wall": [66, 118, 119], "tile": 66, "stretch": 66, "intens": 66, "hue": 66, "satur": 66, "pale": 66, "yellow": [66, 94, 162, 257], "bright": [66, 69, 162], "pink": 66, "paint": [66, 74], "obliter": 66, "whatsoev": [66, 149], "blend": [66, 71], "immut": [66, 70, 72, 236], "transluc": 66, "ih": 66, "luminos": 66, "percept": [66, 71], "retina": 66, "gree": 66, "render": [66, 72, 161, 174, 233], "silica": 66, "monochrom": [66, 69, 74], "grayscal": [66, 71], "hatch": 66, "cyan": [66, 162], "magenta": [66, 91, 162], "diagon": [66, 71], "alic": 66, "antiqu": 66, "aquamarin": 66, "azur": 66, "beig": 66, "bisqu": 66, "blanch": 66, "almond": 66, "violet": 66, "brown": 66, "burlywood": 66, "cadet": 66, "chartreus": 66, "chocol": 66, "coral": [66, 134], "cornflow": 66, "cornsilk": 66, "dark": [66, 91, 140, 232], "goldenrod": 66, "khaki": 66, "oliv": 66, "orang": 66, "orchid": 66, "salmon": 66, "sea": 66, "slate": 66, "turquois": 66, "deep": [66, 108, 173, 182], "sky": [66, 145], "dim": [66, 162], "dodger": 66, "firebrick": 66, "floral": 66, "forest": 66, "gainsboro": 66, "ghost": 66, "gold": 66, "honeydew": 66, "hot": 66, "indian": 66, "ivori": 66, "lavend": 66, "blush": 66, "lawn": 66, "lemon": 66, "chiffon": 66, "steel": 66, "lime": 66, "linen": 66, "maroon": 66, "purpl": 66, "spring": 66, "midnight": 66, "mint": 66, "cream": 66, "misti": 66, "moccasin": 66, "navajo": 66, "navi": 66, "lace": 66, "drab": 66, "papaya": 66, "whip": 66, "peach": 66, "puff": 66, "peru": 66, "plum": 66, "powder": 66, "rosi": 66, "royal": 66, "saddl": 66, "sandi": 66, "seashel": 66, "sienna": 66, "snow": [66, 219], "tan": [66, 171, 250], "thistl": 66, "tomato": 66, "wheat": 66, "smoke": [66, 130], "joint": [66, 213], "cap": 66, "miter": 66, "butt": 66, "recogniz": 66, "nil": [66, 80], "Their": [66, 67, 154, 182], "lumin": 66, "aref": [66, 241], "hole": [66, 237], "rotat": [66, 70, 74, 92, 166], "diamond": 66, "nonuniform": 66, "slant": 66, "underlin": [66, 69], "strikeout": 66, "serif": 66, "san": 66, "condens": 66, "thin": [66, 69, 71], "demibold": 66, "ital": [66, 69], "obliqu": 66, "tini": [66, 257], "huge": [66, 246], "smallest": [66, 70, 116, 164, 166, 257], "parquet": 66, "floor": [66, 166, 168, 192], "bevel": 66, "impart": 66, "arc": [66, 67, 71, 74, 171], "gap": 66, "unfil": [66, 71], "comfort": [66, 135, 238], "stroke": [66, 71, 74], "tension": 66, "sacrific": 66, "strike": 66, "geometr": [67, 70, 72, 73], "rectangl": [67, 70, 71, 74, 173, 254], "drawabl": [67, 71, 74], "ellips": [67, 70, 71, 74, 149], "ellipt": 67, "polygon": [67, 71, 74, 149], "polylin": 67, "jag": 67, "vertex": 67, "compos": [67, 70, 71, 73, 74, 97, 143, 154, 233], "radiu": [67, 71, 149], "dx": [67, 70, 71, 74], "dy": [67, 70, 71, 74], "interior": 67, "circl": [67, 71, 90, 94, 96, 102, 149, 182], "parallelogram": 67, "perpendicular": 67, "ax": 67, "radii": [67, 71], "2p": 67, "d2": 67, "circular": [67, 90, 150, 174, 182, 248], "colinear": [67, 70], "pie": 67, "slice": [67, 71, 152, 153], "measur": [67, 68, 73, 74, 118, 168], "counter": [67, 118, 119, 176, 177, 234, 235, 250], "clockwis": 67, "loss": [67, 70, 71, 74, 184, 192, 251], "nd": 67, "coord": [67, 71, 143, 154, 246], "point1": [67, 70, 71], "point2": [67, 70, 71], "former": [67, 68, 104, 111, 173, 176], "affin": [67, 70], "rectilinear": [67, 70, 71], "undoabl": 68, "undo": [68, 70, 96, 101], "destroi": [68, 71, 74, 92, 118, 127, 154, 176, 208], "unmap": [68, 74], "accur": [68, 94, 99, 106, 131, 154, 233, 246, 249, 250], "spawn": [68, 213], "command1": 68, "command2": 68, "bear": 68, "keystrok": 68, "95": [68, 69, 101, 164, 206, 208, 237], "differenti": [68, 118], "stick": 68, "submenu": 68, "framem": [68, 69, 74], "redo": 68, "nmatch": 68, "maxim": [68, 94], "chunk": 68, "wise": [68, 135], "filter": [68, 74, 90, 94, 97, 101, 102, 105, 118, 119, 154, 249], "unwant": [68, 184], "valuecomplet": 68, "w": [68, 80, 118, 184, 192, 214, 236, 250], "ma": 68, "fish": 68, "male": [68, 173], "zebra": 68, "prev": 68, "initarg": [68, 70, 74, 159], "fuller": [68, 69, 198], "bnf": [68, 69, 73, 74, 106, 159, 164, 168, 177, 184, 186, 203, 240], "descriptor": [68, 73, 74, 118, 119, 167, 199, 201, 248], "strip": [68, 77, 108, 119, 236, 252, 257], "deiconifi": 68, "iconifi": 68, "param": [68, 69], "subtli": 68, "detach": [68, 103, 126], "ink": [68, 69, 74], "dictat": [68, 74, 118, 131], "beep": [68, 74], "nt": [68, 101, 104, 164, 206, 208], "caution": 68, "casual": [68, 69, 94], "shadow": [68, 154, 177, 257], "denomin": 68, "cursor": [68, 69, 71, 74, 80, 94, 96, 97, 135, 201, 252], "tenth": 68, "abort": [68, 71, 74, 94, 106, 118, 119, 145, 164, 173, 174, 184, 246], "restart": [68, 78, 98, 105, 120, 130, 164], "sit": [69, 119], "scroll": [69, 71, 73, 74, 201, 235], "slider": [69, 74], "interdepend": 69, "tediou": 69, "clariti": [69, 99, 192, 242], "therebi": [69, 73, 74, 103, 184, 201], "scroller": 69, "viewport": [69, 71, 235], "splitter": [69, 235], "spatial": [69, 71], "barrier": [69, 118, 126, 127, 135, 176, 211], "cabinet": 69, "notebook": 69, "strict": [69, 99, 106, 118, 202, 208, 235, 257], "spin": 69, "delin": [69, 164], "htm": [69, 73, 74, 121], "89815": 69, "_for": 69, "leaf": [69, 73, 127, 241], "popul": [69, 161, 239], "thick": [69, 71], "ridg": 69, "ctrl": [69, 92, 96], "mostli": [69, 80, 102], "56017": 69, "56015": 69, "24406": 69, "37806": 69, "48310": 69, "91817": 69, "image3": 69, "40934": 69, "trust": 69, "image5": 69, "okai": 69, "inact": 69, "ratio": [69, 73, 108, 192, 257], "wari": 69, "programmat": [69, 106, 118, 154, 206], "slug": 69, "shaft": 69, "conceptu": [69, 106, 147, 154, 201, 208], "74637": 69, "10131": 69, "68823": 69, "14565": 69, "macintosh": [69, 134, 136, 138, 140], "finder": [69, 135], "89020": 69, "63229": 69, "56600": 69, "88015": 69, "89408": 69, "93333": 69, "87607": 69, "echo": [69, 85, 88, 130], "prog": 69, "heavi": [69, 246], "isol": [69, 177, 201], "bonzo": 69, "25": [69, 77, 111, 232, 239], "quarter": 69, "clip": [69, 70, 71, 74], "volum": [69, 101, 119, 161, 203, 205], "trackbar": 69, "processor": [69, 74, 132, 142, 143, 177, 206], "dispar": 69, "movabl": 69, "caret": [69, 74, 123], "zoom": 69, "32720": 69, "12376": 69, "36830": 69, "lv": [69, 177], "80": [69, 135, 182, 205, 246, 257], "commit": [69, 85, 99, 117, 130, 173, 201, 233, 238, 240, 241, 242, 243, 250, 251, 252, 253, 254, 255], "pictori": 69, "underneath": 69, "dock": 69, "88622": 69, "subnod": [69, 133], "redrawn": 69, "pixmap": [69, 71, 74], "invalu": 69, "ruler": 69, "spreadsheet": 69, "viewer": 69, "unbound": [70, 71, 119, 173, 192, 195], "underspecifi": 70, "singular": 70, "coincid": 70, "invers": 70, "region1": 70, "region2": 70, "transform1": 70, "transform2": 70, "untransform": 70, "radian": [70, 171], "endpoint": [70, 199], "band": [70, 201], "magnitud": [70, 71], "everywher": 70, "finit": [70, 71, 155, 192], "underflow": [70, 118, 171], "x3": [70, 71], "y3": [70, 71], "handed": [70, 71], "certainli": [70, 119, 140], "mxx": 70, "mxy": 70, "myx": 70, "myi": 70, "tx": 70, "ty": 70, "90": 70, "distort": [70, 71], "skew": 70, "uniform": [70, 71, 205], "spread": [70, 72, 104], "orig": 70, "pictur": [71, 108, 135], "highli": [71, 135, 141, 195, 233], "inquir": 71, "destin": [71, 74, 94, 104, 118, 119, 125, 127, 139, 154, 176, 184, 203], "impos": [71, 107], "thinnest": 71, "inch": 71, "hundr": [71, 153], "display": 71, "unsatur": 71, "simultan": [71, 96, 99, 177, 248], "accuraci": 71, "dither": 71, "curv": [71, 74], "anti": 71, "degrad": [71, 142], "raster": 71, "invis": [71, 102], "somehow": 71, "placement": [71, 73], "lighter": 71, "wholli": 71, "x11": [71, 74, 115], "henc": [71, 74, 94, 118, 119, 127, 153, 171, 174, 177, 184, 186, 201, 208], "li": [71, 191, 208], "tangent": [71, 171], "nearest": [71, 118, 119, 166, 192, 201], "offset": [71, 91, 118, 119, 121, 125, 131, 133, 154, 163, 164, 176, 184, 202, 213, 248, 257], "triangl": [71, 94, 102, 139, 149], "indetermin": 71, "uniformli": 71, "undesir": 71, "lopsid": 71, "wider": [71, 246], "ought": [71, 97], "inscrib": 71, "aesthet": [71, 257], "abut": 71, "thicker": 71, "tilt": 71, "flood": 71, "abandon": [71, 96, 143], "altogeth": [71, 91, 101], "furthest": 71, "outermost": [71, 94, 177], "bezier": [71, 74], "point3": 71, "unsuppli": [71, 164], "sector": 71, "oval": 71, "150": 71, "250": 71, "350": 71, "400": [71, 135, 142], "450": 71, "regular": [71, 74, 119, 127, 149, 152, 154, 164, 198, 213, 216, 236, 238, 240, 243, 246, 248], "nside": 71, "glyph": 71, "baselin": [71, 74], "closer": [71, 246], "honor": 71, "p1": 71, "p2": 71, "p3": 71, "electr": 71, "cad": 71, "vlsi": 71, "schemat": 71, "restor": [71, 74, 94, 96, 118, 125, 173, 177, 249], "advertis": 72, "pertain": [72, 166], "pinboard": 73, "confin": [73, 118, 192], "sixth": 73, "req": 73, "drive": [73, 74, 99, 103, 108, 203, 205, 248], "34543": 73, "100000": 73, "optimum": 73, "alon": [73, 74, 92, 95, 99, 100, 118, 225], "occurr": [73, 108, 118, 164, 182, 184, 201, 236, 252], "legitim": [73, 177], "mixin": [73, 90, 106, 119, 164, 235, 257], "filler": 73, "stretchabl": 73, "randomli": 73, "sensibl": [73, 118, 202, 239], "relayout": [73, 74], "laid": [73, 74, 86, 154, 254], "shrinkabl": 73, "40": [73, 200, 229], "simul": [73, 150, 152], "withdrawn": [73, 74, 233, 240, 244], "withdraw": [73, 74], "ol": [73, 92, 101, 103, 208, 213, 251], "genealogi": 74, "grow": [74, 77, 83, 111, 131, 184, 239], "shrink": 74, "motion": 74, "deliv": [74, 84, 91, 98, 99, 100, 101], "timer": [74, 118, 165, 224, 248, 249], "recalcul": 74, "chart": 74, "gesture1": 74, "gesture2": 74, "meta": [74, 115, 139, 233], "hyper": 74, "inferior": [74, 173], "nonlinear": 74, "middl": [74, 96, 97, 176], "interv": [74, 118, 119, 159, 170, 176, 177, 184, 201, 202], "period": [74, 78, 96, 119, 154, 176, 177], "maneuv": 74, "modifier_bas": 74, "mm": [74, 202], "millimet": 74, "ascertain": [74, 233], "clock": [74, 118], "stand": [74, 92, 95, 99, 100, 225, 233, 237, 257], "timestamp": [74, 201], "mask": 74, "criteria": [74, 152, 164, 233, 237], "ascent": 74, "descent": 74, "metric": 74, "button_bas": 74, "motif": 74, "movement": [74, 94], "trackbal": 74, "occlus": 74, "lineag": 74, "notwithstand": 74, "english": 74, "overwritten": [74, 203], "freed": [74, 119, 127, 154, 177, 184], "computation": 74, "199": 74, "forego": 74, "unassoci": 74, "dealloc": 74, "netbsd": [77, 206], "arm": [77, 132, 206, 229, 247, 251], "reorgan": 77, "_build": [77, 82, 83, 87, 89, 106, 128, 130, 132, 205, 219, 246, 252], "expans": [77, 90, 94, 104, 188, 191, 234, 243, 253], "insensit": [77, 123, 161, 247], "demangl": [77, 119, 250], "backtrac": [77, 94, 99, 120, 145, 228, 250], "shorten": [77, 107, 123, 156, 203], "ymodulevdylan": 77, "vkmodul": 77, "err": [77, 180, 183, 249], "kformat_erryformat_outviomm0i": 77, "0x92b41b06": 77, "nocancel": 77, "unix2003": 77, "0x0042c509": 77, "kunix_readyio_internalsvioi": 77, "0x000bc8e7": 77, "xep_4": [77, 176], "0x0042ba99": 77, "kaccessor_read_intoxystreams_internalsviomm0i": 77, "0x000c0805": 77, "key_mep_6": 77, "0x000c43a4": 77, "implicit_keyed_single_method_engine_4": 77, "0x000c1dd5": 77, "gf_optional_xep_4": 77, "0x004139fb": 77, "kload_bufferystreams_internalsvioi": 77, "0x0041334a": 77, "kdo_next_input_bufferystreamsviomm1i": 77, "0x000c04ab": 77, "key_mep_4": 77, "0x000c3eaf": 77, "implicit_keyed_single_method_engine_1": 77, "0x0040520f": 77, "kread_lineystreamsviomm0i": 77, "0x000c0321": 77, "key_mep_3": 77, "14": [77, 153, 154, 222, 232, 233], "0x0079dcf6": 77, "kcommand_line_loopycommand_linesvenvironment_commandsmm0i": 77, "0x000bf6b3": 77, "rest_key_xep_5": 77, "0x00007abe": 77, "kdo_execute_commandvcommandsmdylan_compilerm0i": 77, "17": [77, 202, 250], "0x000bb9bb": 77, "primitive_engine_node_apply_with_opt": 77, "18": [77, 232, 250], "0x0002b9ba": 77, "khandle_missed_dispatchvkgi": 77, "19": [77, 232, 239, 243, 246, 248], "0x0002aaef": 77, "kpgf_dispatch_absentvkgi": 77, "0x000c25e8": 77, "general_engine_node_n_engin": 77, "21": [77, 232], "0x004b19a8": 77, "kexecute_commandvcommandsmm0i": 77, "0x000c11ab": 77, "gf_xep_1": [77, 131, 176], "27": [77, 192], "0x0000aa9": 77, "kmainyconsole_environmentvdylan_compileri": 77, "0x0000abb3": 77, "_init_dylan_compiler__x_start_for_us": 77, "alarm": 77, "hadn": 77, "lazili": [77, 173, 183], "unix": [77, 79, 86, 88, 104, 127, 130, 132, 162, 167, 183, 198, 199, 206, 213, 214, 219, 222, 224, 227, 248, 249, 250], "sigpwr": 77, "sigxcpu": 77, "sigusr1": 77, "sigusr2": 77, "darwin": [77, 86, 88, 104, 115, 132, 206, 238, 248, 249, 251], "bt": 77, "sigtrap": 77, "0x00007ffff7dacb21": 77, "libdylan": [77, 213], "primitive_invoke_debugg": [77, 97], "x86_64": [77, 86, 88, 104, 115, 132, 176, 206, 228, 247, 248, 249, 250, 252], "0x00007ffff7d43da9": 77, "unavail": [77, 92, 94, 102, 177, 206], "boot": [77, 108, 126, 173], "1041": 77, "0x00007ffff7dccc05": 77, "general_engine_node_n": 77, "0x00007ffff7d52bc2": 77, "140": 77, "0x00007ffff7f7ee5d": 77, "libcommon": 77, "0x00000000004e19b0": 77, "448": 77, "0x00007ffff7d52743": 77, "nois": 77, "125": [77, 142], "0x00007ffff7d52716": 77, "154": 77, "0x00007ffff7fb0214": 77, "libdebug": 77, "0x00007ffff7fb0252": 77, "_init_debugging__x_debugging_for_us": 77, "34": 77, "0x0000000000401149": 77, "0x00007ffff763b09b": 77, "libc": 77, "__libc_start_main": 77, "0x00007fffffffe858": 77, "fini": 77, "rtld_fini": 77, "stack_end": 77, "0x00007fffffffe848": 77, "308": 77, "0x000000000040106a": 77, "_start": 77, "0x007ffff7d43da9": 77, "0x007ffff7d52bc2": 77, "0x007ffff7f7ee5d": 77, "0x007ffff7d52743": 77, "0x007ffff7d52716": 77, "0x007ffff7fb0214": 77, "xxx": [77, 85, 107, 154], "plain": [77, 152, 154, 246], "hex": [77, 242, 243], "dylan_valu": [77, 249], "t33": 77, "0x0000000100d38060": 77, "t35_0": 77, "0x00007ffeefbfe360": 77, "ustream_": 77, "0x0000000000000001": 77, "0x0000000100c38060": 77, "0x00007ffeefbfe370": 77, "attr": 77, "dereferenc": 77, "div_": 77, "0x00005555556232d0": 77, "0x00007ffff7fcd8f0": 77, "div": 77, "0x00005555556232a0": 77, "0x0000555555629a40": 77, "0x00007ffff7fcd8d0": 77, "0x0000555555623300": 77, "0x00007ffff7fcd8b0": 77, "0x00007ffff7e976e0": 77, "0x000055555562c700": 77, "0x0000000000000029": 77, "0x00007ffff7f39d20": 77, "weak": [77, 119, 153, 158, 173, 177, 188], "0x00007ffff7e97590": 77, "dylan_object_class": 77, "dylan_boolean_p": 77, "dylan_true_p": 77, "dylan_float_p": 77, "dylan_single_float_p": 77, "dylan_single_float_data": 77, "dylan_double_float_p": 77, "dylan_double_float_data": 77, "dylan_symbol_p": 77, "dylan_symbol_nam": 77, "dylan_pair_p": 77, "dylan_empty_list_p": 77, "dylan_head": 77, "dylan_tail": 77, "dylan_vector_p": 77, "dylan_string_p": 77, "dylan_string_data": 77, "dylan_simple_condition_p": 77, "dylan_simple_condition_format_str": 77, "dylan_simple_condition_format_arg": 77, "dylan_class_p": 77, "dylan_class_debug_nam": 77, "dylan_function_p": 77, "dylan_function_debug_nam": 77, "dylan_print_object": 77, "stdout": [77, 184, 206], "sigsegv": [77, 252], "nostop": 77, "noprint": 77, "welcom": [78, 79, 80, 117, 218, 223, 232, 246], "cli": [78, 209], "pack": [78, 104, 154, 206], "120": [79, 149], "720": 79, "dswank": [80, 84, 214], "repl": [80, 214], "setq": 80, "env": [80, 201, 226, 257], "open_dylan_user_registri": [80, 82, 84, 214, 246, 247], "tmp": [80, 88, 203], "couldn": 80, "recompil": [80, 83, 90, 91, 99, 102, 108, 189, 198, 238], "minibuff": 80, "xref": 80, "broad": [81, 101, 165, 174], "deftidea": 81, "tmbundl": [81, 218], "open_dylan_target_platform": [82, 115, 132, 248], "open_dylan_user_root": [82, 89, 104, 246], "open_dylan_user_build": 82, "bash": [83, 107, 203, 227], "ta": 83, "da": [83, 257], "explan": [83, 106, 108, 147, 199, 201], "submodul": [84, 117, 130, 178, 231, 236, 246, 247, 248, 251, 252, 255], "tip": [84, 208], "atom": [84, 122, 143, 176, 184, 208], "intellij": 84, "sublim": [84, 232], "textmat": [84, 232], "vim": [84, 232], "gdb": [84, 128, 251], "ext": [85, 233], "url": [85, 205, 233, 246], "publicli": [85, 233], "ssh": [85, 117, 132], "foundri": [85, 117], "recurs": [85, 94, 99, 117, 127, 130, 133, 138, 164, 173, 174, 182, 191, 198, 203, 246, 253, 257], "ff": 85, "rc": [86, 208], "ldl": 86, "advapi32": [86, 104, 208], "shell32": [86, 104, 208], "uv": 86, "posix": [86, 132, 145, 203, 205], "coreservic": 86, "nologo": [87, 104], "rlwrap": 87, "cycl": [87, 100, 107, 176, 250, 251], "cat": [88, 161, 257], "workspace1": 88, "workspace2": 88, "mkdir": 88, "appdata": 89, "roam": 89, "board": [90, 91, 94, 96, 97, 102], "unambigu": [90, 154], "entitl": 90, "despit": [91, 97, 136, 142, 225, 236, 247], "outcom": 91, "binocular": 91, "player": 91, "unsurprisingli": 91, "signifi": [91, 182], "avert": 91, "investig": 91, "tlb": 92, "ocx": 92, "encrypt": [92, 184], "rotnexampl": 92, "irotnexampl": 92, "822ed42a": 92, "3eb1": 92, "11d2": 92, "a3ca": 92, "0060b0572a7f": 92, "uuid": 92, "disp": 92, "12288": 92, "24576": 92, "decrypt": [92, 184], "24577": 92, "hresult": [92, 208], "c44502db": 92, "refclsid": 92, "coclass": 92, "nonei": 92, "irotn": 92, "post": [92, 118, 129, 143, 228, 229, 230, 231, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243], "rot": 92, "invalidarg": 92, "classic": [92, 135, 136, 143, 213], "rot13": 92, "cipher": 92, "offens": 92, "usenet": 92, "pmsg": [92, 208], "getmessag": [92, 208], "hwnd": [92, 208], "translatemessag": [92, 208], "dispatchmessag": [92, 208], "revok": [92, 201], "regserv": 92, "simplist": [92, 238], "postquitmessag": 92, "plaintext": 92, "he": [92, 143, 257], "oooooo": 92, "ciphertext": 92, "uniniti": [92, 127, 173], "watch": [92, 208], "naq": 92, "ur": 92, "jnf": 92, "tbvat": 92, "bbb": [92, 133], "yn": 92, "bbbbbb": 92, "dqg": 92, "kh": 92, "zdv": 92, "jrlqj": 92, "rrr": 92, "od": [92, 130, 233], "rrrrrr": 92, "ibar": 92, "typelibrari": 92, "iinterfaceon": 92, "interfaceonecoclass": 92, "iinterfacetwo": 92, "interfacetwococlass": 92, "collaps": [94, 139], "besid": [94, 144], "star": 94, "thereof": [94, 164, 202, 208], "costli": 94, "misc": [94, 136, 138], "accident": [94, 154, 257], "valuabl": 94, "startup": [94, 103, 122, 164, 199, 247], "temporari": [94, 99, 106, 107, 108, 118, 121, 203, 257], "intervent": [94, 106], "wordpad": 94, "innermost": 94, "launch": [94, 103, 142, 164, 206, 232, 250], "eval": [94, 108, 249], "phase": [94, 99, 102, 198, 213, 229, 233, 251], "afresh": 94, "desktop": [94, 143], "56": 94, "hit": [94, 118, 119, 192, 214, 257], "iep": [94, 119, 121, 123, 176], "49": 94, "triangular": 94, "30": [94, 118, 144, 154, 201, 202, 208, 229, 230, 232, 250], "leftmost": [94, 96, 121], "octagon": [94, 102], "hollow": 94, "untrac": [94, 107], "shot": [94, 135, 140, 201], "Into": 94, "image13": 94, "concerto": 94, "opu": 94, "moderato": 94, "image14": 94, "adagio": 94, "sostenuto": 94, "allegro": 94, "scherzando": 94, "presto": 94, "image15": 94, "andant": 94, "adagietto": 94, "largo": 94, "supplement": [94, 198], "exclud": [94, 107, 154, 184, 249, 251], "caught": [94, 97, 102, 147, 153], "agreement": [95, 237], "self": [95, 118, 126, 176, 205], "central": [95, 231, 246, 252], "rom": [95, 103], "presum": [96, 239], "filesystem": [96, 103, 203], "reversi": [96, 97, 98, 99, 100, 101, 103], "redisplai": [96, 97], "span": [96, 97], "likewis": [96, 97], "macroexpand": 96, "paus": [96, 97, 98, 99, 101, 102], "tamper": 96, "nine": [97, 176], "cosmet": [97, 139], "59": [97, 202], "73": 97, "tild": 97, "attend": 97, "gone": [97, 128, 140, 233, 238, 244], "emerg": 97, "scenario": [97, 168], "unrealist": 97, "went": [97, 134, 143], "uppermost": 97, "shortli": [97, 125], "led": [97, 143, 246, 250], "sb": 97, "succeed": [97, 177], "elt": [97, 161, 184, 257], "appar": [97, 119, 142, 152], "stori": [97, 119], "harm": [97, 102, 243], "sourcesaf": [98, 251], "vtabl": 98, "dual": 98, "deliveri": 99, "superproject": 99, "ddb": 99, "def": [99, 108], "gnu": [99, 101, 104, 251], "fly": [99, 140], "redefinit": [99, 116], "patch": [99, 126, 130, 136, 142, 218, 233], "loos": [99, 108, 182, 237], "tight": [99, 104, 108, 257], "nearing": 99, "indirectli": [99, 101, 124, 174, 199, 239], "bypass": [99, 118], "amongst": [99, 133, 143, 177], "unus": [99, 106, 108, 153, 174, 249], "tightli": 99, "relink": 99, "studio": [99, 101], "sync": [99, 201], "isbn": [100, 201], "201": [100, 201], "44211": 100, "ffi": [101, 106, 126, 164, 178, 194, 199, 201, 208, 227, 248, 252], "reinstat": 101, "repackag": [101, 107, 180, 183], "scissor": 101, "nomin": 101, "reloc": [101, 118, 119, 127, 198], "room": [101, 257], "x1000000": 101, "vice": [101, 107], "versa": [101, 107], "devot": 102, "enclosur": 102, "styliz": [102, 162], "someon": [102, 132, 225, 233, 238], "predetermin": 102, "hereaft": [103, 188], "hdrun": 103, "hddbg": 103, "hostnam": [103, 118], "spiral": 103, "c_drive": 103, "ppc": [104, 132, 142, 213], "coff": 104, "elf": 104, "loadabl": 104, "binutil": 104, "companion": [104, 202], "parameter": 104, "linkdll": 104, "nodefaultlib": 104, "pdb": 104, "dllname": 104, "debugtyp": 104, "cv": [104, 213], "kernel32": [104, 208], "linkopt": 104, "poorli": [104, 132, 239], "insuffici": [104, 106, 201, 203], "christoph": 104, "seiwald": 104, "founder": 104, "perforc": 104, "jambas": 104, "yacc": [104, 143], "vc6": 104, "vc7": 104, "mini": 104, "excerpt": 104, "dylanmakefil": 104, "mkf": 104, "0x63f20000": 104, "notfil": 104, "unifi": [104, 119, 213, 231, 246, 252, 255], "dylanlibrari": 104, "dylanlibrarylinkeropt": 104, "guilflag": 104, "dylanlibrarybaseaddress": 104, "dylanlibraryclibrari": 104, "dylanlibrarycobject": 104, "dylanlibrarycsourc": 104, "dylanlibrarychead": 104, "dylanlibraryc": 104, "dylanlibraryrcfil": 104, "rcfile": 104, "dylanlibraryjaminclud": 104, "dylanlibraryus": 104, "includemkf": 104, "dfmcmangl": 104, "compiler_backend": 104, "jamdat": 104, "8601": [104, 202], "osplat": 104, "cpu": [104, 118, 119, 132, 168, 250], "personal_root": 104, "system_build_script": [104, 132], "system_root": 104, "target_platform": 104, "ppml": [105, 129], "subnot": [105, 185], "unclassifi": [105, 118], "dfm": [105, 106, 116, 129, 213, 246, 249], "unwind": [105, 108, 118, 119, 122, 176, 177, 246], "excurs": 105, "typist": [105, 246], "skelet": [106, 112, 114], "exploratori": [106, 116], "workflow": [106, 130, 255], "readili": 106, "arisen": 106, "tricki": 106, "ey": 106, "meth": [106, 119], "autogener": 106, "obsolet": [106, 208, 213, 233, 251], "classif": [106, 118], "creator": [106, 142], "effort": [106, 138, 213], "supertyp": [106, 154, 164, 184, 237], "180": 106, "bogu": [106, 108, 131], "inconsist": [106, 107, 133, 154], "inhibit": [106, 199, 201], "inaccess": [106, 118], "retract": 106, "accumul": [106, 170], "ters": [106, 133], "uninterest": 106, "retri": 106, "invari": [107, 118], "checker": 107, "t2": 107, "t1": 107, "l1": 107, "l0": 107, "t4": 107, "t12": 107, "t6": 107, "t7": 107, "t0": 107, "t3": [107, 249], "l4988i": 107, "dnprimitive_make_bind_exit_fram": 107, "setjmp": 107, "dnprimitive_frame_destin": 107, "dnprimitive_frame_return_valu": 107, "goto": [107, 125, 145], "dnprimitive_nlx": 107, "primit": [107, 108, 118, 122, 125, 126, 135, 152, 154, 174, 175, 177, 184, 224, 225, 228, 246, 248, 250, 251, 252], "dead": [107, 108, 116, 118, 140, 142], "longjmp": [107, 145], "shove": 107, "l1502i": 107, "yyi": 107, "l2": [107, 239], "callx": 107, "l2437i": 107, "dnprimitive_make_unwind_protect_fram": 107, "dnxxx": 107, "call0": 107, "dnyyi": 107, "dnprimitive_continue_unwind": 107, "outer": [107, 184, 185], "mutat": [107, 177, 201], "ssa": [107, 108], "dig": 107, "esqu": 107, "primop": [107, 246], "heap": [107, 108, 124, 125, 138, 153, 154, 246, 251], "t8": 107, "t9": 107, "t13": 107, "t11": 107, "t14": 107, "t10": 107, "bad": [107, 130, 149, 152, 257], "mv": [107, 118], "spill": 107, "unspil": 107, "strategi": [107, 132, 173, 184, 233], "xep": [107, 121, 176], "741": 107, "743": 107, "defeat": 107, "rid": [107, 108, 257], "trampl": 107, "_mv": 107, "values_max": 107, "preturn_valu": 107, "evacu": 107, "stupid": 107, "bother": [107, 176], "toni": [107, 118, 119, 122], "plan": [107, 124, 130, 208, 219, 227], "bunch": [108, 257], "sketch": 108, "recapitul": 108, "dood": [108, 178, 252], "stricter": 108, "batch": [108, 173, 198], "stat": [108, 168, 173, 213, 248], "lazi": [108, 131, 173, 177], "dylgram": 108, "paren": [108, 257], "lparen": 108, "rparen": 108, "nb": [108, 118], "defer": [108, 119, 154, 213, 233], "constitu": [108, 133, 202], "noteworthi": 108, "intra": 108, "fed": 108, "crucial": 108, "stateless": [108, 257], "bewar": [108, 208], "dragon": 108, "magic": [108, 129], "fulfil": 108, "poor": [108, 121, 135, 211], "man": 108, "ampersand": 108, "doubli": 108, "2x1": 108, "estim": [108, 173], "supporte": 108, "stupidli": 108, "fn": [108, 164, 176, 236], "valtyp": 108, "superflu": 108, "151": 108, "sane": 108, "te1": 108, "te2": 108, "torah": 108, "48": [108, 125], "fold": [108, 116, 189, 246, 251, 257], "useless": [108, 161, 257], "mustn": 108, "station": 108, "ltd": [109, 122], "rst": [110, 111, 112, 114, 117, 119, 130, 233, 238, 240, 241, 243, 246, 250], "prealloc": 111, "capac": [111, 150, 152], "fan": 111, "pronoun": 113, "plural": [113, 236, 257], "restructuredtext": [114, 233, 234, 237], "rst2html": 114, "doctow": 114, "cairo": 115, "homebrew": [115, 130, 225], "moduleset": 115, "osx": 115, "gtk3": 115, "uncom": 115, "dbg": 115, "msg": [115, 208], "gtk_debug": 115, "gdk_debug": 115, "preload": [116, 228], "risc": [116, 121, 125, 143, 231, 252], "assembli": 116, "tether": [116, 118, 119], "histor": [117, 143, 233, 244, 246], "cmu": [117, 143, 172], "checkout": [117, 130, 213], "config": [117, 198, 250, 251], "blame": 117, "ignorerevsfil": 117, "fork": [117, 130, 177, 214, 233], "makefil": [117, 132, 198], "proprietari": 117, "copyleft": 117, "ownership": [117, 176, 177], "mann": [118, 119, 122], "howard": [118, 119], "nub": [118, 119, 137, 138], "spy": [118, 119], "lightweight": [118, 152], "ptrace": 118, "pc": [118, 119], "rm": 118, "rf": 118, "halt": 118, "mortem": 118, "dilbert": 118, "ap": [118, 119], "conn": 118, "nubprocess": 118, "nubthread": 118, "rnub": 118, "suspend": [118, 119, 177], "nublibrari": 118, "kernel": [118, 208], "nop": 118, "ptr": [118, 208], "radix": 118, "unassign": [118, 233], "reg": 118, "sensibli": 118, "addr": [118, 119], "violat": [118, 124, 164, 190, 199, 201, 243], "stale": [118, 130], "runnabl": 118, "8b": 118, "16b": 118, "32b": 118, "ord": 118, "64b": 118, "asynchron": [118, 174, 177, 184, 201, 203, 206, 213], "ie": [118, 119], "unstart": 118, "kill": [118, 119], "ret": [118, 119], "cooki": 118, "thr": [118, 119], "unpredict": [118, 199, 201], "ctx": 118, "recov": [118, 145, 152, 154, 184], "timeout": [118, 176, 177], "sr": [118, 119], "expir": [118, 176, 177], "subtre": [118, 198, 243], "synthes": 118, "unload": 118, "rip": 118, "di": [118, 174], "undecid": 118, "privileg": [118, 201], "denorm": 118, "inexact": [118, 166], "noncontinu": 118, "thrown": 118, "interrupt": [118, 199, 213], "etyp": 118, "printabl": [118, 119, 236], "fp": [118, 119], "growth": 118, "tracer": 118, "nubhandl": 118, "lx": 118, "breakabl": 118, "cobol": 118, "masm": 118, "lowerbound": 118, "upperbound": [118, 169], "flowlinear": 118, "flowcalldirect": 118, "flowcallindirect": 118, "flowjumpdirect": 118, "flowjumpindirect": 118, "flowreturn": 118, "flowinterrupt": 118, "flowilleg": 118, "linenumb": 118, "slm": 118, "teb": [118, 126], "march": [119, 228, 250], "dm": 119, "rtm": 119, "develdbg": 119, "doubt": [119, 233], "_some_": 119, "watchpoint": [119, 120], "knacker": 119, "spam": 119, "libnam": 119, "enquir": 119, "gz": 119, "csi": 119, "poll": 119, "frozen": 119, "undertak": [119, 132], "tracepoint": 119, "deregist": [119, 126], "bp": [119, 159], "circuit": 119, "ph": 119, "blow": 119, "poke": 119, "pant": 119, "tpantstyinternalvdylan": 119, "overridden": [119, 182, 199, 246], "demang": 119, "cxt": 119, "excess": 119, "ellipsi": [119, 182], "abbrevi": [119, 123, 133, 257], "genuin": 119, "inspector": [119, 140, 151], "rept": 119, "nonword": 119, "incarn": 119, "probe": 119, "deduc": 119, "baggag": 119, "mixtur": 119, "dictionari": 119, "disambigu": 119, "Will": 119, "troubl": [119, 136, 142, 225], "replica": 119, "upload": [119, 130], "conceiv": 119, "robj": 119, "leak": [119, 153, 247], "condemn": 119, "weakli": [119, 174, 177], "weird": [119, 142, 145, 257], "oldest": [119, 233, 242], "obsolesc": 119, "beforehand": 119, "ditch": 119, "arriv": [119, 139, 227], "precomput": 119, "fixm": 119, "implic": [119, 125, 177, 199, 243], "unimpl": [119, 251], "flesh": [119, 138, 233], "unpick": 119, "snapshot": 119, "millisec": [119, 176], "sf": 119, "disassembli": 120, "transact": [120, 154, 173, 184, 201], "inspect": [120, 138, 150, 151, 182, 184, 199], "oblig": [121, 177], "mlist": [121, 176], "rightmost": [121, 206], "anywai": [121, 208, 257], "conserv": [121, 127, 199], "calle": [121, 125], "argcount": 121, "unoptim": 121, "fixer": 121, "func1": 121, "key1": [121, 131, 159, 190], "key2": [121, 131, 159, 190], "99": 121, "obligatori": 121, "12946": 121, "mep": [121, 251], "fluid": [122, 176], "percent": [123, 257], "q": [123, 205], "kexecute_componentqyptestworksvtestwork": 123, "execute_componentq": 123, "ptestwork": 123, "testwork": [123, 213, 217, 224, 229, 231, 253, 254, 255], "kstream_sizeystreams_protocolvcommon_dylanmiom0i": 123, "stream_siz": 123, "streams_protocol": 123, "common_dylan": 123, "0th": 123, "krun_test_applicationvtestworksmm0i": 123, "run_test_appl": 123, "klempty_listgvkd": 123, "kcondition_format_arguments_vectorvkii": 123, "untag": 124, "nlx": [125, 176], "upf": 125, "tag1": 125, "unlink": 125, "bef": 125, "52": [125, 149], "44": [125, 154, 233], "unset": 125, "overspil": 125, "65535": 126, "_glue": [126, 213], "bc": 126, "_init_run_tim": 126, "fixup": 126, "_init_": 126, "gluefil": 126, "_x": 126, "_main": 126, "cg": 126, "_init_dylan_librari": 126, "_dylandllentri": 126, "dllmain": 126, "rtg": 126, "_module_hinst": 126, "dylan_init_memory_manag": 126, "dylan_mm_register_thread": 126, "dxdylan": 126, "_dylan_initi": 126, "tlv": 126, "dylan_mm_deregister_thread_from_teb": 126, "dealoc": 126, "deiniti": 126, "dylan_shut_down_memory_manag": 126, "init_dylan_data": 126, "primitive_fixup_unimported_dylan_data": 126, "primitive_fixup_imported_dylan_data": 126, "primitive_register_traced_root": 126, "dylan_init_thread_loc": 126, "dylan_init_thread": 126, "call_init_dylan": 126, "mp": [126, 132, 226, 249, 250], "dylan_main": 126, "semaphor": [127, 208], "mutex": 127, "guard": [127, 177], "merit": [127, 147], "dint": 127, "dfn": 127, "sov": [127, 176], "_sov": 127, "b_string": 127, "_bst": 127, "d_name": 127, "_ctr": 127, "d_thread": 127, "_dth": 127, "handle1": 127, "handle2": 127, "icr": 127, "acycl": [127, 150], "dag": 127, "dataflow": 127, "fli": 127, "neutral": 127, "mg95": 127, "kdisplay_conditionycommand_linesvenvironment_commandsi": 128, "autoconf": 129, "hopefulli": [130, 132, 133, 154, 237], "foreach": 130, "quiet": 130, "sha1": 130, "distclean": 130, "autogen": [130, 132], "sh": [130, 132, 206], "dist": 130, "todo": [130, 202], "ci": [130, 237], "blob": 130, "yml": 130, "ac": [130, 132], "grep": 130, "demer": [130, 250], "weiser": [130, 250], "contributor": 130, "v2019": 130, "uniq": 130, "repo": [130, 211], "uncommit": [130, 201], "checkbox": [130, 140], "yyyi": [130, 202, 233], "abeaumont": 130, "cgai": 130, "pacman": 130, "announc": [130, 143, 177, 182, 213, 219, 222, 224, 227, 228, 229, 231, 245], "slavishli": 130, "dylanlanguag": 130, "twitter": [130, 225], "dylanlang": 130, "urgent": 130, "bump": 130, "plausibl": 130, "1pre": 130, "debian": [130, 225, 248], "wikipedia": [130, 143], "prologu": 131, "metaclass": [131, 237], "xep_": 131, "function_signature_": 131, "pgf_cache_": 131, "debug_name_": 131, "generic_function_methods_": 131, "discriminator_": 131, "_klsealed_generic_functiongvk": 131, "ksize_in_wordsvki": 131, "klsealed_generic_functiongvkew": 131, "kdsignature_lobjectg_object_rest_value_1vki": 131, "kpfalsevki": 131, "k342": 131, "k632": 131, "rsingular_labsent_engine_nodeg": 131, "rsingular_absent_engine_nod": 131, "monomorph": 131, "variant": [131, 202, 206, 249], "value1": 131, "value2": 131, "deuc": [131, 213, 236], "dylanwork": [131, 143, 213], "emb": 131, "screenshot": [131, 135, 136, 142, 143], "megamorph": 131, "tune": 131, "understood": [131, 135, 243], "emscripten": 132, "plenti": [132, 238], "__x86_64__": 132, "abi": 132, "jam": [132, 154, 185, 213, 248, 249, 250, 251], "jamfil": [132, 251], "ac_canonical_target": 132, "open_dylan_user_instal": 132, "gnueabihf": 132, "bcm2708": 132, "linaro": 132, "raspbian": 132, "gc_cflag": 132, "dgc_use_boehm": 132, "dgc_thread": 132, "gc_lflag": 132, "lgc": 132, "oppen": 133, "1980": [133, 143], "topla": 133, "suspens": 133, "sig": 133, "margin": [133, 135, 139], "nat": 133, "aaa": 133, "ccc": 133, "ddd": 133, "recomput": [133, 177, 197], "wast": 133, "fun": [133, 142, 154], "pp": 133, "999": 133, "eclips": 134, "competitor": 134, "experlisp": 134, "mcl": [134, 136, 138], "becam": [134, 143, 213], "foundat": [134, 154, 227], "atg": 134, "sk8": 134, "ik": 134, "nassi": 134, "newton": [134, 135, 143, 144], "pda": 134, "disband": 134, "pott": [135, 136, 137, 138, 139, 141, 142, 143], "cambridg": [135, 136, 141], "amaz": [135, 140, 225], "sophist": [135, 145, 225], "newtonscript": 135, "megabyt": [135, 142], "prone": 135, "incomplet": [135, 184, 247, 250, 251, 252, 253], "slow": [135, 141, 142, 155, 156, 184, 198, 248], "68040": [135, 142], "quadra": [135, 142], "800": [135, 142], "68030": 135, "powerbook": [135, 142], "duo": 135, "agon": 135, "myself": 135, "patient": 135, "ambiti": 135, "tr": [135, 136, 139, 142, 202], "stare": 135, "patienc": [135, 142], "fractal": 135, "unwil": 135, "accustom": 135, "lispi": 135, "scienc": 135, "cultur": 135, "unspoken": 135, "mysteri": 135, "slowli": 135, "graduat": 135, "_either_": 135, "sceneri": 135, "_or_": 135, "willing": [135, 221, 225, 257], "ventur": 135, "alien": 135, "landscap": 135, "twenti": 135, "rant": 135, "g4": [135, 142], "rainerjoswig": 135, "mbyte": 135, "50mb": 135, "ram": [135, 142], "expert": 135, "egc": 135, "ephemer": [135, 201], "mmu": 135, "unnotic": 135, "cool": [135, 142], "cooler": 135, "ago": [135, 142, 143], "applescript": 135, "powermac": 135, "builder": [135, 136], "lelisp": 135, "macapp": 135, "genera": [135, 225], "intellicorp": 135, "kee": 135, "xerox": 135, "interlisp": 135, "digitool": [135, 136, 141], "ton": [135, 152], "mc68k": 136, "flaw": 136, "financi": [136, 225], "dissolv": 136, "fund": [136, 143], "powerpc": [136, 138, 141, 142, 219], "rudimentari": [136, 208], "tester": 136, "hi": [136, 143, 147, 226], "eulogi": 136, "leftov": 136, "turtl": 137, "gave": [137, 139, 142], "confid": 137, "dynamo": 137, "truli": [138, 140, 225], "68k": 138, "fat": 138, "innard": 138, "ambit": 138, "tweak": 138, "drill": 139, "unobtrus": 139, "incred": 139, "facilit": 139, "ibm": 139, "visualag": 139, "greatli": [139, 211, 248, 251], "refactor": 139, "disclosur": 139, "rough": 139, "preliminari": 140, "adorn": 140, "assembl": [140, 213], "locker": 140, "farther": 140, "uncomplet": 140, "implementor": [140, 177, 199, 233, 239], "tantal": 140, "nope": 140, "deem": [140, 177], "intermix": 140, "freeli": [140, 153, 242], "remark": 140, "ran": [141, 143, 225], "preview": 141, "circa": 141, "invit": 141, "lab": 141, "hire": [141, 143], "brightest": 141, "proof": 141, "complementari": 141, "agonizingli": 141, "buggi": 141, "intrigu": 141, "sale": 141, "employe": [141, 143], "retrofit": 141, "shirt": 141, "dream": 141, "hear": [142, 232, 249], "outlook": 142, "grim": 142, "unfix": 142, "stabil": [142, 246], "dyln": 142, "resedit": 142, "diln": 142, "extran": 142, "am": [142, 202], "mhz": 142, "512": [142, 248], "pain": 142, "ridicul": 142, "partit": 142, "hour": [142, 202, 257], "miser": [142, 182], "workaround": [142, 239], "began": [142, 143], "incomprehens": 142, "toss": 142, "reboot": 142, "shame": 142, "heaven": 142, "hell": 142, "adulthood": 142, "partnership": 143, "carnegi": [143, 172, 225, 247], "mellon": [143, 172, 225, 247], "univers": [143, 155, 172, 201, 203, 225, 247], "brochur": 143, "wwdc": 143, "1993": 143, "debat": 143, "fruition": 143, "eulisp": 143, "morph": 143, "metaobject": 143, "abus": 143, "faith": 143, "rendit": 143, "elabor": 143, "deleg": 143, "lex": 143, "modularli": 143, "happili": 143, "commerci": [143, 172, 213, 225], "ship": [143, 214], "clive": 143, "tong": 143, "1989": 143, "colour": 143, "migrat": 143, "1988": 143, "hunter": 143, "knightbridg": 143, "sand": 143, "formerli": 143, "clim": [143, 225], "collabor": 143, "drew": 143, "newsgroup": 143, "fell": [143, 225], "kick": 143, "spice": 143, "cmucl": 143, "fahlman": 143, "ceas": 143, "septemb": 143, "gywdion": 143, "retir": [143, 216], "favor": [143, 176], "1992": 143, "equip": 143, "corpor": 143, "dec": [143, 202, 234, 238, 239], "thoma": [143, 242], "gambit": 143, "marlai": 143, "dominiqu": 143, "boucher": 143, "idyl": 143, "mid": 143, "rscheme": 143, "utexa": 143, "wilson": 143, "cheat": 144, "nbsp": 144, "happi": [144, 219, 222, 224, 227, 228, 229, 231], "advisori": 145, "react": 145, "pet": 145, "bare": [145, 154, 186, 234], "deepli": [145, 182, 257], "goldfish": 145, "nonloc": [145, 250], "dispos": 145, "fd": [145, 199], "errorcod": 145, "neatli": 145, "circumv": 145, "fallback": 145, "2002": 146, "2003": 146, "mut": 147, "resembl": [147, 149, 152], "car1": 147, "odomet": 147, "car2": 147, "rebound": [147, 149, 177], "substructur": 147, "car3": 147, "untyp": [149, 153, 154, 176], "printf": 149, "nasti": 149, "ld": 149, "provis": [149, 240], "swap": 149, "sound": [149, 225, 233], "unclear": 149, "reread": 149, "weekend": [149, 222], "excus": 149, "mobi": 149, "baz": 149, "nameless": 149, "outliv": 149, "putter": 149, "hypothet": [149, 150, 154, 184], "66": 149, "rec": 149, "65": 149, "subseq": 149, "_end": [149, 236], "assert": [149, 164, 201, 247, 248, 250, 251], "cloudi": 149, "overli": 149, "tax": [150, 152], "truck": [150, 151, 152], "traffic": [150, 152], "disallow": [150, 177], "rust": 151, "seat": 151, "belt": 151, "cargo": 151, "insur": 151, "governor": 151, "wave": 151, "destructor": 152, "dirti": 152, "expertis": 152, "snippet": [152, 192], "sn": [152, 237], "northern": 152, "motor": 152, "1000000": 152, "2000000": 152, "sal": 152, "faisal": 152, "municip": 152, "accomplish": [152, 154], "getownernam": 152, "setownernam": 152, "creativ": 152, "drudgeri": 152, "vanilla": 152, "intellig": 152, "flyweight": 152, "et": [152, 236], "al": [152, 236], "earthli": 153, "tcl": 153, "risk": 153, "shoe": 153, "larri": 153, "imper": [153, 257], "joe": 153, "inelig": 153, "erron": [153, 250], "cast": [153, 154, 201, 208, 246, 251], "greatest": [153, 171, 192, 201], "battl": 153, "harden": 153, "thousand": 153, "mission": 153, "x_coord": 154, "y_coord": 154, "lineseg": 154, "carrier": 154, "statist": [154, 168, 251], "xff5e00": 154, "xff5f00": 154, "callabl": [154, 191, 208, 250], "adddoubl": 154, "adddoubleobject": 154, "lgl": 154, "opengl": 154, "_dll": [154, 198], "fdllname": [154, 198], "linklib": [154, 198], "ccflag": [154, 198, 250], "cflag": [154, 198], "nn_socket": 154, "nn_bind": 154, "inproc": 154, "nn_connect": 154, "nn_send": 154, "x007d0aac": 154, "nn_recv": 154, "x007d0ae4": 154, "nn_close": 154, "various": 154, "objc": [154, 225, 227, 249, 250], "selector": [154, 225, 249], "assur": [154, 233], "sizeof": [154, 164], "chop": 154, "size_t": [154, 249], "ssize_t": [154, 249], "un": 154, "synonym": 154, "simplif": [154, 185, 247], "int_val": 154, "string_val": 154, "windowhandl": 154, "streamhandl": 154, "currentwindow": 154, "currentstream": 154, "cw": 154, "xff5400": 154, "xff6400": 154, "_matrix": 154, "rank": 154, "matrixadd": 154, "m1": [154, 166], "m2": [154, 166], "monad": 154, "bool_funct": 154, "bool_pointer_funct": 154, "eof": [154, 184], "bitfield": 154, "pragma": 154, "onepoint": 154, "pointarrai": 154, "int_valu": 154, "double_valu": 154, "onenum": 154, "numarrai": 154, "154541": 154, "92832": 154, "e23": 154, "11232e": 154, "out1": 154, "out2": 154, "mix_it_up": 154, "xfefe770": 154, "__stdcall": [154, 250], "strlen": 154, "fill_loc": 154, "loc1": 154, "loc2": 154, "max_then_read": 154, "read_stuff": 154, "c_name": 154, "101": 154, "102": 154, "val1": 154, "val2": 154, "abc": [154, 182, 184, 240, 243], "xff6e00": 154, "objc_msgsend": [154, 249], "sel": [154, 249], "process_count": 154, "57": 154, "machinenam": 154, "xaaabc00": 154, "malloc": [154, 250], "97386437634": 154, "pointstruct": 154, "plotpoint": 154, "plot": 154, "analogu": 154, "ptr1": 154, "ptr2": 154, "unclaim": 154, "interleav": [154, 177, 200], "pad": [155, 156, 201, 202, 233, 236], "set1": 155, "set2": 155, "cardin": [155, 201], "vector1": 156, "vector2": 156, "pad1": 156, "pad2": 156, "plist": [158, 246], "thereon": 161, "122": [161, 199], "elig": [161, 174], "sat": [161, 250], "ON": 161, "mat": 161, "blind": 162, "unwrap": 162, "isatti": 162, "dumb": 162, "conemu": 162, "dst": [163, 176, 202, 257], "src": [163, 176, 257], "hexstr": [163, 250], "unfound": 164, "112": [164, 167], "361": 164, "goodby": 164, "scientif": 164, "36": [164, 201, 202], "subrang": [164, 208], "strtod": 164, "resort": [164, 191, 231, 237, 252], "hoc": [164, 237], "136": 164, "isomorph": [164, 173, 237], "d1": [164, 237], "sectionnam": 164, "aabbccdd": 164, "bb": 164, "aa": 164, "ccdd": 164, "contractu": 164, "transcendent": [165, 247, 250], "i1": 166, "i2": 166, "logbit": [166, 192], "dividend": 166, "divisor": [166, 192], "quotient": 166, "ceil": [166, 192], "divis": [166, 201], "infin": [166, 192, 250], "halfwai": 166, "ud": 166, "114": 167, "microsecond": [168, 170, 202], "spent": [168, 233], "671000": 168, "1000": 168, "pseudorandomli": 169, "elaps": [170, 177], "contagion": [171, 192], "atan2": 171, "logarithm": [171, 250], "\u03c0": 171, "aco": [171, 250], "asin": [171, 250], "atan": [171, 250], "acosh": [171, 250], "hyperbol": [171, 250], "asinh": [171, 250], "atanh": [171, 250], "quadrant": 171, "cosh": [171, 250], "sinh": [171, 250], "tanh": [171, 250], "ilog2": [171, 250], "logn": 171, "hypot": [171, 250], "euclidean": 171, "isqrt": 171, "acknowledg": 172, "reconstruct": [173, 192], "cyclic": 173, "multius": 173, "evolut": 173, "reiniti": 173, "flush": [173, 179, 184, 248], "reachabl": [173, 174], "untouch": 173, "eagerli": 173, "reinit": 173, "lieu": 173, "gender": 173, "femal": 173, "interdatabas": 173, "recycl": [174, 197], "predict": [174, 243], "finaliz": 174, "await": 174, "ben": 174, "idempot": 174, "pitfal": 174, "die": 174, "newval": 174, "regularli": 174, "rdtsc": 176, "readcyclecount": 176, "__builtin_readcyclecount": 176, "returnaddress": 176, "__builtin_return_address": 176, "schedul": [176, 177], "unlock": [176, 177, 184, 224], "millisecond": [176, 202], "exceed": [176, 177, 182], "sleep": [176, 177], "primitive_alloc": 176, "primitive_byte_alloc": 176, "word_siz": 176, "byte_s": 176, "primitive_fill_e_": 176, "primitive_replace_e_": 176, "primitive_replace_vector_e_": 176, "dest": 176, "primitive_allocate_vector": 176, "primitive_copy_vector": 176, "primitive_initialize_vector_from_buff": 176, "primitive_make_str": 176, "primitive_continue_unwind": 176, "primitive_nlx": 176, "bind_exit_fram": 176, "primitive_inlined_nlx": 176, "first_argu": 176, "primitive_make_box": 176, "primitive_make_environ": 176, "xep_0": 176, "argument_count": 176, "xep_1": 176, "xep_2": 176, "xep_3": 176, "xep_5": 176, "xep_6": 176, "xep_7": 176, "xep_8": 176, "xep_9": 176, "xep0": 176, "xep1": 176, "xep9": 176, "vararg": 176, "optional_xep": 176, "gf_xep_0": 176, "gf_xep_2": 176, "gf_xep_3": 176, "gf_xep_4": 176, "gf_xep_5": 176, "gf_xep_6": 176, "gf_xep_7": 176, "gf_xep_8": 176, "gf_xep_9": 176, "gf_xep": 176, "gf_optional_xep": 176, "primitive_basic_iep_appli": 176, "primitive_iep_appli": 176, "primitive_xep_appli": 176, "significand": 176, "integer_to_single_float": 176, "single_float_to_integ": 176, "unari": [176, 249], "deni": [177, 205, 208], "disastr": 177, "bindabl": 177, "pursu": 177, "memor": 177, "thunk": 177, "correl": 177, "deadlock": [177, 199, 222, 229, 247, 251], "revert": [177, 182], "interlock": 177, "compet": [177, 233], "place1": 177, "place2": 177, "analogi": 177, "argn": 177, "binder": 177, "therein": 178, "pprint": [179, 181, 251], "contigu": [179, 203], "justifi": 179, "15d": 179, "ii": 179, "consum": [179, 184], "subcompon": 182, "__repr__": 182, "__str__": 182, "unlimit": 182, "acct": 182, "xdeadbeef": 182, "colnum": 182, "colinc": 182, "metaphor": 184, "whoa": 184, "mock": 184, "granular": 184, "thereaft": [184, 239], "peek": 184, "linefe": 184, "utf": 184, "ch": 184, "reposit": 184, "uncompress": 184, "grown": 184, "unwritten": 184, "behalf": 184, "tty": [184, 206], "sv": 184, "abcdef": 184, "writeabl": [184, 203], "unaffect": 184, "unind": 184, "classnam": 184, "disappear": [185, 195], "glanc": 185, "adder": 185, "incr": 185, "relai": 186, "unreserv": 186, "id1": 190, "id2": 190, "commut": 190, "when2": 191, "virtu": 191, "overcom": 191, "punctuat": 191, "iterate2": 191, "mcrevers": 191, "hygien": 191, "gensym": 191, "thusli": 191, "integer1": 192, "integer2": 192, "preclud": 192, "releg": 192, "object1": 192, "object2": 192, "complex1": 192, "complex2": 192, "number1": 192, "number2": 192, "float1": 192, "float2": 192, "lcm": 192, "gcd": 192, "spars": 192, "128": 192, "real1": 192, "real2": 192, "reexport": 192, "norm": 192, "integer3": 192, "integer4": 192, "1_000_000": [193, 242], "4_000_000": [193, 242], "000_002": [193, 242], "3_000": [193, 242], "000_123": [193, 242], "0e1_000": [193, 242], "xdead_beef": [193, 242], "b1111_0000": [193, 242], "1_2_3_4_5_6_7": [193, 242], "1__2": [193, 242], "_123": [193, 242], "123_": [193, 242], "1_": [193, 242], "_23": [193, 242], "23_": [193, 242], "x_feed": [193, 242], "o777_": [193, 242], "needn": 194, "undelimit": 195, "30am": 195, "mailto": [195, 205], "bgcolor": 195, "ffffff": 195, "untermin": [195, 201], "disregard": 197, "unnecessarili": [197, 236, 237], "aliv": 197, "stringent": [198, 201], "llibrari": 198, "fpic": 198, "pkg": 198, "backtick": 198, "xnnnnnnnn": 198, "0xnnnnnnnn": 198, "footprint": 198, "filetyp": 198, "naiv": [198, 257], "winsock2": [199, 208], "underwai": 199, "peer": 199, "74": 199, "dn": 199, "endian": [199, 206], "datagram": 199, "ftp": [199, 205], "daytim": 199, "connectionless": 199, "interrog": [199, 201, 203], "sender": 199, "suchlik": 199, "recover": 199, "unrecover": 199, "broken": [199, 246, 249], "wsa": 199, "wsanotsock": 199, "79": 200, "unredirect": 200, "connectivitytm": 201, "obdc": 201, "89": 201, "92": 201, "undocu": 201, "dbmse": 201, "objectifi": 201, "indistinguish": 201, "14201": 201, "morgan": 201, "kaufmann": 201, "55860": 201, "190": 201, "benjamin": 201, "cum": 201, "8053": 201, "1748": 201, "82459": 201, "chri": [201, 226], "jim": 201, "reuter": 201, "elmasri": 201, "ramez": 201, "navath": 201, "shamkant": 201, "author_id": 201, "login": [201, 206], "idiosyncrasi": 201, "theori": 201, "comparand": 201, "truth": 201, "forgo": 201, "revisit": 201, "last_nam": 201, "first_nam": 201, "lifespan": 201, "lowest": 201, "booker": 201, "sql_char": 201, "sql_varchar": 201, "varchar": 201, "sql_longvarchar": 201, "longvarchar": 201, "sql_decim": 201, "sql_numer": 201, "sql_bit": 201, "sql_tinyint": 201, "tinyint": 201, "sql_smallint": 201, "smallint": 201, "sql_integ": 201, "sql_bigint": 201, "bigint": 201, "sql_real": 201, "sql_float": 201, "sql_doubl": 201, "sql_binari": 201, "sql_varbinari": 201, "varbinari": 201, "sql_longvarbinari": 201, "longvarbinari": 201, "sql_date": 201, "sql_time": 201, "sql_timestamp": 201, "sqlstate": 201, "presumpt": 201, "schema": 201, "referenti": 201, "nullabl": 201, "serializ": 201, "repertoir": 201, "datetim": [201, 202], "zone": 201, "displac": 201, "rowset": 201, "nation": [201, 208], "position": [201, 236], "unsupport": [201, 203], "month": [201, 202, 213, 227], "rollback": 201, "trim": 201, "se": 201, "inde": [201, 238], "diag": 201, "db": 201, "stmt": 201, "jan": [202, 233, 234, 235, 250], "1800": 202, "2199": 202, "greenwich": 202, "week": 202, "iso8601": 202, "gmt": 202, "eastern": 202, "240": 202, "daylight": 202, "vagari": 202, "calendar": 202, "5th": 202, "januari": 202, "30th": 202, "deconstruct": 202, "rfc": [202, 233], "822": [202, 233], "1123": 202, "rfc1123": 202, "date1": 202, "date2": 202, "duration1": 202, "duration2": 202, "diff": [202, 257], "19960418t210634z": 202, "19960418t210634": 202, "0034z": 202, "dt": 202, "sep": 202, "2013": [202, 219, 225, 238, 239, 249, 256], "email": [202, 205, 221, 233], "rss": 202, "999999": 202, "est": 202, "20th": 202, "sundai": 202, "tuesdai": 202, "wednesdai": 202, "thursdai": 202, "fridai": 202, "saturdai": 202, "keytim": 202, "hhmm": 202, "19970717t1148": 202, "0400": 202, "dd": [202, 233, 255], "ss": 202, "timezon": 202, "tzd": 202, "w3": 202, "eg": 202, "ddthh": 202, "mmtzd": 202, "16t19": 202, "sstzd": 202, "stzd": 202, "45": 202, "pm": 202, "coars": 202, "mount": 203, "disposit": 203, "unc": [203, 205], "aforement": 203, "incorrect": [203, 234, 246, 250], "abstractli": 203, "computernam": 203, "shortest": 203, "toothpast": 205, "cgi": 205, "realpath": 205, "subdir": 205, "listabl": 205, "usernam": 205, "pid": 206, "unsatisfi": 206, "workgroup": 206, "aarch64": [206, 229, 251], "riscv64": 206, "silicon": 206, "win3": 206, "win95": 206, "win98": 206, "winnt": [206, 208], "1381": 206, "1212": 206, "outputt": [206, 249], "comspec": 206, "setsid": 206, "subprocess": 206, "daemon": 206, "stderr": 206, "augment": [206, 240, 243, 249], "waitpid": 206, "waitforsingleobject": 206, "stdin": 206, "tconc": 207, "necessit": 208, "exhaust": [208, 246], "windef": 208, "winerror": 208, "winbas": 208, "pipe": 208, "winnl": 208, "gdi": 208, "wingdi": 208, "gdi32": 208, "winus": 208, "user32": 208, "winver": 208, "comdlg32": 208, "commdlg": 208, "dlg": 208, "cderr": 208, "commctrl": 208, "comctl32": 208, "winreg": 208, "richedit": 208, "riched32": 208, "dde": 208, "ddeml": 208, "shellapi": 208, "qo": 208, "mswsock": 208, "comlib": 208, "win16": 208, "windowsx": 208, "no_error": 208, "list_entri": 208, "createwindow": 208, "rect": 208, "multitud": 208, "ulong": 208, "dword": 208, "lresult": 208, "translateacceler": 208, "makelparam": 208, "tchar": 208, "uchar": 208, "prect": 208, "nprect": 208, "lprect": 208, "lp": 208, "np": 208, "hmenu": 208, "fooa": 208, "foow": 208, "pt": 208, "numberread": 208, "readconsoleinput": 208, "getlargestconsolewindows": 208, "wndproc": 208, "uparam": 208, "lparam": 208, "loword": 208, "hiword": 208, "dlgproc": 208, "hookproc": 208, "uint": 208, "getlasterror": 208, "scode": 208, "setwindowtext": 208, "seealso": 208, "hinstanc": 208, "sw": 208, "exitprocess": 208, "wc": 208, "pwndclass": 208, "lpfnwndproc": 208, "mainwndproc": 208, "registerclass": 208, "showwindow": 208, "updatewindow": 208, "wparam": 208, "createfil": 208, "createnamedpip": 208, "nouseroverrid": 208, "lctype": 208, "getlocaleinfoa": 208, "getlocaleinfo": 208, "dwflag": 208, "gettimeformat": 208, "getnumberformat": 208, "getcurrencyformat": 208, "getdateformat": 208, "charformat": 208, "cfm": 208, "cfe": 208, "paraformat": 208, "pfm": 208, "farproc": 208, "hbrbackground": 208, "hbrush": 208, "ularg": 208, "plarg": 208, "makepoint": 208, "long2point": 208, "xy": 208, "rectl": 208, "metafil": 208, "createmetafil": 208, "closemetafil": 208, "wsprintf": 208, "wvsprintf": 208, "int32x32to64": 208, "int64shllmod32": 208, "int64shramod32": 208, "int64shrlmod32": 208, "uint32x32to64": 208, "muldiv": 208, "_hread": 208, "_hwrite": 208, "_lclose": 208, "_lcreat": 208, "_llseek": 208, "_lopen": 208, "_lread": 208, "_lwrite": 208, "accessresourc": 208, "allocdstocsalia": 208, "allocresourc": 208, "allocselector": 208, "ansilowerbuff": 208, "ansinext": 208, "ansiprev": 208, "ansitooem": 208, "ansitooembuff": 208, "ansiupp": 208, "ansiupperbuff": 208, "bn_dblclk": 208, "bn_disabl": 208, "bn_doubleclick": 208, "bn_hilit": 208, "bn_paint": 208, "bn_push": 208, "bn_unpush": 208, "bs_userbutton": 208, "cpl_inquir": 208, "changeselector": 208, "closecomm": 208, "closesound": 208, "copylzfil": 208, "countvoicenot": 208, "dos3cal": 208, "defhookproc": 208, "definehandlet": 208, "devicemod": 208, "dlgdirselect": 208, "dlgdirselectcombobox": 208, "enumfont": 208, "err_": 208, "extdevicemod": 208, "fixbrushorgex": 208, "flushcomm": 208, "freemodul": 208, "freeprocinst": 208, "freeselector": 208, "gcw_hbrbackground": 208, "gcw_hcursor": 208, "gcw_hicon": 208, "gww_hinstanc": 208, "gww_hwndparent": 208, "gww_id": 208, "gww_userdata": 208, "getaspectratiofilt": 208, "getatomhandl": 208, "getbitmapbit": 208, "getbitmapdimens": 208, "getbrushorg": 208, "getcharwidth": 208, "getcodehandl": 208, "getcodeinfo": 208, "getcommerror": 208, "getcurrentpdb": 208, "getcurrentposit": 208, "getenviron": 208, "getfreespac": 208, "getfreesystemresourc": 208, "getinstancedata": 208, "getkbcodepag": 208, "getmetafil": 208, "getmetafilebit": 208, "getprivateprofileint": 208, "getprivateprofilesect": 208, "getprivateprofilesectionnam": 208, "getprivateprofilestr": 208, "getprivateprofilestruct": 208, "getprofileint": 208, "getprofilesect": 208, "getprofilestr": 208, "getstringtypea": 208, "getstringtypew": 208, "gettempdr": 208, "gettextext": 208, "gettextextentex": 208, "gettextextentpoint": 208, "getthresholdev": 208, "getthresholdstatu": 208, "getviewportext": 208, "getviewportorg": 208, "getwindowext": 208, "getwindoworg": 208, "globalcompact": 208, "globaldosalloc": 208, "globaldosfre": 208, "globalfix": 208, "globallrunewest": 208, "globallruoldest": 208, "globalnotifi": 208, "globalpagelock": 208, "globalpageunlock": 208, "globalunwir": 208, "globalunfix": 208, "globalwir": 208, "hfile": 208, "hfile_error": 208, "lzdone": 208, "lzstart": 208, "limitemspag": 208, "localcompact": 208, "localinit": 208, "localnotifi": 208, "localshrink": 208, "lockseg": 208, "makeprocinst": 208, "moveto": 208, "netbioscal": 208, "oemtoansi": 208, "oemtoansibuff": 208, "offsetviewportorg": 208, "offsetwindoworg": 208, "opencomm": 208, "openfil": 208, "opensound": 208, "pm_noyield": 208, "profclear": 208, "proffinish": 208, "profflush": 208, "profinschk": 208, "profsampr": 208, "profsetup": 208, "profstart": 208, "profstop": 208, "read_writ": 208, "readcomm": 208, "regcreatekei": 208, "regenumkei": 208, "regopenkei": 208, "regqueryvalu": 208, "regsetvalu": 208, "system_fixed_font": 208, "scaleviewportext": 208, "scalewindowext": 208, "setbitmapdimens": 208, "setcommeventmask": 208, "setenviron": 208, "setmetafilebit": 208, "setresourcehandl": 208, "setscrollpo": 208, "setscrollrang": 208, "setsoundnois": 208, "setswapareas": 208, "setviewportext": 208, "setviewportorg": 208, "setvoiceacc": 208, "setvoiceenvelop": 208, "setvoicenot": 208, "setvoicequeues": 208, "setvoicesound": 208, "setvoicethreshold": 208, "setwindowext": 208, "setwindoworg": 208, "setwindowshook": 208, "startsound": 208, "stopsound": 208, "switchstackback": 208, "switchstackto": 208, "syncallvoic": 208, "ungetcommchar": 208, "unhookwindowshook": 208, "unlockseg": 208, "validatecodeseg": 208, "validatefreespac": 208, "wm_ctlcolor": 208, "wnetaddconnect": 208, "wnetcancelconnect": 208, "waitsoundst": 208, "writecomm": 208, "writeprivateprofilesect": 208, "writeprivateprofilestr": 208, "writeprivateprofilestruct": 208, "writeprofilesect": 208, "writeprofilestr": 208, "framemak": [211, 220], "epub": [211, 220, 232], "restructur": 211, "proven": 211, "fair": 211, "recharg": [212, 232], "dear": [213, 219, 222, 224, 227, 228, 229, 231], "pleasur": [213, 219, 222, 224, 225, 227, 228, 229, 231], "beta4": 213, "april": 213, "mit": 213, "unannounc": 213, "beta5": 213, "850": 213, "openhub": 213, "tracker": [213, 219, 222, 224, 227, 233], "shortvers": 213, "consolid": 213, "redirect": [213, 257], "eintr": 213, "ssl": [213, 231], "openssl": [213, 252], "smtp": 213, "vastli": 213, "immens": 213, "_nsgetexecutablepath": 213, "odsystem": 213, "interf": 213, "outdat": 213, "irix": 213, "suno": 213, "solari": 213, "osf3": 213, "pentium": 213, "dw": 213, "unnecesari": 213, "highligt": 218, "0003": [219, 246], "multithread": 219, "lion": 219, "leopard": 219, "luck": [219, 222, 224, 227, 228, 229, 231], "neil": 220, "sonya": 220, "robert": 220, "matthew": 220, "reformat": [220, 257], "rewrot": 220, "pygment": 220, "upcom": [220, 250], "skill": [221, 232], "newcom": 221, "america": 221, "europ": 221, "asia": 221, "zealand": 221, "unacknowledg": 222, "thon": 222, "begun": [223, 224, 233], "defunct": 225, "maker": 225, "xanali": 225, "waysid": 225, "sponsor": 225, "decad": 225, "ping": 225, "nsobject": 225, "msgsend": [225, 249, 250], "theme": [225, 232], "ipv6": 225, "gentoo": [225, 247], "appreci": 225, "nixo": [226, 232], "pollut": 226, "boehmgc": 226, "unstabl": 226, "groundwork": [227, 247], "2015": [227, 232, 240], "matur": [228, 233, 250], "i386": [228, 250], "octob": [229, 251], "novemb": [231, 252], "rv64gc": [231, 252], "isa": [231, 252], "bdw": [232, 253], "overdu": 232, "overhaul": [232, 248], "sidebar": 232, "navbar": 232, "furo": 232, "hoorai": 232, "ain": [232, 233], "love": [232, 251], "03": 232, "05": [232, 236], "08": [232, 234, 236, 237], "06": 232, "bugfix": 232, "relicens": [232, 246], "liber": 232, "inmprov": 232, "revit": 232, "archiv": 232, "20170313134206": 232, "pep": 233, "barri": 233, "warsaw": 233, "jeremi": 233, "hylton": 233, "goodger": 233, "consensu": [233, 244], "dissent": [233, 244], "opinion": [233, 244], "advic": 233, "codebas": 233, "shepherd": 233, "vet": 233, "brought": [233, 251], "approv": 233, "vote": 233, "unduli": 233, "inadequ": 233, "evid": 233, "cp": 233, "mmm": [233, 255], "dom": 233, "2822": 233, "substant": 233, "typo": 233, "newest": 233, "xxxx": 233, "aaaa": 233, "png": 233, "committ": 233, "subscrib": 233, "sentenc": [233, 234], "categor": 233, "flux": 233, "bill": 234, "chile": 234, "cube": 234, "everybodi": 234, "feb": [234, 238, 240, 241, 242], "strengthen": 234, "controversi": 234, "norvig": 234, "09": [235, 236], "168": 235, "apr": 236, "comprehens": 236, "strive": 236, "gd": 236, "hodg": 236, "podg": 236, "ic": 236, "start1": 236, "end1": 236, "start2": 236, "end2": 236, "interspers": 236, "s1": [236, 237, 243], "s2": [236, 243], "boyer": 236, "moor": 236, "ish": 236, "jul": [237, 239], "aug": [237, 243], "subyp": 237, "dj": 237, "pseudosubtyp": 237, "dk": 237, "heterachi": 237, "cn": 237, "thumb": 237, "metatyp": 237, "hijack": 237, "tangibl": 237, "fallen": 237, "tractabl": 237, "specialis": 237, "mindi": 237, "shelv": 237, "cpl": 237, "partner": 237, "negoti": 237, "13th": 237, "8th": 237, "august": 237, "birthdai": [238, 242], "04": [238, 241, 242, 250], "2021": 238, "gitter": 238, "im": 238, "0006": 238, "mantra": 238, "bang": 238, "usr": 238, "inabl": [238, 243], "libari": 238, "verbatim": 238, "0007": 239, "2014": [239, 251, 256], "fillabl": 239, "k1": 239, "k2": 239, "coll": 239, "paragraph": 239, "nonzero": 239, "mislead": 239, "idiomat": 239, "problemat": 239, "toler": 239, "laps": 239, "congruent": 239, "unrel": [239, 246], "supersed": [240, 243], "internation": [240, 243], "nline": [240, 243], "suffer": [240, 243], "chore": [240, 243], "allevi": [240, 243], "nfoo": 240, "nbar": 240, "0008": 240, "oct": 241, "2018": 241, "0010": 241, "nontermin": 241, "inconveni": 241, "edison": 242, "nano": 242, "1000000000": 242, "1_000_000_000": 242, "0b3c60e279c21b137c05051153738bc4034072e4": 242, "defici": 243, "unescap": 243, "lf": 243, "cr": 243, "crlf": 243, "tripl": 243, "9a": 243, "fa": 243, "0012": [243, 254], "0004": 246, "fsync": 246, "loosen": 246, "rpath": 246, "graphviz": 246, "t32": 246, "initd": 246, "t39": 246, "t44": 246, "IF": 246, "t51": 246, "t28": 246, "calli": 246, "t71": 246, "t70": 246, "t74": 246, "t67": 246, "t68": 246, "t85": 246, "t19": 246, "t20": 246, "t21": 246, "dlopen": 246, "overflown": 246, "fdmake_opt": 246, "amd64": 247, "100m": 247, "open_dylan_platform_nam": [247, 248], "multiarch": 248, "target_nam": 248, "md5": 248, "sha": [248, 249], "sha256": 248, "sha384": 248, "sha512": 248, "16k": 248, "loopback": 248, "ongo": 248, "gethostnam": 248, "gethostbynam": 248, "getpid": 248, "getppid": 248, "getcurrentprocessid": 248, "relatedli": 248, "surefir": 248, "jenkin": 248, "bash_complet": 249, "symlink": [249, 253], "broke": [249, 250, 251], "instrument": 249, "nodeid": 249, "250mb": 249, "screencast": 249, "ssize": 249, "mepargs_": 249, "0xbfffd4c0": 249, "0x00000009": 249, "0x02861eb0": 249, "e_": 249, "0x0018a288": 249, "parent_": 249, "0x005cc384": 249, "0x00000000": 249, "forthcom": 249, "objc_msgsend_stret": 249, "_stret": 249, "objc_msgsendsup": 249, "o2": 250, "nan": 250, "3d3": 250, "speedup": 250, "primitive_sleep": 250, "open_dylan_lldb": 250, "1064": 250, "1197": 250, "899": 250, "0011": 250, "subnorm": 250, "tighten": 250, "omiss": 250, "time_t": 250, "37": 250, "utc": 250, "setlasterror": 250, "dwerrorcod": 250, "intermitt": 250, "hull": [250, 251, 252], "fernando": [250, 251, 252, 253, 254], "raya": [250, 251, 252, 253, 254], "alfredo": [250, 251], "beaumont": [250, 251], "wim": 250, "vander": 250, "schelden": 250, "kamil": 250, "rytarowski": 250, "ingo": 250, "albrecht": 250, "dan": 250, "midwood": 250, "supported_compiler_back_end": 251, "memcpi": 251, "c99": 251, "longstand": 251, "etag": 251, "elisp": 251, "1254": 251, "x87": 251, "fpu": 251, "catalina": 251, "iop": 251, "requesting_princip": 251, "octet": 251, "locaterepli": 251, "gdk_solid": 251, "gdk": 251, "pixbuf": 251, "gettext": 251, "fdmake": 251, "pl": 251, "bsd": 251, "libmi": 251, "character": 251, "promin": 251, "bench": 251, "tim": 251, "mcnamara": 251, "sbin": 252, "1455": 252, "1386": 252, "1054": 252, "1372": 252, "subtest1": 252, "subtest2": 252, "phongphan": 252, "pierr": 252, "kryptin": 252, "bitcod": 253, "1490": 253, "xdg": 253, "subcommand": 253, "februari": 254, "v0": 254, "lsp": 255, "hover": 255, "2022": 256, "disagr": 257, "bolt": 257, "disagre": 257, "chase": 257, "unqualifi": 257, "overkil": 257, "prolog": 257, "dont": 257, "nearbi": 257, "contort": 257, "judgement": 257, "abigmobynamewithabiginiti": 257, "123456789": 257, "joinseg": 257, "run_job": 257, "scari": 257, "noun": 257, "wrinkl": 257, "frobnoid": 257, "sparingli": 257, "distant": 257, "yukyukyukyukyukyukyuk": 257, "blahblahblahblahblah": 257, "tolosetrack": 257, "bigfish": 257, "smallpond": 257, "supercalifragilisticexpealidoci": 257, "wasthatashovelful": 257, "ofraisensorsyrup": 257, "superfragilisticespealidosci": 257, "somereallylongexpressionthatdoesnotfitabov": 257, "lilgirlscryalldatim": 257, "bigboysdontcri": 257, "someexpressionthatclearlydoesnotfitabov": 257, "funki": 257, "longfunkiefunctionnamesuperfraligist": 257, "areallylongidthatrequireswrappingthearg": 257, "xxxxx": 257, "yyyyi": 257, "grovel": 257, "supercalifragilisticexbealidoci": 257, "_collector": 257, "elementincollectionnumberon": 257, "collection1": 257, "elementincollectionnumbertwo": 257, "collection2": 257, "utterli": 257, "stripchar": 257, "mung": 257, "poetri": 257, "impair": 257}, "objects": {"": [[77, 0, 1, "c.dylan_boolean_p", "dylan_boolean_p"], [77, 0, 1, "c.dylan_class_debug_name", "dylan_class_debug_name"], [77, 0, 1, "c.dylan_class_p", "dylan_class_p"], [77, 0, 1, "c.dylan_double_float_data", "dylan_double_float_data"], [77, 0, 1, "c.dylan_double_float_p", "dylan_double_float_p"], [77, 0, 1, "c.dylan_empty_list_p", "dylan_empty_list_p"], [77, 0, 1, "c.dylan_float_p", "dylan_float_p"], [77, 0, 1, "c.dylan_function_debug_name", "dylan_function_debug_name"], [77, 0, 1, "c.dylan_function_p", "dylan_function_p"], [77, 0, 1, "c.dylan_head", "dylan_head"], [77, 0, 1, "c.dylan_object_class", "dylan_object_class"], [77, 0, 1, "c.dylan_pair_p", "dylan_pair_p"], [77, 0, 1, "c.dylan_print_object", "dylan_print_object"], [77, 0, 1, "c.dylan_simple_condition_format_args", "dylan_simple_condition_format_args"], [77, 0, 1, "c.dylan_simple_condition_format_string", "dylan_simple_condition_format_string"], [77, 0, 1, "c.dylan_simple_condition_p", "dylan_simple_condition_p"], [77, 0, 1, "c.dylan_single_float_data", "dylan_single_float_data"], [77, 0, 1, "c.dylan_single_float_p", "dylan_single_float_p"], [77, 0, 1, "c.dylan_string_data", "dylan_string_data"], [77, 0, 1, "c.dylan_string_p", "dylan_string_p"], [77, 0, 1, "c.dylan_symbol_name", "dylan_symbol_name"], [77, 0, 1, "c.dylan_symbol_p", "dylan_symbol_p"], [77, 0, 1, "c.dylan_tail", "dylan_tail"], [77, 0, 1, "c.dylan_true_p", "dylan_true_p"], [77, 0, 1, "c.dylan_vector_p", "dylan_vector_p"], [176, 0, 1, "c.gf_optional_xep", "gf_optional_xep"], [176, 0, 1, "c.gf_xep", "gf_xep"], [176, 0, 1, "c.gf_xep_0", "gf_xep_0"], [176, 0, 1, "c.gf_xep_1", "gf_xep_1"], [176, 0, 1, "c.gf_xep_2", "gf_xep_2"], [176, 0, 1, "c.gf_xep_3", "gf_xep_3"], [176, 0, 1, "c.gf_xep_4", "gf_xep_4"], [176, 0, 1, "c.gf_xep_5", "gf_xep_5"], [176, 0, 1, "c.gf_xep_6", "gf_xep_6"], [176, 0, 1, "c.gf_xep_7", "gf_xep_7"], [176, 0, 1, "c.gf_xep_8", "gf_xep_8"], [176, 0, 1, "c.gf_xep_9", "gf_xep_9"], [176, 0, 1, "c.optional_xep", "optional_xep"], [176, 0, 1, "c.primitive_allocate", "primitive_allocate"], [176, 0, 1, "c.primitive_allocate_vector", "primitive_allocate_vector"], [176, 0, 1, "c.primitive_basic_iep_apply", "primitive_basic_iep_apply"], [176, 0, 1, "c.primitive_byte_allocate", "primitive_byte_allocate"], [176, 0, 1, "c.primitive_continue_unwind", "primitive_continue_unwind"], [176, 0, 1, "c.primitive_copy_vector", "primitive_copy_vector"], [176, 0, 1, "c.primitive_fill_E_", "primitive_fill_E_"], [176, 0, 1, "c.primitive_iep_apply", "primitive_iep_apply"], [176, 0, 1, "c.primitive_initialize_vector_from_buffer", "primitive_initialize_vector_from_buffer"], [176, 0, 1, "c.primitive_inlined_nlx", "primitive_inlined_nlx"], [176, 0, 1, "c.primitive_make_box", "primitive_make_box"], [176, 0, 1, "c.primitive_make_environment", "primitive_make_environment"], [176, 0, 1, "c.primitive_make_string", "primitive_make_string"], [176, 0, 1, "c.primitive_nlx", "primitive_nlx"], [176, 0, 1, "c.primitive_replace_E_", "primitive_replace_E_"], [176, 0, 1, "c.primitive_replace_vector_E_", "primitive_replace_vector_E_"], [176, 0, 1, "c.primitive_xep_apply", "primitive_xep_apply"], [176, 0, 1, "c.xep", "xep"], [176, 0, 1, "c.xep_0", "xep_0"], [176, 0, 1, "c.xep_1", "xep_1"], [176, 0, 1, "c.xep_2", "xep_2"], [176, 0, 1, "c.xep_3", "xep_3"], [176, 0, 1, "c.xep_4", "xep_4"], [176, 0, 1, "c.xep_5", "xep_5"], [176, 0, 1, "c.xep_6", "xep_6"], [176, 0, 1, "c.xep_7", "xep_7"], [176, 0, 1, "c.xep_8", "xep_8"], [176, 0, 1, "c.xep_9", "xep_9"], [118, 2, 0, "access-path:access-path:$access-ok", "$access-ok"], [118, 2, 0, "access-path:access-path:$access-violation-on-execute", "$access-violation-on-execute"], [118, 2, 0, "access-path:access-path:$access-violation-on-read", "$access-violation-on-read"], [118, 2, 0, "access-path:access-path:$access-violation-on-write", "$access-violation-on-write"], [118, 2, 0, "access-path:access-path:$access-violation-undecidable", "$access-violation-undecidable"], [74, 2, 0, "duim-sheets:duim-sheets:$alt-key", "$alt-key"], [206, 2, 0, "system:operating-system:$architecture-little-endian?", "$architecture-little-endian?"], [66, 2, 0, "duim-dcs:duim-dcs:$background", "$background"], [66, 2, 0, "duim-dcs:duim-dcs:$black", "$black"], [66, 2, 0, "duim-dcs:duim-dcs:$blue", "$blue"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-1", "$boole-1"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-2", "$boole-2"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-and", "$boole-and"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-andc1", "$boole-andc1"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-andc2", "$boole-andc2"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-c1", "$boole-c1"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-c2", "$boole-c2"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-clr", "$boole-clr"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-eqv", "$boole-eqv"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-ior", "$boole-ior"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-nand", "$boole-nand"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-nor", "$boole-nor"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-orc1", "$boole-orc1"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-orc2", "$boole-orc2"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-set", "$boole-set"], [66, 2, 0, "duim-dcs:duim-dcs:$boole-xor", "$boole-xor"], [66, 2, 0, "duim-dcs:duim-dcs:$bricks-stipple", "$bricks-stipple"], [162, 2, 0, "coloring-stream:coloring-stream:$bright-intensity", "$bright-intensity"], [162, 2, 0, "coloring-stream:coloring-stream:$color-black", "$color-black"], [162, 2, 0, "coloring-stream:coloring-stream:$color-blue", "$color-blue"], [162, 2, 0, "coloring-stream:coloring-stream:$color-cyan", "$color-cyan"], [162, 2, 0, "coloring-stream:coloring-stream:$color-default", "$color-default"], [162, 2, 0, "coloring-stream:coloring-stream:$color-green", "$color-green"], [162, 2, 0, "coloring-stream:coloring-stream:$color-magenta", "$color-magenta"], [162, 2, 0, "coloring-stream:coloring-stream:$color-red", "$color-red"], [162, 2, 0, "coloring-stream:coloring-stream:$color-white", "$color-white"], [162, 2, 0, "coloring-stream:coloring-stream:$color-yellow", "$color-yellow"], [74, 2, 0, "duim-sheets:duim-sheets:$control-key", "$control-key"], [66, 2, 0, "duim-dcs:duim-dcs:$cross-hatch", "$cross-hatch"], [66, 2, 0, "duim-dcs:duim-dcs:$cyan", "$cyan"], [66, 2, 0, "duim-dcs:duim-dcs:$dash-dot-dot-pen", "$dash-dot-dot-pen"], [66, 2, 0, "duim-dcs:duim-dcs:$dash-dot-pen", "$dash-dot-pen"], [66, 2, 0, "duim-dcs:duim-dcs:$dashed-pen", "$dashed-pen"], [201, 2, 0, "sql:sql:$default-coercion", "$default-coercion"], [201, 2, 0, "sql:sql:$default-result-set-policy", "$default-result-set-policy"], [201, 2, 0, "sql:sql:$diagnostic-table", "$diagnostic-table"], [66, 2, 0, "duim-dcs:duim-dcs:$diagonal-hatch-down", "$diagonal-hatch-down"], [66, 2, 0, "duim-dcs:duim-dcs:$diagonal-hatch-up", "$diagonal-hatch-up"], [162, 2, 0, "coloring-stream:coloring-stream:$dim-intensity", "$dim-intensity"], [66, 2, 0, "duim-dcs:duim-dcs:$dotted-pen", "$dotted-pen"], [171, 2, 0, "common-dylan:transcendentals:$double-e", "$double-e"], [171, 2, 0, "common-dylan:transcendentals:$double-pi", "$double-pi"], [70, 2, 0, "duim-geometry:duim-geometry:$everywhere", "$everywhere"], [73, 2, 0, "duim-layouts:duim-layouts:$fill", "$fill"], [118, 2, 0, "access-path:access-path:$flowcalldirect", "$flowcalldirect"], [118, 2, 0, "access-path:access-path:$flowcallindirect", "$flowcallindirect"], [118, 2, 0, "access-path:access-path:$flowillegal", "$flowillegal"], [118, 2, 0, "access-path:access-path:$flowinterrupt", "$flowinterrupt"], [118, 2, 0, "access-path:access-path:$flowjumpdirect", "$flowjumpdirect"], [118, 2, 0, "access-path:access-path:$flowjumpindirect", "$flowjumpindirect"], [118, 2, 0, "access-path:access-path:$flowlinear", "$flowlinear"], [118, 2, 0, "access-path:access-path:$flowreturn", "$flowreturn"], [66, 2, 0, "duim-dcs:duim-dcs:$foreground", "$foreground"], [66, 2, 0, "duim-dcs:duim-dcs:$green", "$green"], [66, 2, 0, "duim-dcs:duim-dcs:$hearts-stipple", "$hearts-stipple"], [66, 2, 0, "duim-dcs:duim-dcs:$horizontal-hatch", "$horizontal-hatch"], [74, 2, 0, "duim-sheets:duim-sheets:$hyper-key", "$hyper-key"], [70, 2, 0, "duim-geometry:duim-geometry:$identity-transform", "$identity-transform"], [70, 2, 0, "duim-geometry:duim-geometry:$largest-coordinate", "$largest-coordinate"], [74, 2, 0, "duim-sheets:duim-sheets:$left-button", "$left-button"], [133, 2, 0, "ppml:ppml:$line-break", "$line-break"], [118, 2, 0, "access-path:access-path:$local-hostname", "$local-hostname"], [206, 2, 0, "system:operating-system:$machine-architecture", "$machine-architecture"], [206, 2, 0, "system:operating-system:$machine-name", "$machine-name"], [166, 2, 0, "common-dylan:machine-words:$machine-word-size", "$machine-word-size"], [66, 2, 0, "duim-dcs:duim-dcs:$magenta", "$magenta"], [118, 2, 0, "access-path:access-path:$max-spy-function-arguments", "$max-spy-function-arguments"], [118, 2, 0, "access-path:access-path:$max-stepping-locations", "$max-stepping-locations"], [166, 2, 0, "common-dylan:machine-words:$maximum-signed-machine-word", "$maximum-signed-machine-word"], [166, 2, 0, "common-dylan:machine-words:$maximum-unsigned-machine-word", "$maximum-unsigned-machine-word"], [74, 2, 0, "duim-sheets:duim-sheets:$meta-key", "$meta-key"], [74, 2, 0, "duim-sheets:duim-sheets:$middle-button", "$middle-button"], [166, 2, 0, "common-dylan:machine-words:$minimum-signed-machine-word", "$minimum-signed-machine-word"], [166, 2, 0, "common-dylan:machine-words:$minimum-unsigned-machine-word", "$minimum-unsigned-machine-word"], [74, 2, 0, "duim-sheets:duim-sheets:$modifier-keys", "$modifier-keys"], [201, 2, 0, "sql:sql:$no-coercion", "$no-coercion"], [201, 2, 0, "sql:sql:$no-indicator", "$no-indicator"], [162, 2, 0, "coloring-stream:coloring-stream:$normal-intensity", "$normal-intensity"], [70, 2, 0, "duim-geometry:duim-geometry:$nowhere", "$nowhere"], [201, 2, 0, "sql:sql:$null-value", "$null-value"], [74, 2, 0, "duim-sheets:duim-sheets:$option-key", "$option-key"], [206, 2, 0, "system:operating-system:$os-name", "$os-name"], [206, 2, 0, "system:operating-system:$os-variant", "$os-variant"], [206, 2, 0, "system:operating-system:$os-version", "$os-version"], [66, 2, 0, "duim-dcs:duim-dcs:$parquet-stipple", "$parquet-stipple"], [206, 2, 0, "system:operating-system:$platform-name", "$platform-name"], [74, 2, 0, "duim-sheets:duim-sheets:$pointer-buttons", "$pointer-buttons"], [201, 2, 0, "sql:sql:$read-committed", "$read-committed"], [201, 2, 0, "sql:sql:$read-only", "$read-only"], [201, 2, 0, "sql:sql:$read-uncommitted", "$read-uncommitted"], [201, 2, 0, "sql:sql:$read-write", "$read-write"], [106, 2, 0, "dfmc-conditions:dfmc-conditions:$record-program-note", "$record-program-note"], [66, 2, 0, "duim-dcs:duim-dcs:$red", "$red"], [201, 2, 0, "sql:sql:$repeatable-read", "$repeatable-read"], [162, 2, 0, "coloring-stream:coloring-stream:$reset-attributes", "$reset-attributes"], [74, 2, 0, "duim-sheets:duim-sheets:$right-button", "$right-button"], [201, 2, 0, "sql:sql:$scrollable-result-set-policy", "$scrollable-result-set-policy"], [201, 2, 0, "sql:sql:$serializable", "$serializable"], [74, 2, 0, "duim-sheets:duim-sheets:$shift-key", "$shift-key"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:$signal-program-error", "$signal-program-error"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:$signal-program-note", "$signal-program-note"], [171, 2, 0, "common-dylan:transcendentals:$single-e", "$single-e"], [171, 2, 0, "common-dylan:transcendentals:$single-pi", "$single-pi"], [70, 2, 0, "duim-geometry:duim-geometry:$smallest-coordinate", "$smallest-coordinate"], [66, 2, 0, "duim-dcs:duim-dcs:$solid-pen", "$solid-pen"], [118, 2, 0, "access-path:access-path:$step-operation-step-into", "$step-operation-step-into"], [118, 2, 0, "access-path:access-path:$step-operation-step-out", "$step-operation-step-out"], [118, 2, 0, "access-path:access-path:$step-operation-step-over", "$step-operation-step-over"], [74, 2, 0, "duim-sheets:duim-sheets:$super-key", "$super-key"], [118, 2, 0, "access-path:access-path:$symbol-language-basic", "$symbol-language-basic"], [118, 2, 0, "access-path:access-path:$symbol-language-c", "$symbol-language-c"], [118, 2, 0, "access-path:access-path:$symbol-language-c++", "$symbol-language-c++"], [118, 2, 0, "access-path:access-path:$symbol-language-cobol", "$symbol-language-cobol"], [118, 2, 0, "access-path:access-path:$symbol-language-dylan", "$symbol-language-dylan"], [118, 2, 0, "access-path:access-path:$symbol-language-fortran", "$symbol-language-fortran"], [118, 2, 0, "access-path:access-path:$symbol-language-masm", "$symbol-language-masm"], [118, 2, 0, "access-path:access-path:$symbol-language-pascal", "$symbol-language-pascal"], [66, 2, 0, "duim-dcs:duim-dcs:$tiles-stipple", "$tiles-stipple"], [164, 2, 0, "common-dylan:common-extensions:$unfound", "$unfound"], [164, 2, 0, "common-dylan:common-extensions:$unsupplied", "$unsupplied"], [66, 2, 0, "duim-dcs:duim-dcs:$vertical-hatch", "$vertical-hatch"], [66, 2, 0, "duim-dcs:duim-dcs:$white", "$white"], [66, 2, 0, "duim-dcs:duim-dcs:$xor-brush", "$xor-brush"], [66, 2, 0, "duim-dcs:duim-dcs:$yellow", "$yellow"], [166, 3, 0, "common-dylan:machine-words:%+", "%+"], [166, 3, 0, "common-dylan:machine-words:%-", "%-"], [166, 3, 0, "common-dylan:machine-words:%\\*", "%\\*"], [166, 3, 0, "common-dylan:machine-words:%abs", "%abs"], [166, 3, 0, "common-dylan:machine-words:%ceiling/", "%ceiling/"], [166, 3, 0, "common-dylan:machine-words:%count-high-zeros", "%count-high-zeros"], [166, 3, 0, "common-dylan:machine-words:%count-low-zeros", "%count-low-zeros"], [166, 3, 0, "common-dylan:machine-words:%count-ones", "%count-ones"], [166, 3, 0, "common-dylan:machine-words:%divide", "%divide"], [166, 3, 0, "common-dylan:machine-words:%floor/", "%floor/"], [166, 3, 0, "common-dylan:machine-words:%logand", "%logand"], [166, 3, 0, "common-dylan:machine-words:%logbit?", "%logbit?"], [166, 3, 0, "common-dylan:machine-words:%logior", "%logior"], [166, 3, 0, "common-dylan:machine-words:%lognot", "%lognot"], [166, 3, 0, "common-dylan:machine-words:%logxor", "%logxor"], [166, 3, 0, "common-dylan:machine-words:%negative", "%negative"], [166, 3, 0, "common-dylan:machine-words:%round/", "%round/"], [166, 3, 0, "common-dylan:machine-words:%shift-left", "%shift-left"], [166, 3, 0, "common-dylan:machine-words:%shift-right", "%shift-right"], [166, 3, 0, "common-dylan:machine-words:%truncate/", "%truncate/"], [192, 3, 0, "dylan:dylan:*", "*"], [192, 4, 0, "dylan:dylan:*([complex],[complex])", "*(<complex>, <complex>)"], [202, 4, 0, "system:date:*([duration])", "*(<duration>)"], [192, 4, 0, "dylan:dylan:*([integer],[integer])", "*(<integer>, <integer>)"], [192, 4, 0, "dylan:dylan:*([machine-number],[machine-number])", "*(<machine-number>, <machine-number>)"], [201, 2, 0, "sql:sql:*all-connections*", "*all-connections*"], [201, 2, 0, "sql:sql:*all-connections-lock*", "*all-connections-lock*"], [182, 5, 0, "io:pprint:*default-line-length*", "*default-line-length*"], [106, 5, 0, "dfmc-conditions:dfmc-conditions:*detail-level*", "*detail-level*"], [106, 5, 0, "dfmc-conditions:dfmc-conditions:*error-recovery-model*", "*error-recovery-model*"], [68, 5, 0, "duim:duim-frames:*global-command-table*", "*global-command-table*"], [118, 5, 0, "access-path:access-path:*open-debugger-connections*", "*open-debugger-connections*"], [182, 5, 0, "io:print:*print-circle?*", "*print-circle?*"], [182, 5, 0, "io:print:*print-escape?*", "*print-escape?*"], [182, 5, 0, "io:print:*print-length*", "*print-length*"], [182, 5, 0, "io:print:*print-level*", "*print-level*"], [182, 5, 0, "io:pprint:*print-miser-width*", "*print-miser-width*"], [182, 5, 0, "io:print:*print-pretty?*", "*print-pretty?*"], [68, 5, 0, "duim:duim-frames:*progress-note*", "*progress-note*"], [183, 5, 0, "io:standard-io:*standard-error*", "*standard-error*"], [183, 5, 0, "io:standard-io:*standard-input*", "*standard-input*"], [183, 5, 0, "io:standard-io:*standard-output*", "*standard-output*"], [106, 5, 0, "dfmc-conditions:dfmc-conditions:*subnotes-queue*", "*subnotes-queue*"], [68, 5, 0, "duim:duim-frames:*user-command-table*", "*user-command-table*"], [192, 3, 0, "dylan:dylan:+", "+"], [192, 4, 0, "dylan:dylan:+([complex],[complex])", "+(<complex>, <complex>)"], [202, 4, 0, "system:date:+([date])", "+(<date>)"], [202, 4, 0, "system:date:+([duration])", "+(<duration>)"], [192, 4, 0, "dylan:dylan:+([integer],[complex])", "+(<integer>, <complex>)"], [192, 4, 0, "dylan:dylan:+([machine-number],[machine-number])", "+(<machine-number>, <machine-number>)"], [192, 3, 0, "dylan:dylan:-", "-"], [192, 4, 0, "dylan:dylan:-([complex],[complex])", "-(<complex>, <complex>)"], [202, 4, 0, "system:date:-([date])", "-(<date>)"], [202, 4, 0, "system:date:-([duration])", "-(<duration>)"], [192, 4, 0, "dylan:dylan:-([integer],[integer])", "-(<integer>, <integer>)"], [192, 4, 0, "dylan:dylan:-([machine-number],[machine-number])", "-(<machine-number>, <machine-number>)"], [192, 3, 0, "dylan:dylan:/", "/"], [192, 4, 0, "dylan:dylan:/([complex],[complex])", "/(<complex>, <complex>)"], [202, 4, 0, "system:date:/([duration])", "/(<duration>)"], [192, 4, 0, "dylan:dylan:/([float],[float])", "/(<float>, <float>)"], [166, 3, 0, "common-dylan:machine-words:[", "<"], [192, 3, 0, "dylan:dylan:[", "<"], [154, 4, 0, "c-ffi:c-ffi:[([c-pointer])", "<(<C-pointer>)"], [192, 4, 0, "dylan:dylan:[([complex])", "<(<complex>)"], [202, 4, 0, "system:date:[([date])", "<(<date>)"], [202, 4, 0, "system:date:[([duration])", "<(<duration>)"], [192, 4, 0, "dylan:dylan:[([machine-number])", "<(<machine-number>)"], [154, 6, 0, "c-ffi:c-ffi:[c-dylan-object]", "<C-Dylan-object>"], [154, 6, 0, "c-ffi:c-ffi:[c-boolean]", "<C-boolean>"], [154, 6, 0, "c-ffi:c-ffi:[c-character]", "<C-character>"], [154, 6, 0, "c-ffi:c-ffi:[c-double]", "<C-double>"], [154, 6, 0, "c-ffi:c-ffi:[c-float]", "<C-float>"], [154, 6, 0, "c-ffi:c-ffi:[c-function-pointer]", "<C-function-pointer>"], [154, 6, 0, "c-ffi:c-ffi:[c-number]", "<C-number>"], [154, 6, 0, "c-ffi:c-ffi:[c-pointer]", "<C-pointer>"], [154, 6, 0, "c-ffi:c-ffi:[c-statically-typed-pointer]", "<C-statically-typed-pointer>"], [154, 6, 0, "c-ffi:c-ffi:[c-string]", "<C-string>"], [154, 6, 0, "c-ffi:c-ffi:[c-struct]", "<C-struct>"], [154, 6, 0, "c-ffi:c-ffi:[c-union]", "<C-union>"], [154, 6, 0, "c-ffi:c-ffi:[c-value]", "<C-value>"], [154, 6, 0, "c-ffi:c-ffi:[c-void]", "<C-void>"], [154, 6, 0, "c-ffi:c-ffi:[c-void\\*]", "<C-void\\*>"], [199, 6, 0, "network:sockets:[abstract-socket]", "<abstract-socket>"], [118, 6, 0, "access-path:access-path:[access-connection]", "<access-connection>"], [118, 6, 0, "access-path:access-path:[access-path-creation-error]", "<access-path-creation-error>"], [118, 6, 0, "access-path:access-path:[access-path]", "<access-path>"], [118, 6, 0, "access-path:access-path:[access-violation-stop-reason]", "<access-violation-stop-reason>"], [69, 6, 0, "duim:duim-gadgets:[action-gadget]", "<action-gadget>"], [118, 6, 0, "access-path:access-path:[active-remote-register]", "<active-remote-register>"], [199, 6, 0, "network:sockets:[address-in-use]", "<address-in-use>"], [201, 6, 0, "sql:sql:[ambiguous-cursor-name]", "<ambiguous-cursor-name>"], [118, 6, 0, "access-path:access-path:[application-access-path]", "<application-access-path>"], [68, 6, 0, "duim:duim-frames:[application-exited-event]", "<application-exited-event>"], [119, 6, 0, "debugger-manager:debugger-manager:[application-profile]", "<application-profile>"], [119, 6, 0, "debugger-manager:debugger-manager:[application-snapshot]", "<application-snapshot>"], [119, 6, 0, "debugger-manager:debugger-manager:[application-stack-frame]", "<application-stack-frame>"], [70, 6, 0, "duim-geometry:duim-geometry:[area]", "<area>"], [118, 6, 0, "access-path:access-path:[arithmetic-exception-stop-reason]", "<arithmetic-exception-stop-reason>"], [118, 6, 0, "access-path:access-path:[array-bounds-exception-stop-reason]", "<array-bounds-exception-stop-reason>"], [201, 6, 0, "sql:sql:[assertion-constraint]", "<assertion-constraint>"], [118, 6, 0, "access-path:access-path:[basic-stop-reason]", "<basic-stop-reason>"], [73, 6, 0, "duim-layouts:duim-layouts:[basic-user-pane]", "<basic-user-pane>"], [119, 6, 0, "debugger-manager:debugger-manager:[bind-exit-frame]", "<bind-exit-frame>"], [155, 6, 0, "collections:bit-set:[bit-set]", "<bit-set>"], [156, 6, 0, "collections:bit-vector:[bit-vector]", "<bit-vector>"], [156, 7, 0, "collections:bit-vector:[bit]", "<bit>"], [199, 6, 0, "network:sockets:[blocking-call-interrupted]", "<blocking-call-interrupted>"], [69, 6, 0, "duim:duim-gadgets:[border]", "<border>"], [70, 6, 0, "duim-geometry:duim-geometry:[bounding-box]", "<bounding-box>"], [118, 6, 0, "access-path:access-path:[breakpoint-stop-reason]", "<breakpoint-stop-reason>"], [119, 6, 0, "debugger-manager:debugger-manager:[breakpoint]", "<breakpoint>"], [66, 6, 0, "duim-dcs:duim-dcs:[brush]", "<brush>"], [184, 6, 0, "io:streams:[buffer]", "<buffer>"], [199, 6, 0, "network:sockets:[buffered-socket]", "<buffered-socket>"], [184, 6, 0, "io:streams:[buffered-stream]", "<buffered-stream>"], [69, 6, 0, "duim:duim-gadgets:[button-box]", "<button-box>"], [74, 6, 0, "duim-sheets:duim-sheets:[button-press-event]", "<button-press-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[button-release-event]", "<button-release-event>"], [69, 6, 0, "duim:duim-gadgets:[button]", "<button>"], [164, 6, 0, "common-dylan:common-extensions:[byte-character]", "<byte-character>"], [184, 7, 0, "io:streams:[byte-character]", "<byte-character>"], [184, 6, 0, "io:streams:[byte-string-stream]", "<byte-string-stream>"], [184, 6, 0, "io:streams:[byte-vector]", "<byte-vector>"], [163, 7, 0, "common-dylan:byte-vector:[byte-vector]", "<byte-vector>"], [163, 7, 0, "common-dylan:byte-vector:[byte]", "<byte>"], [184, 7, 0, "io:streams:[byte]", "<byte>"], [119, 6, 0, "debugger-manager:debugger-manager:[c-spy-function-descriptor]", "<c-spy-function-descriptor>"], [119, 6, 0, "debugger-manager:debugger-manager:[call-frame]", "<call-frame>"], [201, 6, 0, "sql:sql:[cardinality-violation]", "<cardinality-violation>"], [74, 6, 0, "duim-sheets:duim-sheets:[caret]", "<caret>"], [161, 6, 0, "collections:table-extensions:[case-insensitive-string-table]", "<case-insensitive-string-table>"], [201, 6, 0, "sql:sql:[catalog-not-found]", "<catalog-not-found>"], [201, 6, 0, "sql:sql:[catalog]", "<catalog>"], [205, 6, 0, "system:locators:[cgi-url]", "<cgi-url>"], [201, 6, 0, "sql:sql:[character-not-in-repertoire]", "<character-not-in-repertoire>"], [69, 6, 0, "duim:duim-gadgets:[check-box]", "<check-box>"], [69, 6, 0, "duim:duim-gadgets:[check-button]", "<check-button>"], [201, 6, 0, "sql:sql:[check-constraint]", "<check-constraint>"], [69, 6, 0, "duim:duim-gadgets:[check-menu-box]", "<check-menu-box>"], [69, 6, 0, "duim:duim-gadgets:[check-menu-button]", "<check-menu-button>"], [119, 6, 0, "debugger-manager:debugger-manager:[class-breakpoint-stop-reason]", "<class-breakpoint-stop-reason>"], [74, 6, 0, "duim-sheets:duim-sheets:[clipboard]", "<clipboard>"], [201, 2, 0, "sql:sql:[coercion-policy]", "<coercion-policy>"], [201, 6, 0, "sql:sql:[coercion-record]", "<coercion-record>"], [69, 6, 0, "duim:duim-gadgets:[collection-gadget]", "<collection-gadget>"], [66, 6, 0, "duim-dcs:duim-dcs:[color-not-found]", "<color-not-found>"], [66, 6, 0, "duim-dcs:duim-dcs:[color]", "<color>"], [162, 6, 0, "coloring-stream:coloring-stream:[coloring-stream]", "<coloring-stream>"], [73, 6, 0, "duim-layouts:duim-layouts:[column-layout]", "<column-layout>"], [201, 6, 0, "sql:sql:[column]", "<column>"], [69, 6, 0, "duim:duim-gadgets:[combo-box]", "<combo-box>"], [68, 6, 0, "duim:duim-frames:[command-table-menu-item]", "<command-table-menu-item>"], [68, 6, 0, "duim:duim-frames:[command-table]", "<command-table>"], [68, 6, 0, "duim:duim-frames:[command]", "<command>"], [199, 6, 0, "network:sockets:[connection-closed]", "<connection-closed>"], [201, 6, 0, "sql:sql:[connection-does-not-exist]", "<connection-does-not-exist>"], [201, 6, 0, "sql:sql:[connection-exception]", "<connection-exception>"], [199, 6, 0, "network:sockets:[connection-failed]", "<connection-failed>"], [201, 6, 0, "sql:sql:[connection-failure]", "<connection-failure>"], [201, 6, 0, "sql:sql:[connection-name-in-use]", "<connection-name-in-use>"], [201, 6, 0, "sql:sql:[connection-not-specified]", "<connection-not-specified>"], [201, 6, 0, "sql:sql:[connection]", "<connection>"], [201, 6, 0, "sql:sql:[constraint]", "<constraint>"], [203, 7, 0, "system:file-system:[copy/rename-disposition]", "<copy/rename-disposition>"], [168, 7, 0, "common-dylan:simple-profiling:[cpu-profiling-type]", "<cpu-profiling-type>"], [118, 6, 0, "access-path:access-path:[create-process-stop-reason]", "<create-process-stop-reason>"], [118, 6, 0, "access-path:access-path:[create-thread-stop-reason]", "<create-thread-stop-reason>"], [201, 6, 0, "sql:sql:[cursor-operation-conflict]", "<cursor-operation-conflict>"], [201, 6, 0, "sql:sql:[cursor-specification-cannot-be-executed]", "<cursor-specification-cannot-be-executed>"], [74, 6, 0, "duim-sheets:duim-sheets:[cursor]", "<cursor>"], [201, 6, 0, "sql:sql:[data-exception]", "<data-exception>"], [201, 6, 0, "sql:sql:[data-not-available]", "<data-not-available>"], [201, 6, 0, "sql:sql:[database-collection]", "<database-collection>"], [201, 6, 0, "sql:sql:[database-error]", "<database-error>"], [201, 6, 0, "sql:sql:[database-object-not-found]", "<database-object-not-found>"], [201, 6, 0, "sql:sql:[database-object]", "<database-object>"], [201, 6, 0, "sql:sql:[database-statement]", "<database-statement>"], [201, 6, 0, "sql:sql:[database]", "<database>"], [202, 6, 0, "system:date:[date]", "<date>"], [201, 6, 0, "sql:sql:[datetime-field-overflow]", "<datetime-field-overflow>"], [202, 6, 0, "system:date:[day-of-week]", "<day-of-week>"], [202, 6, 0, "system:date:[day/time-duration]", "<day/time-duration>"], [201, 6, 0, "sql:sql:[dbms-not-specified]", "<dbms-not-specified>"], [201, 6, 0, "sql:sql:[dbms]", "<dbms>"], [119, 6, 0, "debugger-manager:debugger-manager:[debug-point-error]", "<debug-point-error>"], [118, 6, 0, "access-path:access-path:[debug-point-stop-reason]", "<debug-point-stop-reason>"], [119, 6, 0, "debugger-manager:debugger-manager:[debug-point]", "<debug-point>"], [119, 6, 0, "debugger-manager:debugger-manager:[debug-target]", "<debug-target>"], [118, 6, 0, "access-path:access-path:[debugger-connection]", "<debugger-connection>"], [119, 6, 0, "debugger-manager:debugger-manager:[debugger-generated-stop-reason]", "<debugger-generated-stop-reason>"], [119, 6, 0, "debugger-manager:debugger-manager:[debugger-stop-application-stop-reason]", "<debugger-stop-application-stop-reason>"], [118, 6, 0, "access-path:access-path:[denormal-exception-stop-reason]", "<denormal-exception-stop-reason>"], [201, 6, 0, "sql:sql:[dependent-privilege-descriptors-still-exist]", "<dependent-privilege-descriptors-still-exist>"], [106, 7, 0, "dfmc-conditions:dfmc-conditions:[detail-level]", "<detail-level>"], [74, 6, 0, "duim-sheets:duim-sheets:[device-event]", "<device-event>"], [66, 6, 0, "duim-dcs:duim-dcs:[device-font]", "<device-font>"], [201, 6, 0, "sql:sql:[diagnostic-table]", "<diagnostic-table>"], [201, 6, 0, "sql:sql:[diagnostic]", "<diagnostic>"], [68, 6, 0, "duim:duim-frames:[dialog-frame]", "<dialog-frame>"], [205, 6, 0, "system:locators:[directory-locator]", "<directory-locator>"], [205, 6, 0, "system:locators:[directory-url]", "<directory-url>"], [201, 6, 0, "sql:sql:[disconnect-error]", "<disconnect-error>"], [74, 6, 0, "duim-sheets:duim-sheets:[display]", "<display>"], [201, 6, 0, "sql:sql:[division-by-zero]", "<division-by-zero>"], [173, 6, 0, "dood:dood:[dood-corruption-warning]", "<dood-corruption-warning>"], [173, 6, 0, "dood:dood:[dood-lazy-symbol-table]", "<dood-lazy-symbol-table>"], [173, 6, 0, "dood:dood:[dood-opening-warning]", "<dood-opening-warning>"], [173, 6, 0, "dood:dood:[dood-proxy-error]", "<dood-proxy-error>"], [173, 6, 0, "dood:dood:[dood-proxy]", "<dood-proxy>"], [173, 6, 0, "dood:dood:[dood-user-version-warning]", "<dood-user-version-warning>"], [173, 6, 0, "dood:dood:[dood-version-warning]", "<dood-version-warning>"], [173, 6, 0, "dood:dood:[dood]", "<dood>"], [74, 6, 0, "duim-sheets:duim-sheets:[double-click-event]", "<double-click-event>"], [73, 6, 0, "duim-layouts:duim-layouts:[drawing-pane]", "<drawing-pane>"], [202, 6, 0, "system:date:[duration]", "<duration>"], [119, 6, 0, "debugger-manager:debugger-manager:[dylan-call-frame]", "<dylan-call-frame>"], [119, 6, 0, "debugger-manager:debugger-manager:[dylan-debug-message-stop-reason]", "<dylan-debug-message-stop-reason>"], [119, 6, 0, "debugger-manager:debugger-manager:[dylan-invoke-debugger-stop-reason]", "<dylan-invoke-debugger-stop-reason>"], [119, 6, 0, "debugger-manager:debugger-manager:[dylan-name-context]", "<dylan-name-context>"], [119, 6, 0, "debugger-manager:debugger-manager:[dylan-stack-frame-mixin]", "<dylan-stack-frame-mixin>"], [201, 6, 0, "sql:sql:[dynamic-sql-error]", "<dynamic-sql-error>"], [67, 6, 0, "duim-extended-geometry:duim-extended-geometry:[ellipse]", "<ellipse>"], [67, 6, 0, "duim-extended-geometry:duim-extended-geometry:[elliptical-arc]", "<elliptical-arc>"], [201, 6, 0, "sql:sql:[empty-result-set]", "<empty-result-set>"], [184, 6, 0, "io:streams:[end-of-stream-error]", "<end-of-stream-error>"], [119, 6, 0, "debugger-manager:debugger-manager:[entry-tracepoint]", "<entry-tracepoint>"], [201, 6, 0, "sql:sql:[error-in-assignment]", "<error-in-assignment>"], [74, 6, 0, "duim-sheets:duim-sheets:[event]", "<event>"], [118, 6, 0, "access-path:access-path:[exception-stop-reason]", "<exception-stop-reason>"], [177, 6, 0, "dylan:threads:[exclusive-lock]", "<exclusive-lock>"], [118, 6, 0, "access-path:access-path:[exit-process-stop-reason]", "<exit-process-stop-reason>"], [118, 6, 0, "access-path:access-path:[exit-thread-stop-reason]", "<exit-thread-stop-reason>"], [118, 6, 0, "access-path:access-path:[external-stop-reason]", "<external-stop-reason>"], [201, 6, 0, "sql:sql:[feature-not-supported]", "<feature-not-supported>"], [184, 6, 0, "io:streams:[file-does-not-exist-error]", "<file-does-not-exist-error>"], [203, 6, 0, "system:file-system:[file-does-not-exist-error]", "<file-does-not-exist-error>"], [184, 6, 0, "io:streams:[file-error]", "<file-error>"], [203, 6, 0, "system:file-system:[file-error]", "<file-error>"], [184, 6, 0, "io:streams:[file-exists-error]", "<file-exists-error>"], [203, 6, 0, "system:file-system:[file-exists-error]", "<file-exists-error>"], [205, 6, 0, "system:locators:[file-index-url]", "<file-index-url>"], [205, 6, 0, "system:locators:[file-locator]", "<file-locator>"], [205, 6, 0, "system:locators:[file-server]", "<file-server>"], [184, 6, 0, "io:streams:[file-stream]", "<file-stream>"], [203, 6, 0, "system:file-system:[file-system-directory-locator]", "<file-system-directory-locator>"], [203, 6, 0, "system:file-system:[file-system-error]", "<file-system-error>"], [203, 6, 0, "system:file-system:[file-system-file-locator]", "<file-system-file-locator>"], [203, 6, 0, "system:file-system:[file-system-locator]", "<file-system-locator>"], [203, 7, 0, "system:file-system:[file-type]", "<file-type>"], [205, 6, 0, "system:locators:[file-url]", "<file-url>"], [73, 6, 0, "duim-layouts:duim-layouts:[fixed-layout]", "<fixed-layout>"], [118, 6, 0, "access-path:access-path:[float-divide-by-zero-exception-stop-reason]", "<float-divide-by-zero-exception-stop-reason>"], [118, 6, 0, "access-path:access-path:[float-exception-stop-reason]", "<float-exception-stop-reason>"], [118, 6, 0, "access-path:access-path:[float-overflow-exception-stop-reason]", "<float-overflow-exception-stop-reason>"], [118, 6, 0, "access-path:access-path:[float-stack-check-exception-stop-reason]", "<float-stack-check-exception-stop-reason>"], [118, 6, 0, "access-path:access-path:[float-underflow-exception-stop-reason]", "<float-underflow-exception-stop-reason>"], [164, 6, 0, "common-dylan:common-extensions:[format-string-condition]", "<format-string-condition>"], [201, 6, 0, "sql:sql:[forward-only-result-set]", "<forward-only-result-set>"], [68, 6, 0, "duim:duim-frames:[frame-created-event]", "<frame-created-event>"], [68, 6, 0, "duim:duim-frames:[frame-destroyed-event]", "<frame-destroyed-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[frame-event]", "<frame-event>"], [68, 6, 0, "duim:duim-frames:[frame-exit-event]", "<frame-exit-event>"], [68, 6, 0, "duim:duim-frames:[frame-exited-event]", "<frame-exited-event>"], [68, 6, 0, "duim:duim-frames:[frame-focus-event]", "<frame-focus-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[frame-manager]", "<frame-manager>"], [68, 6, 0, "duim:duim-frames:[frame-mapped-event]", "<frame-mapped-event>"], [68, 6, 0, "duim:duim-frames:[frame-unmapped-event]", "<frame-unmapped-event>"], [68, 6, 0, "duim:duim-frames:[frame]", "<frame>"], [205, 6, 0, "system:locators:[ftp-server]", "<ftp-server>"], [118, 6, 0, "access-path:access-path:[function-frame]", "<function-frame>"], [69, 6, 0, "duim:duim-gadgets:[gadget]", "<gadget>"], [74, 6, 0, "duim-sheets:duim-sheets:[gesture]", "<gesture>"], [73, 6, 0, "duim-layouts:duim-layouts:[grid-layout]", "<grid-layout>"], [69, 6, 0, "duim:duim-gadgets:[group-box]", "<group-box>"], [161, 6, 0, "collections:table-extensions:[hash-state]", "<hash-state>"], [199, 6, 0, "network:sockets:[host-not-found]", "<host-not-found>"], [199, 6, 0, "network:sockets:[host-unreachable]", "<host-unreachable>"], [205, 6, 0, "system:locators:[http-server]", "<http-server>"], [205, 6, 0, "system:locators:[https-server]", "<https-server>"], [106, 6, 0, "dfmc-conditions:dfmc-conditions:[ignore-serious-note]", "<ignore-serious-note>"], [118, 6, 0, "access-path:access-path:[illegal-instruction-exception-stop-reason]", "<illegal-instruction-exception-stop-reason>"], [66, 6, 0, "duim-dcs:duim-dcs:[image]", "<image>"], [119, 6, 0, "debugger-manager:debugger-manager:[implementation-stack-frame]", "<implementation-stack-frame>"], [201, 6, 0, "sql:sql:[implicit-zero-bit-padding]", "<implicit-zero-bit-padding>"], [184, 6, 0, "io:streams:[incomplete-read-error]", "<incomplete-read-error>"], [184, 6, 0, "io:streams:[indenting-stream]", "<indenting-stream>"], [201, 6, 0, "sql:sql:[index]", "<index>"], [201, 6, 0, "sql:sql:[indicator-overflow]", "<indicator-overflow>"], [201, 2, 0, "sql:sql:[indicator-policy]", "<indicator-policy>"], [118, 6, 0, "access-path:access-path:[inexact-result-exception-stop-reason]", "<inexact-result-exception-stop-reason>"], [66, 6, 0, "duim-dcs:duim-dcs:[ink]", "<ink>"], [118, 6, 0, "access-path:access-path:[instruction-exception-stop-reason]", "<instruction-exception-stop-reason>"], [119, 7, 0, "debugger-manager:debugger-manager:[instruction-pointers]", "<instruction-pointers>"], [201, 6, 0, "sql:sql:[insufficient-item-descriptor-areas]", "<insufficient-item-descriptor-areas>"], [118, 6, 0, "access-path:access-path:[integer-divide-by-zero-exception-stop-reason]", "<integer-divide-by-zero-exception-stop-reason>"], [118, 6, 0, "access-path:access-path:[integer-exception-stop-reason]", "<integer-exception-stop-reason>"], [118, 6, 0, "access-path:access-path:[integer-overflow-exception-stop-reason]", "<integer-overflow-exception-stop-reason>"], [201, 6, 0, "sql:sql:[integrity-constraint-violation]", "<integrity-constraint-violation>"], [119, 6, 0, "debugger-manager:debugger-manager:[interactive-thread-initialized-stop-reason]", "<interactive-thread-initialized-stop-reason>"], [119, 6, 0, "debugger-manager:debugger-manager:[interactor-return-breakpoint]", "<interactor-return-breakpoint>"], [119, 6, 0, "debugger-manager:debugger-manager:[interactor-return-stop-reason]", "<interactor-return-stop-reason>"], [199, 6, 0, "network:sockets:[internal-socket-error]", "<internal-socket-error>"], [118, 6, 0, "access-path:access-path:[internal-stop-reason]", "<internal-stop-reason>"], [199, 6, 0, "network:sockets:[internet-address]", "<internet-address>"], [201, 6, 0, "sql:sql:[interval-field-overflow]", "<interval-field-overflow>"], [199, 6, 0, "network:sockets:[invalid-address]", "<invalid-address>"], [201, 6, 0, "sql:sql:[invalid-argument]", "<invalid-argument>"], [201, 6, 0, "sql:sql:[invalid-authorization-specification]", "<invalid-authorization-specification>"], [201, 6, 0, "sql:sql:[invalid-catalog-name]", "<invalid-catalog-name>"], [201, 6, 0, "sql:sql:[invalid-character-set-name]", "<invalid-character-set-name>"], [201, 6, 0, "sql:sql:[invalid-character-value-for-cast]", "<invalid-character-value-for-cast>"], [201, 6, 0, "sql:sql:[invalid-condition-number]", "<invalid-condition-number>"], [201, 6, 0, "sql:sql:[invalid-cursor-name]", "<invalid-cursor-name>"], [201, 6, 0, "sql:sql:[invalid-datatype-hint]", "<invalid-datatype-hint>"], [201, 6, 0, "sql:sql:[invalid-datetime-format]", "<invalid-datetime-format>"], [201, 6, 0, "sql:sql:[invalid-descriptor-count]", "<invalid-descriptor-count>"], [201, 6, 0, "sql:sql:[invalid-descriptor-index]", "<invalid-descriptor-index>"], [201, 6, 0, "sql:sql:[invalid-escape-character]", "<invalid-escape-character>"], [201, 6, 0, "sql:sql:[invalid-escape-sequence]", "<invalid-escape-sequence>"], [201, 6, 0, "sql:sql:[invalid-fetch-sequence]", "<invalid-fetch-sequence>"], [184, 6, 0, "io:streams:[invalid-file-permissions-error]", "<invalid-file-permissions-error>"], [203, 6, 0, "system:file-system:[invalid-file-permissions-error]", "<invalid-file-permissions-error>"], [118, 6, 0, "access-path:access-path:[invalid-float-operation-exception-stop-reason]", "<invalid-float-operation-exception-stop-reason>"], [201, 6, 0, "sql:sql:[invalid-parameter-value]", "<invalid-parameter-value>"], [201, 6, 0, "sql:sql:[invalid-schema-name]", "<invalid-schema-name>"], [201, 6, 0, "sql:sql:[invalid-sql-descriptor-name]", "<invalid-sql-descriptor-name>"], [201, 6, 0, "sql:sql:[invalid-sql-statement-name]", "<invalid-sql-statement-name>"], [201, 6, 0, "sql:sql:[invalid-time-zone-displacement-value]", "<invalid-time-zone-displacement-value>"], [201, 6, 0, "sql:sql:[invalid-transaction-state]", "<invalid-transaction-state>"], [201, 6, 0, "sql:sql:[invalid-transaction-termination]", "<invalid-transaction-termination>"], [118, 6, 0, "access-path:access-path:[invoke-debugger-stop-reason]", "<invoke-debugger-stop-reason>"], [199, 6, 0, "network:sockets:[ipv4-host-order-address]", "<ipv4-host-order-address>"], [199, 6, 0, "network:sockets:[ipv4-network-order-address]", "<ipv4-network-order-address>"], [199, 6, 0, "network:sockets:[ipv4-numeric-address]", "<ipv4-numeric-address>"], [201, 2, 0, "sql:sql:[isolation-level]", "<isolation-level>"], [74, 6, 0, "duim-sheets:duim-sheets:[key-press-event]", "<key-press-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[key-release-event]", "<key-release-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[keyboard-event]", "<keyboard-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[keyboard-gesture]", "<keyboard-gesture>"], [69, 6, 0, "duim:duim-gadgets:[label]", "<label>"], [118, 6, 0, "access-path:access-path:[language-level-stop-reason]", "<language-level-stop-reason>"], [73, 6, 0, "duim-layouts:duim-layouts:[layout]", "<layout>"], [73, 6, 0, "duim-layouts:duim-layouts:[leaf-pane]", "<leaf-pane>"], [118, 6, 0, "access-path:access-path:[lexical-variable]", "<lexical-variable>"], [118, 6, 0, "access-path:access-path:[library-stop-reason]", "<library-stop-reason>"], [67, 6, 0, "duim-extended-geometry:duim-extended-geometry:[line]", "<line>"], [69, 6, 0, "duim:duim-gadgets:[list-box]", "<list-box>"], [69, 7, 0, "duim:duim-gadgets:[list-control-view]", "<list-control-view>"], [69, 6, 0, "duim:duim-gadgets:[list-control]", "<list-control>"], [69, 6, 0, "duim:duim-gadgets:[list-item]", "<list-item>"], [118, 6, 0, "access-path:access-path:[load-library-stop-reason]", "<load-library-stop-reason>"], [205, 6, 0, "system:locators:[locator-error]", "<locator-error>"], [205, 6, 0, "system:locators:[locator]", "<locator>"], [177, 6, 0, "dylan:threads:[lock]", "<lock>"], [166, 6, 0, "common-dylan:machine-words:[machine-word]", "<machine-word>"], [205, 6, 0, "system:locators:[mail-to-locator]", "<mail-to-locator>"], [74, 6, 0, "duim-sheets:duim-sheets:[medium]", "<medium>"], [118, 6, 0, "access-path:access-path:[memory-exception-stop-reason]", "<memory-exception-stop-reason>"], [69, 6, 0, "duim:duim-gadgets:[menu-bar]", "<menu-bar>"], [69, 6, 0, "duim:duim-gadgets:[menu-box]", "<menu-box>"], [69, 6, 0, "duim:duim-gadgets:[menu-button]", "<menu-button>"], [69, 6, 0, "duim:duim-gadgets:[menu]", "<menu>"], [203, 6, 0, "system:file-system:[microsoft-directory-locator]", "<microsoft-directory-locator>"], [203, 6, 0, "system:file-system:[microsoft-file-locator]", "<microsoft-file-locator>"], [203, 6, 0, "system:file-system:[microsoft-file-system-locator]", "<microsoft-file-system-locator>"], [203, 6, 0, "system:file-system:[microsoft-server-locator]", "<microsoft-server-locator>"], [203, 6, 0, "system:file-system:[microsoft-unc-locator]", "<microsoft-unc-locator>"], [203, 6, 0, "system:file-system:[microsoft-volume-locator]", "<microsoft-volume-locator>"], [73, 6, 0, "duim-layouts:duim-layouts:[multiple-child-composite-pane]", "<multiple-child-composite-pane>"], [201, 6, 0, "sql:sql:[multiple-server-transaction]", "<multiple-server-transaction>"], [194, 6, 0, "dylan:dylan-extensions:[mutable-object-with-elements]", "<mutable-object-with-elements>"], [133, 7, 0, "ppml:ppml:[nat]", "<nat>"], [205, 2, 0, "system:locators:[native-directory-locator]", "<native-directory-locator>"], [205, 2, 0, "system:locators:[native-file-locator]", "<native-file-locator>"], [203, 2, 0, "system:file-system:[native-file-system-locator]", "<native-file-system-locator>"], [199, 6, 0, "network:sockets:[network-not-responding]", "<network-not-responding>"], [201, 6, 0, "sql:sql:[no-data]", "<no-data>"], [118, 6, 0, "access-path:access-path:[noncontinuable-exception-stop-reason]", "<noncontinuable-exception-stop-reason>"], [177, 6, 0, "dylan:threads:[notification]", "<notification>"], [73, 6, 0, "duim-layouts:duim-layouts:[null-pane]", "<null-pane>"], [201, 6, 0, "sql:sql:[null-value-eliminated-in-set-function]", "<null-value-eliminated-in-set-function>"], [201, 6, 0, "sql:sql:[null-value-no-indicator-parameter]", "<null-value-no-indicator-parameter>"], [201, 6, 0, "sql:sql:[null-value]", "<null-value>"], [199, 6, 0, "network:sockets:[numeric-address]", "<numeric-address>"], [201, 6, 0, "sql:sql:[numeric-value-out-of-range]", "<numeric-value-out-of-range>"], [119, 6, 0, "debugger-manager:debugger-manager:[object-registration-error]", "<object-registration-error>"], [160, 6, 0, "collections:set:[object-set]", "<object-set>"], [194, 6, 0, "dylan:dylan-extensions:[object-with-elements]", "<object-with-elements>"], [69, 6, 0, "duim:duim-gadgets:[option-box]", "<option-box>"], [199, 6, 0, "network:sockets:[out-of-resources]", "<out-of-resources>"], [118, 6, 0, "access-path:access-path:[output-debug-string-stop-reason]", "<output-debug-string-stop-reason>"], [119, 6, 0, "debugger-manager:debugger-manager:[page-relative-object-table-entry]", "<page-relative-object-table-entry>"], [119, 6, 0, "debugger-manager:debugger-manager:[page-relative-object-table]", "<page-relative-object-table>"], [69, 6, 0, "duim:duim-gadgets:[page]", "<page>"], [66, 6, 0, "duim-dcs:duim-dcs:[palette-full]", "<palette-full>"], [66, 6, 0, "duim-dcs:duim-dcs:[palette]", "<palette>"], [69, 6, 0, "duim:duim-gadgets:[password-field]", "<password-field>"], [70, 6, 0, "duim-geometry:duim-geometry:[path]", "<path>"], [203, 7, 0, "system:file-system:[pathname]", "<pathname>"], [66, 6, 0, "duim-dcs:duim-dcs:[pattern]", "<pattern>"], [66, 6, 0, "duim-dcs:duim-dcs:[pen]", "<pen>"], [106, 6, 0, "dfmc-conditions:dfmc-conditions:[performance-note]", "<performance-note>"], [205, 6, 0, "system:locators:[physical-locator]", "<physical-locator>"], [73, 6, 0, "duim-layouts:duim-layouts:[pinboard-layout]", "<pinboard-layout>"], [71, 6, 0, "duim-graphics:duim-graphics:[pixmap-medium]", "<pixmap-medium>"], [71, 6, 0, "duim-graphics:duim-graphics:[pixmap]", "<pixmap>"], [70, 6, 0, "duim-geometry:duim-geometry:[point]", "<point>"], [74, 6, 0, "duim-sheets:duim-sheets:[pointer-boundary-event]", "<pointer-boundary-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[pointer-button-event]", "<pointer-button-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[pointer-drag-event]", "<pointer-drag-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[pointer-enter-event]", "<pointer-enter-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[pointer-event]", "<pointer-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[pointer-exit-event]", "<pointer-exit-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[pointer-gesture]", "<pointer-gesture>"], [74, 6, 0, "duim-sheets:duim-sheets:[pointer-motion-event]", "<pointer-motion-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[pointer]", "<pointer>"], [67, 6, 0, "duim-extended-geometry:duim-extended-geometry:[polygon]", "<polygon>"], [67, 6, 0, "duim-extended-geometry:duim-extended-geometry:[polyline]", "<polyline>"], [74, 6, 0, "duim-sheets:duim-sheets:[port-terminated-event]", "<port-terminated-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[port]", "<port>"], [106, 6, 0, "dfmc-conditions:dfmc-conditions:[portability-note]", "<portability-note>"], [184, 7, 0, "io:streams:[position-type]", "<position-type>"], [184, 6, 0, "io:streams:[positionable-stream]", "<positionable-stream>"], [203, 6, 0, "system:file-system:[posix-directory-locator]", "<posix-directory-locator>"], [203, 6, 0, "system:file-system:[posix-file-locator]", "<posix-file-locator>"], [203, 6, 0, "system:file-system:[posix-file-system-locator]", "<posix-file-system-locator>"], [133, 6, 0, "ppml:ppml:[ppml-block]", "<ppml-block>"], [133, 7, 0, "ppml:ppml:[ppml-break-type]", "<ppml-break-type>"], [133, 6, 0, "ppml:ppml:[ppml-break]", "<ppml-break>"], [133, 6, 0, "ppml:ppml:[ppml-browser-aware-object]", "<ppml-browser-aware-object>"], [133, 6, 0, "ppml:ppml:[ppml-printer]", "<ppml-printer>"], [133, 6, 0, "ppml:ppml:[ppml-separator-block]", "<ppml-separator-block>"], [133, 7, 0, "ppml:ppml:[ppml-sequence]", "<ppml-sequence>"], [133, 6, 0, "ppml:ppml:[ppml-string]", "<ppml-string>"], [133, 6, 0, "ppml:ppml:[ppml-suspension]", "<ppml-suspension>"], [133, 6, 0, "ppml:ppml:[ppml]", "<ppml>"], [201, 6, 0, "sql:sql:[prepared-statement-not-a-cursor-specification]", "<prepared-statement-not-a-cursor-specification>"], [201, 6, 0, "sql:sql:[privilege-not-granted]", "<privilege-not-granted>"], [201, 6, 0, "sql:sql:[privilege-not-revoked]", "<privilege-not-revoked>"], [118, 6, 0, "access-path:access-path:[privileged-instruction-exception-stop-reason]", "<privileged-instruction-exception-stop-reason>"], [118, 6, 0, "access-path:access-path:[process-stop-reason]", "<process-stop-reason>"], [118, 6, 0, "access-path:access-path:[profiler-stop-reason]", "<profiler-stop-reason>"], [118, 6, 0, "access-path:access-path:[profiler-unhandled-stop-reason]", "<profiler-unhandled-stop-reason>"], [168, 7, 0, "common-dylan:simple-profiling:[profiling-state]", "<profiling-state>"], [170, 6, 0, "common-dylan:simple-timers:[profiling-timer]", "<profiling-timer>"], [106, 6, 0, "dfmc-conditions:dfmc-conditions:[program-condition]", "<program-condition>"], [106, 6, 0, "dfmc-conditions:dfmc-conditions:[program-error]", "<program-error>"], [106, 2, 0, "dfmc-conditions:dfmc-conditions:[program-note-filter]", "<program-note-filter>"], [106, 6, 0, "dfmc-conditions:dfmc-conditions:[program-note]", "<program-note>"], [106, 7, 0, "dfmc-conditions:dfmc-conditions:[program-notes]", "<program-notes>"], [106, 6, 0, "dfmc-conditions:dfmc-conditions:[program-restart]", "<program-restart>"], [106, 6, 0, "dfmc-conditions:dfmc-conditions:[program-warning]", "<program-warning>"], [69, 6, 0, "duim:duim-gadgets:[progress-bar]", "<progress-bar>"], [200, 6, 0, "progress-stream:progress-stream:[progress-stream]", "<progress-stream>"], [68, 6, 0, "duim:duim-frames:[property-frame]", "<property-frame>"], [68, 6, 0, "duim:duim-frames:[property-page]", "<property-page>"], [69, 6, 0, "duim:duim-gadgets:[push-box]", "<push-box>"], [69, 6, 0, "duim:duim-gadgets:[push-button]", "<push-button>"], [69, 6, 0, "duim:duim-gadgets:[push-menu-box]", "<push-menu-box>"], [69, 6, 0, "duim:duim-gadgets:[push-menu-button]", "<push-menu-button>"], [201, 6, 0, "sql:sql:[query-expression-too-long-for-information-schema]", "<query-expression-too-long-for-information-schema>"], [69, 6, 0, "duim:duim-gadgets:[radio-box]", "<radio-box>"], [69, 6, 0, "duim:duim-gadgets:[radio-button]", "<radio-button>"], [69, 6, 0, "duim:duim-gadgets:[radio-menu-box]", "<radio-menu-box>"], [69, 6, 0, "duim:duim-gadgets:[radio-menu-button]", "<radio-menu-button>"], [169, 6, 0, "common-dylan:simple-random:[random]", "<random>"], [118, 6, 0, "access-path:access-path:[read-watchpoint-stop-reason]", "<read-watchpoint-stop-reason>"], [177, 6, 0, "dylan:threads:[read-write-lock]", "<read-write-lock>"], [201, 6, 0, "sql:sql:[record]", "<record>"], [199, 6, 0, "network:sockets:[recoverable-socket-condition]", "<recoverable-socket-condition>"], [67, 6, 0, "duim-extended-geometry:duim-extended-geometry:[rectangle]", "<rectangle>"], [177, 6, 0, "dylan:threads:[recursive-lock]", "<recursive-lock>"], [201, 6, 0, "sql:sql:[referential-constraint]", "<referential-constraint>"], [70, 6, 0, "duim-geometry:duim-geometry:[reflection-underspecified]", "<reflection-underspecified>"], [70, 6, 0, "duim-geometry:duim-geometry:[region-set]", "<region-set>"], [70, 6, 0, "duim-geometry:duim-geometry:[region]", "<region>"], [118, 6, 0, "access-path:access-path:[remote-access-violation-error]", "<remote-access-violation-error>"], [201, 6, 0, "sql:sql:[remote-database-access]", "<remote-database-access>"], [118, 6, 0, "access-path:access-path:[remote-function]", "<remote-function>"], [118, 6, 0, "access-path:access-path:[remote-library]", "<remote-library>"], [118, 7, 0, "access-path:access-path:[remote-location]", "<remote-location>"], [118, 6, 0, "access-path:access-path:[remote-object-file]", "<remote-object-file>"], [119, 6, 0, "debugger-manager:debugger-manager:[remote-object]", "<remote-object>"], [118, 6, 0, "access-path:access-path:[remote-process]", "<remote-process>"], [118, 6, 0, "access-path:access-path:[remote-register]", "<remote-register>"], [119, 6, 0, "debugger-manager:debugger-manager:[remote-restart]", "<remote-restart>"], [118, 6, 0, "access-path:access-path:[remote-symbol]", "<remote-symbol>"], [118, 6, 0, "access-path:access-path:[remote-thread]", "<remote-thread>"], [118, 6, 0, "access-path:access-path:[remote-type]", "<remote-type>"], [118, 7, 0, "access-path:access-path:[remote-value]", "<remote-value>"], [201, 6, 0, "sql:sql:[restricted-data-type-attribute-violation]", "<restricted-data-type-attribute-violation>"], [201, 6, 0, "sql:sql:[result-set-mutation-error]", "<result-set-mutation-error>"], [201, 6, 0, "sql:sql:[result-set-policy]", "<result-set-policy>"], [201, 6, 0, "sql:sql:[result-set]", "<result-set>"], [119, 6, 0, "debugger-manager:debugger-manager:[return-tracepoint]", "<return-tracepoint>"], [118, 6, 0, "access-path:access-path:[rip-stop-reason]", "<rip-stop-reason>"], [73, 6, 0, "duim-layouts:duim-layouts:[row-layout]", "<row-layout>"], [106, 6, 0, "dfmc-conditions:dfmc-conditions:[run-time-error-warning]", "<run-time-error-warning>"], [119, 6, 0, "debugger-manager:debugger-manager:[runtime-context]", "<runtime-context>"], [201, 6, 0, "sql:sql:[schema-not-found]", "<schema-not-found>"], [201, 6, 0, "sql:sql:[schema]", "<schema>"], [69, 6, 0, "duim:duim-gadgets:[scroll-bar]", "<scroll-bar>"], [201, 6, 0, "sql:sql:[scrollable-result-set]", "<scrollable-result-set>"], [201, 6, 0, "sql:sql:[search-condition-too-long-for-information-schema]", "<search-condition-too-long-for-information-schema>"], [177, 6, 0, "dylan:threads:[semaphore]", "<semaphore>"], [69, 6, 0, "duim:duim-gadgets:[separator]", "<separator>"], [184, 6, 0, "io:streams:[sequence-stream]", "<sequence-stream>"], [106, 6, 0, "dfmc-conditions:dfmc-conditions:[serious-program-warning]", "<serious-program-warning>"], [205, 6, 0, "system:locators:[server-locator]", "<server-locator>"], [199, 6, 0, "network:sockets:[server-not-responding]", "<server-not-responding>"], [199, 6, 0, "network:sockets:[server-socket]", "<server-socket>"], [205, 6, 0, "system:locators:[server-url]", "<server-url>"], [160, 6, 0, "collections:set:[set]", "<set>"], [74, 6, 0, "duim-sheets:duim-sheets:[sheet-event]", "<sheet-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[sheet]", "<sheet>"], [68, 6, 0, "duim:duim-frames:[simple-command]", "<simple-command>"], [164, 6, 0, "common-dylan:common-extensions:[simple-condition]", "<simple-condition>"], [68, 6, 0, "duim:duim-frames:[simple-frame]", "<simple-frame>"], [177, 6, 0, "dylan:threads:[simple-lock]", "<simple-lock>"], [73, 6, 0, "duim-layouts:duim-layouts:[simple-pane]", "<simple-pane>"], [68, 6, 0, "duim:duim-frames:[simple-undoable-command]", "<simple-undoable-command>"], [73, 6, 0, "duim-layouts:duim-layouts:[single-child-composite-pane]", "<single-child-composite-pane>"], [118, 6, 0, "access-path:access-path:[single-step-stop-reason]", "<single-step-stop-reason>"], [70, 6, 0, "duim-geometry:duim-geometry:[singular-transform]", "<singular-transform>"], [111, 6, 0, "skip-list:skip-list:[skip-list]", "<skip-list>"], [69, 6, 0, "duim:duim-gadgets:[slider]", "<slider>"], [199, 6, 0, "network:sockets:[socket-accessor-error]", "<socket-accessor-error>"], [199, 6, 0, "network:sockets:[socket-closed]", "<socket-closed>"], [199, 6, 0, "network:sockets:[socket-condition]", "<socket-condition>"], [199, 6, 0, "network:sockets:[socket-error]", "<socket-error>"], [199, 6, 0, "network:sockets:[socket]", "<socket>"], [119, 6, 0, "debugger-manager:debugger-manager:[source-code-alignment-stop-reason]", "<source-code-alignment-stop-reason>"], [118, 6, 0, "access-path:access-path:[source-location-map]", "<source-location-map>"], [118, 6, 0, "access-path:access-path:[source-step-into-stop-reason]", "<source-step-into-stop-reason>"], [118, 6, 0, "access-path:access-path:[source-step-out-stop-reason]", "<source-step-out-stop-reason>"], [118, 6, 0, "access-path:access-path:[source-step-over-stop-reason]", "<source-step-over-stop-reason>"], [118, 6, 0, "access-path:access-path:[source-step-stop-reason]", "<source-step-stop-reason>"], [73, 6, 0, "duim-layouts:duim-layouts:[space-requirement]", "<space-requirement>"], [69, 6, 0, "duim:duim-gadgets:[spacing]", "<spacing>"], [69, 6, 0, "duim:duim-gadgets:[spin-box]", "<spin-box>"], [69, 6, 0, "duim:duim-gadgets:[splitter]", "<splitter>"], [119, 6, 0, "debugger-manager:debugger-manager:[spy-call-aborted]", "<spy-call-aborted>"], [119, 6, 0, "debugger-manager:debugger-manager:[spy-call-cannot-use-thread]", "<spy-call-cannot-use-thread>"], [119, 6, 0, "debugger-manager:debugger-manager:[spy-call-error]", "<spy-call-error>"], [119, 6, 0, "debugger-manager:debugger-manager:[spy-call-no-available-thread]", "<spy-call-no-available-thread>"], [119, 6, 0, "debugger-manager:debugger-manager:[spy-function-not-located]", "<spy-function-not-located>"], [201, 6, 0, "sql:sql:[sql-bigint]", "<sql-bigint>"], [201, 6, 0, "sql:sql:[sql-binary]", "<sql-binary>"], [201, 6, 0, "sql:sql:[sql-bit-varying]", "<sql-bit-varying>"], [201, 6, 0, "sql:sql:[sql-bit]", "<sql-bit>"], [201, 6, 0, "sql:sql:[sql-character-varying]", "<sql-character-varying>"], [201, 6, 0, "sql:sql:[sql-character]", "<sql-character>"], [201, 6, 0, "sql:sql:[sql-client-unable-to-establish-connection]", "<sql-client-unable-to-establish-connection>"], [201, 6, 0, "sql:sql:[sql-datatype]", "<sql-datatype>"], [201, 6, 0, "sql:sql:[sql-date]", "<sql-date>"], [201, 6, 0, "sql:sql:[sql-day-time-interval]", "<sql-day-time-interval>"], [201, 6, 0, "sql:sql:[sql-decimal]", "<sql-decimal>"], [201, 6, 0, "sql:sql:[sql-double-precision]", "<sql-double-precision>"], [201, 6, 0, "sql:sql:[sql-double]", "<sql-double>"], [201, 6, 0, "sql:sql:[sql-error]", "<sql-error>"], [201, 6, 0, "sql:sql:[sql-float]", "<sql-float>"], [201, 6, 0, "sql:sql:[sql-integer]", "<sql-integer>"], [201, 6, 0, "sql:sql:[sql-longvarbinary]", "<sql-longvarbinary>"], [201, 6, 0, "sql:sql:[sql-longvarchar]", "<sql-longvarchar>"], [201, 6, 0, "sql:sql:[sql-national-character-varying]", "<sql-national-character-varying>"], [201, 6, 0, "sql:sql:[sql-national-character]", "<sql-national-character>"], [201, 6, 0, "sql:sql:[sql-numeric]", "<sql-numeric>"], [201, 6, 0, "sql:sql:[sql-real]", "<sql-real>"], [201, 6, 0, "sql:sql:[sql-server-rejected-establishment-of-connection]", "<sql-server-rejected-establishment-of-connection>"], [201, 6, 0, "sql:sql:[sql-smallint]", "<sql-smallint>"], [201, 6, 0, "sql:sql:[sql-statement]", "<sql-statement>"], [201, 6, 0, "sql:sql:[sql-table]", "<sql-table>"], [201, 6, 0, "sql:sql:[sql-time-with-time-zone]", "<sql-time-with-time-zone>"], [201, 6, 0, "sql:sql:[sql-time]", "<sql-time>"], [201, 6, 0, "sql:sql:[sql-timestamp-with-time-zone]", "<sql-timestamp-with-time-zone>"], [201, 6, 0, "sql:sql:[sql-timestamp]", "<sql-timestamp>"], [201, 6, 0, "sql:sql:[sql-tinyint]", "<sql-tinyint>"], [201, 6, 0, "sql:sql:[sql-type-timestamp]", "<sql-type-timestamp>"], [201, 6, 0, "sql:sql:[sql-unknown-type]", "<sql-unknown-type>"], [201, 6, 0, "sql:sql:[sql-unsupported-type]", "<sql-unsupported-type>"], [201, 6, 0, "sql:sql:[sql-varbinary]", "<sql-varbinary>"], [201, 6, 0, "sql:sql:[sql-warning]", "<sql-warning>"], [201, 6, 0, "sql:sql:[sql-year-month-interval]", "<sql-year-month-interval>"], [118, 6, 0, "access-path:access-path:[stack-frame]", "<stack-frame>"], [73, 6, 0, "duim-layouts:duim-layouts:[stack-layout]", "<stack-layout>"], [118, 6, 0, "access-path:access-path:[stack-overflow-exception-stop-reason]", "<stack-overflow-exception-stop-reason>"], [201, 6, 0, "sql:sql:[statement-completion-unknown]", "<statement-completion-unknown>"], [69, 6, 0, "duim:duim-gadgets:[status-bar]", "<status-bar>"], [66, 6, 0, "duim-dcs:duim-dcs:[stencil]", "<stencil>"], [118, 6, 0, "access-path:access-path:[stop-reason]", "<stop-reason>"], [184, 6, 0, "io:streams:[stream-position]", "<stream-position>"], [184, 6, 0, "io:streams:[stream]", "<stream>"], [164, 6, 0, "common-dylan:common-extensions:[stretchy-sequence]", "<stretchy-sequence>"], [201, 6, 0, "sql:sql:[string-data-length-mismatch]", "<string-data-length-mismatch>"], [201, 6, 0, "sql:sql:[string-data-right-truncation]", "<string-data-right-truncation>"], [184, 6, 0, "io:streams:[string-stream]", "<string-stream>"], [161, 6, 0, "collections:table-extensions:[string-table]", "<string-table>"], [164, 6, 0, "common-dylan:common-extensions:[string-table]", "<string-table>"], [106, 6, 0, "dfmc-conditions:dfmc-conditions:[style-warning]", "<style-warning>"], [201, 6, 0, "sql:sql:[substring-error]", "<substring-error>"], [201, 6, 0, "sql:sql:[successful-completion]", "<successful-completion>"], [177, 6, 0, "dylan:threads:[synchronization]", "<synchronization>"], [201, 6, 0, "sql:sql:[syntax-error-or-access-rule-violation-in-direct-sql-statement]", "<syntax-error-or-access-rule-violation-in-direct-sql-statement>"], [201, 6, 0, "sql:sql:[syntax-error-or-access-rule-violation-in-dynamic-sql-statement]", "<syntax-error-or-access-rule-violation-in-dynamic-sql-statement>"], [201, 6, 0, "sql:sql:[syntax-error-or-access-rule-violation]", "<syntax-error-or-access-rule-violation>"], [118, 6, 0, "access-path:access-path:[system-initialized-stop-reason]", "<system-initialized-stop-reason>"], [118, 6, 0, "access-path:access-path:[system-invoke-debugger-stop-reason]", "<system-invoke-debugger-stop-reason>"], [207, 6, 0, "t-lists:t-lists:[t-list]", "<t-list>"], [69, 6, 0, "duim:duim-gadgets:[tab-control-page]", "<tab-control-page>"], [69, 6, 0, "duim:duim-gadgets:[tab-control]", "<tab-control>"], [69, 6, 0, "duim:duim-gadgets:[table-column]", "<table-column>"], [69, 7, 0, "duim:duim-gadgets:[table-control-view]", "<table-control-view>"], [69, 6, 0, "duim:duim-gadgets:[table-control]", "<table-control>"], [69, 6, 0, "duim:duim-gadgets:[table-item]", "<table-item>"], [73, 6, 0, "duim-layouts:duim-layouts:[table-layout]", "<table-layout>"], [201, 6, 0, "sql:sql:[table-not-found]", "<table-not-found>"], [199, 6, 0, "network:sockets:[tcp-server-socket]", "<tcp-server-socket>"], [199, 6, 0, "network:sockets:[tcp-socket]", "<tcp-socket>"], [162, 6, 0, "coloring-stream:coloring-stream:[text-attributes]", "<text-attributes>"], [69, 6, 0, "duim:duim-gadgets:[text-editor]", "<text-editor>"], [69, 6, 0, "duim:duim-gadgets:[text-field]", "<text-field>"], [69, 6, 0, "duim:duim-gadgets:[text-gadget]", "<text-gadget>"], [66, 6, 0, "duim-dcs:duim-dcs:[text-style]", "<text-style>"], [119, 6, 0, "debugger-manager:debugger-manager:[thread-snapshot]", "<thread-snapshot>"], [118, 6, 0, "access-path:access-path:[thread-stop-reason]", "<thread-stop-reason>"], [177, 6, 0, "dylan:threads:[thread]", "<thread>"], [118, 6, 0, "access-path:access-path:[timeout-stop-reason]", "<timeout-stop-reason>"], [74, 6, 0, "duim-sheets:duim-sheets:[timer-event]", "<timer-event>"], [69, 6, 0, "duim:duim-gadgets:[tool-bar]", "<tool-bar>"], [73, 6, 0, "duim-layouts:duim-layouts:[top-level-sheet]", "<top-level-sheet>"], [119, 6, 0, "debugger-manager:debugger-manager:[tracepoint]", "<tracepoint>"], [201, 2, 0, "sql:sql:[transaction-mode]", "<transaction-mode>"], [201, 6, 0, "sql:sql:[transaction-resolution-unknown]", "<transaction-resolution-unknown>"], [201, 6, 0, "sql:sql:[transaction-rollback-due-to-integrity-constraint-violation]", "<transaction-rollback-due-to-integrity-constraint-violation>"], [201, 6, 0, "sql:sql:[transaction-rollback-due-to-serialization-failure]", "<transaction-rollback-due-to-serialization-failure>"], [201, 6, 0, "sql:sql:[transaction-rollback]", "<transaction-rollback>"], [201, 6, 0, "sql:sql:[transaction]", "<transaction>"], [70, 6, 0, "duim-geometry:duim-geometry:[transform-error]", "<transform-error>"], [70, 6, 0, "duim-geometry:duim-geometry:[transform-underspecified]", "<transform-underspecified>"], [70, 6, 0, "duim-geometry:duim-geometry:[transform]", "<transform>"], [69, 6, 0, "duim:duim-gadgets:[tree-control]", "<tree-control>"], [69, 6, 0, "duim:duim-gadgets:[tree-node]", "<tree-node>"], [201, 6, 0, "sql:sql:[triggered-data-change-violation]", "<triggered-data-change-violation>"], [201, 6, 0, "sql:sql:[trim-error]", "<trim-error>"], [199, 6, 0, "network:sockets:[udp-server-socket]", "<udp-server-socket>"], [199, 6, 0, "network:sockets:[udp-socket]", "<udp-socket>"], [118, 6, 0, "access-path:access-path:[unassigned-remote-register]", "<unassigned-remote-register>"], [118, 6, 0, "access-path:access-path:[unclassified-exception-stop-reason]", "<unclassified-exception-stop-reason>"], [74, 6, 0, "duim-sheets:duim-sheets:[undefined-text-style-mapping]", "<undefined-text-style-mapping>"], [201, 6, 0, "sql:sql:[unhandled-diagnostic]", "<unhandled-diagnostic>"], [118, 6, 0, "access-path:access-path:[unhandled-stop-reason]", "<unhandled-stop-reason>"], [184, 7, 0, "io:streams:[unicode-character]", "<unicode-character>"], [184, 6, 0, "io:streams:[unicode-string-stream]", "<unicode-string-stream>"], [201, 6, 0, "sql:sql:[unique-constraint]", "<unique-constraint>"], [201, 6, 0, "sql:sql:[unknown-sqlstate]", "<unknown-sqlstate>"], [118, 6, 0, "access-path:access-path:[unload-library-stop-reason]", "<unload-library-stop-reason>"], [201, 6, 0, "sql:sql:[unterminated-c-string]", "<unterminated-c-string>"], [119, 6, 0, "debugger-manager:debugger-manager:[unwind-protect-frame]", "<unwind-protect-frame>"], [205, 6, 0, "system:locators:[url]", "<url>"], [201, 6, 0, "sql:sql:[user]", "<user>"], [201, 6, 0, "sql:sql:[using-clause-does-not-match-dynamic-parameter-specification]", "<using-clause-does-not-match-dynamic-parameter-specification>"], [201, 6, 0, "sql:sql:[using-clause-does-not-match-target-specification]", "<using-clause-does-not-match-target-specification>"], [201, 6, 0, "sql:sql:[using-clause-required-for-dynamic-parameters]", "<using-clause-required-for-dynamic-parameters>"], [201, 6, 0, "sql:sql:[using-clause-required-for-result-fields]", "<using-clause-required-for-result-fields>"], [69, 6, 0, "duim:duim-gadgets:[value-gadget]", "<value-gadget>"], [69, 6, 0, "duim:duim-gadgets:[value-range-gadget]", "<value-range-gadget>"], [69, 6, 0, "duim:duim-gadgets:[viewport]", "<viewport>"], [201, 6, 0, "sql:sql:[warning-cursor-operation-conflict]", "<warning-cursor-operation-conflict>"], [201, 6, 0, "sql:sql:[warning-string-data-right-truncation]", "<warning-string-data-right-truncation>"], [118, 6, 0, "access-path:access-path:[watchpoint-stop-reason]", "<watchpoint-stop-reason>"], [119, 6, 0, "debugger-manager:debugger-manager:[watchpoint]", "<watchpoint>"], [205, 6, 0, "system:locators:[web-locator]", "<web-locator>"], [199, 6, 0, "network:sockets:[win32-socket-error]", "<win32-socket-error>"], [74, 6, 0, "duim-sheets:duim-sheets:[window-configuration-event]", "<window-configuration-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[window-event]", "<window-event>"], [74, 6, 0, "duim-sheets:duim-sheets:[window-repaint-event]", "<window-repaint-event>"], [201, 6, 0, "sql:sql:[with-check-option-violation]", "<with-check-option-violation>"], [68, 6, 0, "duim:duim-frames:[wizard-frame]", "<wizard-frame>"], [68, 6, 0, "duim:duim-frames:[wizard-page]", "<wizard-page>"], [184, 6, 0, "io:streams:[wrapper-stream]", "<wrapper-stream>"], [118, 6, 0, "access-path:access-path:[write-watchpoint-stop-reason]", "<write-watchpoint-stop-reason>"], [202, 6, 0, "system:date:[year/month-duration]", "<year/month-duration>"], [74, 3, 0, "duim-sheets:duim-sheets:=", "="], [192, 3, 0, "dylan:dylan:=", "="], [154, 4, 0, "c-ffi:c-ffi:=([c-pointer])", "=(<C-pointer>)"], [68, 4, 0, "duim:duim-frames:=([command])", "=(<command>)"], [192, 4, 0, "dylan:dylan:=([complex])", "=(<complex>)"], [202, 4, 0, "system:date:=([date])", "=(<date>)"], [202, 4, 0, "system:date:=([duration])", "=(<duration>)"], [192, 4, 0, "dylan:dylan:=([machine-number])", "=(<machine-number>)"], [70, 4, 0, "duim-geometry:duim-geometry:=([region])", "=(<region>)"], [118, 4, 0, "access-path:access-path:=([remote-value],[remote-value])", "=(<remote-value>, <remote-value>)"], [70, 4, 0, "duim-geometry:duim-geometry:=([transform])", "=(<transform>)"], [66, 3, 0, "duim-dcs:duim-dcs:\\=", "\\="], [166, 3, 0, "common-dylan:machine-words:\\=", "\\="], [192, 3, 0, "dylan:dylan:^", "^"], [192, 4, 0, "dylan:dylan:^([complex],[complex])", "^(<complex>, <complex>)"], [171, 4, 0, "common-dylan:transcendentals:^([double-float],[double-float])", "^(<double-float>, <double-float>)"], [171, 4, 0, "common-dylan:transcendentals:^([double-float],[single-float])", "^(<double-float>, <single-float>)"], [192, 4, 0, "dylan:dylan:^([float],[integer])", "^(<float>, <integer>)"], [192, 4, 0, "dylan:dylan:^([integer],[integer])", "^(<integer>, <integer>)"], [171, 4, 0, "common-dylan:transcendentals:^([single-float],[double-float])", "^(<single-float>, <double-float>)"], [171, 4, 0, "common-dylan:transcendentals:^([single-float],[single-float])", "^(<single-float>, <single-float>)"], [71, 3, 0, "duim-graphics:duim-graphics:abort-path", "abort-path"], [192, 3, 0, "dylan:dylan:abs", "abs"], [192, 4, 0, "dylan:dylan:abs([complex])", "abs(<complex>)"], [192, 4, 0, "dylan:dylan:abs([float])", "abs(<float>)"], [192, 4, 0, "dylan:dylan:abs([integer])", "abs(<integer>)"], [199, 3, 0, "network:sockets:accept", "accept"], [199, 4, 0, "network:sockets:accept([tcp-server-socket])", "accept(<tcp-server-socket>)"], [118, 3, 0, "access-path:access-path:access-path-abstract-handle", "access-path-abstract-handle"], [118, 3, 0, "access-path:access-path:access-path-abstract-handle-setter", "access-path-abstract-handle-setter"], [118, 3, 0, "access-path:access-path:access-path-application", "access-path-application"], [118, 3, 0, "access-path:access-path:access-path-application-object", "access-path-application-object"], [118, 3, 0, "access-path:access-path:access-path-arguments", "access-path-arguments"], [118, 3, 0, "access-path:access-path:access-path-core-file", "access-path-core-file"], [118, 3, 0, "access-path:access-path:access-path-process", "access-path-process"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:accumulate-subnotes-during", "accumulate-subnotes-during"], [171, 3, 0, "common-dylan:transcendentals:acos", "acos"], [171, 4, 0, "common-dylan:transcendentals:acos([double-float])", "acos(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:acos([single-float])", "acos(<single-float>)"], [171, 3, 0, "common-dylan:transcendentals:acosh", "acosh"], [171, 4, 0, "common-dylan:transcendentals:acosh([double-float])", "acosh(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:acosh([single-float])", "acosh(<single-float>)"], [201, 3, 0, "sql:sql:acquire-null-value", "acquire-null-value"], [69, 3, 0, "duim:duim-gadgets:activate-gadget", "activate-gadget"], [119, 3, 0, "debugger-manager:debugger-manager:active-dylan-lexical-variables", "active-dylan-lexical-variables"], [119, 4, 0, "debugger-manager:debugger-manager:active-lexical-variables([runtime-context])", "active-lexical-variables(<runtime-context>)"], [118, 3, 0, "access-path:access-path:active-register", "active-register"], [74, 3, 0, "duim-sheets:duim-sheets:add-child", "add-child"], [74, 3, 0, "duim-sheets:duim-sheets:add-clipboard-data", "add-clipboard-data"], [74, 3, 0, "duim-sheets:duim-sheets:add-clipboard-data-as", "add-clipboard-data-as"], [66, 3, 0, "duim-dcs:duim-dcs:add-colors", "add-colors"], [69, 3, 0, "duim:duim-gadgets:add-column", "add-column"], [68, 3, 0, "duim:duim-frames:add-command", "add-command"], [68, 3, 0, "duim:duim-frames:add-command-table-menu-item", "add-command-table-menu-item"], [69, 3, 0, "duim:duim-gadgets:add-item", "add-item"], [69, 3, 0, "duim:duim-gadgets:add-node", "add-node"], [119, 3, 0, "debugger-manager:debugger-manager:add-object", "add-object"], [119, 4, 0, "debugger-manager:debugger-manager:add-object([page-relative-object-table],[remote-value],[page-relative-object-table-entry])", "add-object(<page-relative-object-table>, <remote-value>, <page-relative-object-table-entry>)"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:add-program-condition", "add-program-condition"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:add-program-condition([condition])", "add-program-condition(<condition>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:add-program-condition([program-condition])", "add-program-condition(<program-condition>)"], [118, 3, 0, "access-path:access-path:address-within-definition?", "address-within-definition?"], [118, 4, 0, "access-path:access-path:address-within-definition?([remote-function],[remote-value])", "address-within-definition?(<remote-function>, <remote-value>)"], [118, 4, 0, "access-path:access-path:address-within-definition?([remote-symbol],[remote-value])", "address-within-definition?(<remote-symbol>, <remote-value>)"], [184, 3, 0, "io:streams:adjust-stream-position", "adjust-stream-position"], [199, 3, 0, "network:sockets:aliases", "aliases"], [119, 3, 0, "debugger-manager:debugger-manager:align-thread-to-source-location", "align-thread-to-source-location"], [154, 3, 0, "c-ffi:c-ffi:alignment-of", "alignment-of"], [199, 3, 0, "network:sockets:all-addresses", "all-addresses"], [73, 3, 0, "duim-layouts:duim-layouts:allocate-space", "allocate-space"], [119, 3, 0, "debugger-manager:debugger-manager:allocated-class", "allocated-class"], [119, 3, 0, "debugger-manager:debugger-manager:allocation-increment", "allocation-increment"], [164, 3, 0, "common-dylan:common-extensions:application-arguments", "application-arguments"], [164, 3, 0, "common-dylan:common-extensions:application-filename", "application-filename"], [119, 3, 0, "debugger-manager:debugger-manager:application-just-interacted?", "application-just-interacted?"], [119, 3, 0, "debugger-manager:debugger-manager:application-just-interacted?-setter", "application-just-interacted?-setter"], [164, 3, 0, "common-dylan:common-extensions:application-name", "application-name"], [119, 3, 0, "debugger-manager:debugger-manager:application-profile-threads", "application-profile-threads"], [119, 3, 0, "debugger-manager:debugger-manager:application-profiling?", "application-profiling?"], [119, 3, 0, "debugger-manager:debugger-manager:application-running-on-code-entry?", "application-running-on-code-entry?"], [119, 3, 0, "debugger-manager:debugger-manager:application-running-on-code-entry?-setter", "application-running-on-code-entry?-setter"], [119, 3, 0, "debugger-manager:debugger-manager:application-snapshot-skip", "application-snapshot-skip"], [119, 3, 0, "debugger-manager:debugger-manager:application-snapshots", "application-snapshots"], [118, 3, 0, "access-path:access-path:application-state-post-mortem?", "application-state-post-mortem?"], [118, 3, 0, "access-path:access-path:application-state-running?", "application-state-running?"], [118, 3, 0, "access-path:access-path:application-state-stopped?", "application-state-stopped?"], [118, 3, 0, "access-path:access-path:application-state-unstarted?", "application-state-unstarted?"], [119, 3, 0, "debugger-manager:debugger-manager:application-stopped?", "application-stopped?"], [119, 3, 0, "debugger-manager:debugger-manager:application-stopped?-setter", "application-stopped?-setter"], [119, 3, 0, "debugger-manager:debugger-manager:application-thread-snapshot", "application-thread-snapshot"], [68, 3, 0, "duim:duim-frames:apply-in-frame", "apply-in-frame"], [118, 3, 0, "access-path:access-path:apply-thread-stepping-control", "apply-thread-stepping-control"], [71, 3, 0, "duim-graphics:duim-graphics:arc-to", "arc-to"], [70, 3, 0, "duim-geometry:duim-geometry:area?", "area?"], [166, 3, 0, "common-dylan:machine-words:as", "as"], [184, 4, 0, "io:streams:as([integer],[stream-position])", "as(<integer>, <stream-position>)"], [199, 4, 0, "network:sockets:as([string],[ipv4-numeric-address])", "as(<string>, <ipv4-numeric-address>)"], [133, 4, 0, "ppml:ppml:as(class==[ppml],[byte-string])", "as(class == <ppml>, <byte-string>)"], [133, 4, 0, "ppml:ppml:as(class==[ppml],[collection])", "as(class == <ppml>, <collection>)"], [133, 4, 0, "ppml:ppml:as(class==[ppml],[explicit-key-collection])", "as(class == <ppml>, <explicit-key-collection>)"], [133, 4, 0, "ppml:ppml:as(class==[ppml],[list])", "as(class == <ppml>, <list>)"], [133, 4, 0, "ppml:ppml:as(class==[ppml],[object])", "as(class == <ppml>, <object>)"], [133, 4, 0, "ppml:ppml:as(class==[ppml],[symbol])", "as(class == <ppml>, <symbol>)"], [133, 4, 0, "ppml:ppml:as(class==[ppml],[vector])", "as(class == <ppml>, <vector>)"], [118, 3, 0, "access-path:access-path:as-integer", "as-integer"], [118, 4, 0, "access-path:access-path:as-integer([descriptor-pointer])", "as-integer(<descriptor-pointer>)"], [118, 4, 0, "access-path:access-path:as-integer([remote-value])", "as-integer(<remote-value>)"], [118, 3, 0, "access-path:access-path:as-integer-losing-precision", "as-integer-losing-precision"], [202, 3, 0, "system:date:as-iso8601-string", "as-iso8601-string"], [118, 3, 0, "access-path:access-path:as-remote-pointer", "as-remote-pointer"], [118, 3, 0, "access-path:access-path:as-remote-value", "as-remote-value"], [202, 3, 0, "system:date:as-rfc1123-string", "as-rfc1123-string"], [202, 3, 0, "system:date:as-rfc822-string", "as-rfc822-string"], [166, 3, 0, "common-dylan:machine-words:as-unsigned", "as-unsigned"], [192, 3, 0, "dylan:dylan:ash", "ash"], [171, 3, 0, "common-dylan:transcendentals:asin", "asin"], [171, 4, 0, "common-dylan:transcendentals:asin([double-float])", "asin(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:asin([single-float])", "asin(<single-float>)"], [171, 3, 0, "common-dylan:transcendentals:asinh", "asinh"], [171, 4, 0, "common-dylan:transcendentals:asinh([double-float])", "asinh(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:asinh([single-float])", "asinh(<single-float>)"], [164, 8, 0, "common-dylan:common-extensions:assert", "assert"], [177, 3, 0, "dylan:threads:associated-lock", "associated-lock"], [201, 3, 0, "sql:sql:asynchronous", "asynchronous"], [171, 3, 0, "common-dylan:transcendentals:atan", "atan"], [171, 4, 0, "common-dylan:transcendentals:atan([double-float])", "atan(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:atan([single-float])", "atan(<single-float>)"], [171, 3, 0, "common-dylan:transcendentals:atan2", "atan2"], [171, 4, 0, "common-dylan:transcendentals:atan2([double-float],[double-float])", "atan2(<double-float>, <double-float>)"], [171, 4, 0, "common-dylan:transcendentals:atan2([double-float],[single-float])", "atan2(<double-float>, <single-float>)"], [171, 4, 0, "common-dylan:transcendentals:atan2([single-float],[double-float])", "atan2(<single-float>, <double-float>)"], [171, 4, 0, "common-dylan:transcendentals:atan2([single-float],[single-float])", "atan2(<single-float>, <single-float>)"], [171, 3, 0, "common-dylan:transcendentals:atanh", "atanh"], [171, 4, 0, "common-dylan:transcendentals:atanh([double-float])", "atanh(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:atanh([single-float])", "atanh(<single-float>)"], [177, 8, 0, "dylan:threads:atomic-decrement!", "atomic-decrement!"], [177, 8, 0, "dylan:threads:atomic-increment!", "atomic-increment!"], [174, 3, 0, "common-dylan:finalization:automatic-finalization-enabled?", "automatic-finalization-enabled?"], [174, 3, 0, "common-dylan:finalization:automatic-finalization-enabled?-setter", "automatic-finalization-enabled?-setter"], [119, 3, 0, "debugger-manager:debugger-manager:available-restarts-for-thread", "available-restarts-for-thread"], [118, 3, 0, "access-path:access-path:base-address", "base-address"], [118, 3, 0, "access-path:access-path:base-linenumber", "base-linenumber"], [74, 3, 0, "duim-sheets:duim-sheets:beep", "beep"], [156, 3, 0, "collections:bit-vector:bit-count", "bit-count"], [156, 3, 0, "collections:bit-vector:bit-vector-and", "bit-vector-and"], [156, 3, 0, "collections:bit-vector:bit-vector-and!", "bit-vector-and!"], [156, 3, 0, "collections:bit-vector:bit-vector-andc2", "bit-vector-andc2"], [156, 3, 0, "collections:bit-vector:bit-vector-andc2!", "bit-vector-andc2!"], [156, 3, 0, "collections:bit-vector:bit-vector-not", "bit-vector-not"], [156, 3, 0, "collections:bit-vector:bit-vector-not!", "bit-vector-not!"], [156, 3, 0, "collections:bit-vector:bit-vector-or", "bit-vector-or"], [156, 3, 0, "collections:bit-vector:bit-vector-or!", "bit-vector-or!"], [156, 3, 0, "collections:bit-vector:bit-vector-xor", "bit-vector-xor"], [156, 3, 0, "collections:bit-vector:bit-vector-xor!", "bit-vector-xor!"], [74, 3, 0, "duim-sheets:duim-sheets:boundary-event-kind", "boundary-event-kind"], [70, 3, 0, "duim-geometry:duim-geometry:bounding-box", "bounding-box"], [70, 3, 0, "duim-geometry:duim-geometry:bounding-box?", "bounding-box?"], [70, 3, 0, "duim-geometry:duim-geometry:box-bottom", "box-bottom"], [70, 3, 0, "duim-geometry:duim-geometry:box-edges", "box-edges"], [70, 3, 0, "duim-geometry:duim-geometry:box-height", "box-height"], [70, 3, 0, "duim-geometry:duim-geometry:box-left", "box-left"], [70, 3, 0, "duim-geometry:duim-geometry:box-position", "box-position"], [70, 3, 0, "duim-geometry:duim-geometry:box-right", "box-right"], [70, 3, 0, "duim-geometry:duim-geometry:box-size", "box-size"], [70, 3, 0, "duim-geometry:duim-geometry:box-top", "box-top"], [70, 3, 0, "duim-geometry:duim-geometry:box-width", "box-width"], [66, 3, 0, "duim-dcs:duim-dcs:brush-background", "brush-background"], [66, 3, 0, "duim-dcs:duim-dcs:brush-fill-rule", "brush-fill-rule"], [66, 3, 0, "duim-dcs:duim-dcs:brush-fill-style", "brush-fill-style"], [66, 3, 0, "duim-dcs:duim-dcs:brush-foreground", "brush-foreground"], [66, 3, 0, "duim-dcs:duim-dcs:brush-mode", "brush-mode"], [66, 3, 0, "duim-dcs:duim-dcs:brush-stipple", "brush-stipple"], [66, 3, 0, "duim-dcs:duim-dcs:brush-stretch-mode", "brush-stretch-mode"], [66, 3, 0, "duim-dcs:duim-dcs:brush-tile", "brush-tile"], [66, 3, 0, "duim-dcs:duim-dcs:brush-ts-x", "brush-ts-x"], [66, 3, 0, "duim-dcs:duim-dcs:brush-ts-y", "brush-ts-y"], [66, 3, 0, "duim-dcs:duim-dcs:brush?", "brush?"], [74, 3, 0, "duim-sheets:duim-sheets:button-index", "button-index"], [74, 3, 0, "duim-sheets:duim-sheets:button-index-name", "button-index-name"], [118, 3, 0, "access-path:access-path:byte-indexed-remote-value", "byte-indexed-remote-value"], [163, 3, 0, "common-dylan:byte-vector:byte-storage-address", "byte-storage-address"], [184, 4, 0, "io:streams:byte-storage-address([buffer])", "byte-storage-address(<buffer>)"], [163, 4, 0, "common-dylan:byte-vector:byte-storage-address([byte-string])", "byte-storage-address(<byte-string>)"], [163, 4, 0, "common-dylan:byte-vector:byte-storage-address([byte-vector])", "byte-storage-address(<byte-vector>)"], [163, 3, 0, "common-dylan:byte-vector:byte-storage-offset-address", "byte-storage-offset-address"], [184, 4, 0, "io:streams:byte-storage-offset-address([buffer])", "byte-storage-offset-address(<buffer>)"], [163, 4, 0, "common-dylan:byte-vector:byte-storage-offset-address([byte-string])", "byte-storage-offset-address(<byte-string>)"], [163, 4, 0, "common-dylan:byte-vector:byte-storage-offset-address([byte-vector])", "byte-storage-offset-address(<byte-vector>)"], [163, 3, 0, "common-dylan:byte-vector:byte-vector-fill", "byte-vector-fill"], [163, 4, 0, "common-dylan:byte-vector:byte-vector-fill([byte-vector],[byte-character])", "byte-vector-fill(<byte-vector>, <byte-character>)"], [163, 4, 0, "common-dylan:byte-vector:byte-vector-fill([byte-vector],[integer])", "byte-vector-fill(<byte-vector>, <integer>)"], [163, 3, 0, "common-dylan:byte-vector:byte-vector-ref", "byte-vector-ref"], [163, 3, 0, "common-dylan:byte-vector:byte-vector-ref-setter", "byte-vector-ref-setter"], [154, 3, 0, "c-ffi:c-ffi:c-type-cast", "c-type-cast"], [118, 3, 0, "access-path:access-path:calculate-stack-address", "calculate-stack-address"], [119, 3, 0, "debugger-manager:debugger-manager:call-debugger-function", "call-debugger-function"], [119, 4, 0, "debugger-manager:debugger-manager:call-debugger-function([debug-target],[function])", "call-debugger-function(<debug-target>, <function>)"], [119, 3, 0, "debugger-manager:debugger-manager:call-frame-aligned-at-source-locator?", "call-frame-aligned-at-source-locator?"], [119, 3, 0, "debugger-manager:debugger-manager:call-frame-description", "call-frame-description"], [119, 3, 0, "debugger-manager:debugger-manager:call-frame-frame-pointer", "call-frame-frame-pointer"], [119, 3, 0, "debugger-manager:debugger-manager:call-frame-function", "call-frame-function"], [119, 3, 0, "debugger-manager:debugger-manager:call-frame-nearest-source-locator", "call-frame-nearest-source-locator"], [119, 3, 0, "debugger-manager:debugger-manager:call-frame-return-address", "call-frame-return-address"], [68, 3, 0, "duim:duim-frames:call-in-frame", "call-in-frame"], [119, 3, 0, "debugger-manager:debugger-manager:call-spy", "call-spy"], [119, 3, 0, "debugger-manager:debugger-manager:call-spy-on-thread", "call-spy-on-thread"], [68, 3, 0, "duim:duim-frames:cancel-dialog", "cancel-dialog"], [74, 3, 0, "duim-sheets:duim-sheets:caret-position", "caret-position"], [74, 3, 0, "duim-sheets:duim-sheets:caret-sheet", "caret-sheet"], [74, 3, 0, "duim-sheets:duim-sheets:caret-size", "caret-size"], [74, 3, 0, "duim-sheets:duim-sheets:caret-visible?", "caret-visible?"], [74, 3, 0, "duim-sheets:duim-sheets:caret-visible?-setter", "caret-visible?-setter"], [161, 3, 0, "collections:table-extensions:case-insensitive-equal", "case-insensitive-equal"], [161, 3, 0, "collections:table-extensions:case-insensitive-string-hash", "case-insensitive-string-hash"], [201, 3, 0, "sql:sql:catalog-from-name", "catalog-from-name"], [201, 3, 0, "sql:sql:catalog-name", "catalog-name"], [201, 3, 0, "sql:sql:catalogs", "catalogs"], [201, 3, 0, "sql:sql:catalogs-assist", "catalogs-assist"], [192, 3, 0, "dylan:dylan:ceiling", "ceiling"], [192, 4, 0, "dylan:dylan:ceiling([float])", "ceiling(<float>)"], [192, 4, 0, "dylan:dylan:ceiling([integer])", "ceiling(<integer>)"], [192, 4, 0, "dylan:dylan:ceiling([machine-number])", "ceiling(<machine-number>)"], [192, 3, 0, "dylan:dylan:ceiling/", "ceiling/"], [192, 4, 0, "dylan:dylan:ceiling/([integer],[integer])", "ceiling/(<integer>, <integer>)"], [192, 4, 0, "dylan:dylan:ceiling/([machine-number],[machine-number])", "ceiling/(<machine-number>, <machine-number>)"], [118, 3, 0, "access-path:access-path:character-as-tagged-remote-value", "character-as-tagged-remote-value"], [208, 3, 0, "win32-kernel:win32-kernel:check-win32-result", "check-win32-result"], [74, 3, 0, "duim-sheets:duim-sheets:child-containing-position", "child-containing-position"], [74, 3, 0, "duim-sheets:duim-sheets:children-overlapping-region", "children-overlapping-region"], [74, 3, 0, "duim-sheets:duim-sheets:choose-color", "choose-color"], [74, 3, 0, "duim-sheets:duim-sheets:choose-directory", "choose-directory"], [74, 3, 0, "duim-sheets:duim-sheets:choose-file", "choose-file"], [74, 3, 0, "duim-sheets:duim-sheets:choose-from-dialog", "choose-from-dialog"], [74, 3, 0, "duim-sheets:duim-sheets:choose-from-menu", "choose-from-menu"], [74, 3, 0, "duim-sheets:duim-sheets:choose-text-style", "choose-text-style"], [119, 3, 0, "debugger-manager:debugger-manager:class-breakpoint-class", "class-breakpoint-class"], [119, 3, 0, "debugger-manager:debugger-manager:class-breakpoint-size", "class-breakpoint-size"], [201, 3, 0, "sql:sql:class-code", "class-code"], [201, 3, 0, "sql:sql:class-origin", "class-origin"], [118, 3, 0, "access-path:access-path:classify-symbolic-name", "classify-symbolic-name"], [119, 3, 0, "debugger-manager:debugger-manager:clear-application-class-breakpoint", "clear-application-class-breakpoint"], [119, 3, 0, "debugger-manager:debugger-manager:clear-application-class-breakpoints", "clear-application-class-breakpoints"], [74, 3, 0, "duim-sheets:duim-sheets:clear-box", "clear-box"], [74, 3, 0, "duim-sheets:duim-sheets:clear-clipboard", "clear-clipboard"], [154, 3, 0, "c-ffi:c-ffi:clear-memory!", "clear-memory!"], [68, 3, 0, "duim:duim-frames:clear-progress-note", "clear-progress-note"], [74, 3, 0, "duim-sheets:duim-sheets:clipboard-data-available?", "clipboard-data-available?"], [74, 3, 0, "duim-sheets:duim-sheets:clipboard-owner", "clipboard-owner"], [74, 3, 0, "duim-sheets:duim-sheets:clipboard-sheet", "clipboard-sheet"], [184, 3, 0, "io:streams:close", "close"], [184, 4, 0, "io:streams:close([file-stream])", "close(<file-stream>)"], [118, 3, 0, "access-path:access-path:close-application", "close-application"], [74, 3, 0, "duim-sheets:duim-sheets:close-clipboard", "close-clipboard"], [71, 3, 0, "duim-graphics:duim-graphics:close-path", "close-path"], [201, 3, 0, "sql:sql:coercion-policy", "coercion-policy"], [201, 3, 0, "sql:sql:coercion-policy-setter", "coercion-policy-setter"], [157, 8, 0, "collections:collectors:collect", "collect"], [157, 8, 0, "collections:collectors:collect-first", "collect-first"], [157, 8, 0, "collections:collectors:collect-first-into", "collect-first-into"], [157, 8, 0, "collections:collectors:collect-into", "collect-into"], [157, 8, 0, "collections:collectors:collect-last", "collect-last"], [157, 8, 0, "collections:collectors:collect-last-into", "collect-last-into"], [157, 8, 0, "collections:collectors:collected", "collected"], [157, 8, 0, "collections:collectors:collecting", "collecting"], [161, 3, 0, "collections:table-extensions:collection-hash", "collection-hash"], [157, 3, 0, "collections:collectors:collector-protocol", "collector-protocol"], [66, 3, 0, "duim-dcs:duim-dcs:color-ihs", "color-ihs"], [66, 3, 0, "duim-dcs:duim-dcs:color-luminosity", "color-luminosity"], [66, 3, 0, "duim-dcs:duim-dcs:color-palette?", "color-palette?"], [66, 3, 0, "duim-dcs:duim-dcs:color-rgb", "color-rgb"], [66, 3, 0, "duim-dcs:duim-dcs:color?", "color?"], [162, 3, 0, "coloring-stream:coloring-stream:colorize-stream", "colorize-stream"], [201, 3, 0, "sql:sql:column-name", "column-name"], [68, 3, 0, "duim:duim-frames:command-arguments", "command-arguments"], [68, 3, 0, "duim:duim-frames:command-enabled?", "command-enabled?"], [68, 3, 0, "duim:duim-frames:command-enabled?-setter", "command-enabled?-setter"], [68, 3, 0, "duim:duim-frames:command-function", "command-function"], [201, 3, 0, "sql:sql:command-function", "command-function"], [68, 3, 0, "duim:duim-frames:command-table-accelerators", "command-table-accelerators"], [68, 3, 0, "duim:duim-frames:command-table-commands", "command-table-commands"], [68, 3, 0, "duim:duim-frames:command-table-menu", "command-table-menu"], [68, 3, 0, "duim:duim-frames:command-table-name", "command-table-name"], [68, 3, 0, "duim:duim-frames:command-table?", "command-table?"], [68, 3, 0, "duim:duim-frames:command-undoable?", "command-undoable?"], [68, 3, 0, "duim:duim-frames:command?", "command?"], [201, 3, 0, "sql:sql:commit-transaction", "commit-transaction"], [68, 3, 0, "duim:duim-frames:complete-from-generator", "complete-from-generator"], [68, 3, 0, "duim:duim-frames:complete-from-sequence", "complete-from-sequence"], [70, 3, 0, "duim-geometry:duim-geometry:compose-rotation-with-transform", "compose-rotation-with-transform"], [70, 3, 0, "duim-geometry:duim-geometry:compose-scaling-with-transform", "compose-scaling-with-transform"], [73, 3, 0, "duim-layouts:duim-layouts:compose-space", "compose-space"], [70, 3, 0, "duim-geometry:duim-geometry:compose-transform-with-rotation", "compose-transform-with-rotation"], [70, 3, 0, "duim-geometry:duim-geometry:compose-transform-with-scaling", "compose-transform-with-scaling"], [70, 3, 0, "duim-geometry:duim-geometry:compose-transform-with-translation", "compose-transform-with-translation"], [70, 3, 0, "duim-geometry:duim-geometry:compose-transforms", "compose-transforms"], [70, 3, 0, "duim-geometry:duim-geometry:compose-translation-with-transform", "compose-translation-with-transform"], [68, 3, 0, "duim:duim-frames:compute-next-page", "compute-next-page"], [68, 3, 0, "duim:duim-frames:compute-previous-page", "compute-previous-page"], [164, 3, 0, "common-dylan:common-extensions:concatenate!", "concatenate!"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:condition-block", "condition-block"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:condition-compilation-stage", "condition-compilation-stage"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:condition-context-id", "condition-context-id"], [201, 3, 0, "sql:sql:condition-number", "condition-number"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:condition-program-note-creator", "condition-program-note-creator"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:condition-source-location", "condition-source-location"], [164, 3, 0, "common-dylan:common-extensions:condition-to-string", "condition-to-string"], [177, 8, 0, "dylan:threads:conditional-update!", "conditional-update!"], [177, 8, 0, "dylan:threads:conditional-update!(extended)", "conditional-update! (extended)"], [201, 3, 0, "sql:sql:conditions-not-recorded?", "conditions-not-recorded?"], [201, 3, 0, "sql:sql:connect", "connect"], [201, 3, 0, "sql:sql:connect-with-prompt", "connect-with-prompt"], [201, 3, 0, "sql:sql:connect-with-prompt?", "connect-with-prompt?"], [201, 3, 0, "sql:sql:connection", "connection"], [118, 3, 0, "access-path:access-path:connection-hostname", "connection-hostname"], [118, 3, 0, "access-path:access-path:connection-hostname-setter", "connection-hostname-setter"], [201, 3, 0, "sql:sql:connection-name", "connection-name"], [118, 3, 0, "access-path:access-path:connection-network-address", "connection-network-address"], [118, 3, 0, "access-path:access-path:connection-open-tethers", "connection-open-tethers"], [118, 3, 0, "access-path:access-path:connection-open?", "connection-open?"], [118, 3, 0, "access-path:access-path:connection-open?-setter", "connection-open?-setter"], [118, 3, 0, "access-path:access-path:connection-password", "connection-password"], [118, 3, 0, "access-path:access-path:connection-process", "connection-process"], [118, 3, 0, "access-path:access-path:connection-process-list", "connection-process-list"], [118, 3, 0, "access-path:access-path:connection-process-list-setter", "connection-process-list-setter"], [118, 3, 0, "access-path:access-path:connection-process-setter", "connection-process-setter"], [201, 3, 0, "sql:sql:connection-setter", "connection-setter"], [201, 3, 0, "sql:sql:connections", "connections"], [201, 3, 0, "sql:sql:constraint-catalog", "constraint-catalog"], [201, 3, 0, "sql:sql:constraint-name", "constraint-name"], [201, 3, 0, "sql:sql:constraint-schema", "constraint-schema"], [201, 3, 0, "sql:sql:constraints", "constraints"], [68, 3, 0, "duim:duim-frames:contain", "contain"], [119, 3, 0, "debugger-manager:debugger-manager:context-library", "context-library"], [119, 3, 0, "debugger-manager:debugger-manager:context-library-setter", "context-library-setter"], [119, 3, 0, "debugger-manager:debugger-manager:context-module", "context-module"], [119, 3, 0, "debugger-manager:debugger-manager:context-module-setter", "context-module-setter"], [118, 3, 0, "access-path:access-path:continue", "continue"], [118, 3, 0, "access-path:access-path:continue-unhandled", "continue-unhandled"], [69, 3, 0, "duim:duim-gadgets:contract-node", "contract-node"], [66, 3, 0, "duim-dcs:duim-dcs:contrasting-colors-limit", "contrasting-colors-limit"], [66, 3, 0, "duim-dcs:duim-dcs:contrasting-dash-patterns-limit", "contrasting-dash-patterns-limit"], [119, 3, 0, "debugger-manager:debugger-manager:control-profiling", "control-profiling"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml", "convert-condition-slots-to-ppml"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml([condition])", "convert-condition-slots-to-ppml(<condition>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml([ignore-serious-note])", "convert-condition-slots-to-ppml(<ignore-serious-note>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml([performance-note])", "convert-condition-slots-to-ppml(<performance-note>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml([portability-note])", "convert-condition-slots-to-ppml(<portability-note>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml([program-error])", "convert-condition-slots-to-ppml(<program-error>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml([program-note])", "convert-condition-slots-to-ppml(<program-note>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml([program-restart])", "convert-condition-slots-to-ppml(<program-restart>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml([program-warning])", "convert-condition-slots-to-ppml(<program-warning>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml([run-time-error-warning])", "convert-condition-slots-to-ppml(<run-time-error-warning>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml([serious-program-warning])", "convert-condition-slots-to-ppml(<serious-program-warning>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml([style-warning])", "convert-condition-slots-to-ppml(<style-warning>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:convert-condition-slots-to-ppml(type-union([simple-condition],[simple-error],[simple-warning]))", "convert-condition-slots-to-ppml(type-union(<simple-condition>, <simple-error>, <simple-warning>))"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:convert-slots-to-ppml", "convert-slots-to-ppml"], [201, 3, 0, "sql:sql:convert-value", "convert-value"], [71, 3, 0, "duim-graphics:duim-graphics:copy-area", "copy-area"], [155, 3, 0, "collections:bit-set:copy-bit-set!", "copy-bit-set!"], [163, 3, 0, "common-dylan:byte-vector:copy-bytes", "copy-bytes"], [163, 4, 0, "common-dylan:byte-vector:copy-bytes([byte-string],[integer],[byte-string],[integer],[integer])", "copy-bytes(<byte-string>, <integer>, <byte-string>, <integer>, <integer>)"], [163, 4, 0, "common-dylan:byte-vector:copy-bytes([byte-string],[integer],[byte-vector],[integer],[integer])", "copy-bytes(<byte-string>, <integer>, <byte-vector>, <integer>, <integer>)"], [163, 4, 0, "common-dylan:byte-vector:copy-bytes([byte-vector],[integer],[byte-string],[integer],[integer])", "copy-bytes(<byte-vector>, <integer>, <byte-string>, <integer>, <integer>)"], [163, 4, 0, "common-dylan:byte-vector:copy-bytes([byte-vector],[integer],[byte-vector],[integer],[integer])", "copy-bytes(<byte-vector>, <integer>, <byte-vector>, <integer>, <integer>)"], [163, 4, 0, "common-dylan:byte-vector:copy-bytes([byte-vector],[integer],[simple-object-vector],[integer],[integer])", "copy-bytes(<byte-vector>, <integer>, <simple-object-vector>, <integer>, <integer>)"], [163, 4, 0, "common-dylan:byte-vector:copy-bytes([sequence],[integer],[sequence],[integer],[integer])", "copy-bytes(<sequence>, <integer>, <sequence>, <integer>, <integer>)"], [163, 4, 0, "common-dylan:byte-vector:copy-bytes([simple-object-vector],[integer],[byte-vector],[integer],[integer])", "copy-bytes(<simple-object-vector>, <integer>, <byte-vector>, <integer>, <integer>)"], [163, 4, 0, "common-dylan:byte-vector:copy-bytes([string],[integer],[string],[integer],[integer])", "copy-bytes(<string>, <integer>, <string>, <integer>, <integer>)"], [163, 4, 0, "common-dylan:byte-vector:copy-bytes([string],[integer],[vector],[integer],[integer])", "copy-bytes(<string>, <integer>, <vector>, <integer>, <integer>)"], [163, 4, 0, "common-dylan:byte-vector:copy-bytes([vector],[integer],[string],[integer],[integer])", "copy-bytes(<vector>, <integer>, <string>, <integer>, <integer>)"], [163, 4, 0, "common-dylan:byte-vector:copy-bytes([vector],[integer],[vector],[integer],[integer])", "copy-bytes(<vector>, <integer>, <vector>, <integer>, <integer>)"], [154, 3, 0, "c-ffi:c-ffi:copy-bytes!", "copy-bytes!"], [203, 3, 0, "system:file-system:copy-file", "copy-file"], [71, 3, 0, "duim-graphics:duim-graphics:copy-from-pixmap", "copy-from-pixmap"], [154, 3, 0, "c-ffi:c-ffi:copy-into!", "copy-into!"], [71, 3, 0, "duim-graphics:duim-graphics:copy-to-pixmap", "copy-to-pixmap"], [119, 3, 0, "debugger-manager:debugger-manager:corresponding-entry-tracepoint", "corresponding-entry-tracepoint"], [171, 3, 0, "common-dylan:transcendentals:cos", "cos"], [171, 4, 0, "common-dylan:transcendentals:cos([double-float])", "cos(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:cos([single-float])", "cos(<single-float>)"], [171, 3, 0, "common-dylan:transcendentals:cosh", "cosh"], [171, 4, 0, "common-dylan:transcendentals:cosh([double-float])", "cosh(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:cosh([single-float])", "cosh(<single-float>)"], [119, 3, 0, "debugger-manager:debugger-manager:cpu-time-increment", "cpu-time-increment"], [203, 3, 0, "system:file-system:create-directory", "create-directory"], [118, 3, 0, "access-path:access-path:create-thread-event-handler", "create-thread-event-handler"], [118, 4, 0, "access-path:access-path:create-thread-event-handler([access-path])", "create-thread-event-handler(<access-path>)"], [202, 3, 0, "system:date:current-date", "current-date"], [68, 3, 0, "duim:duim-frames:current-frame", "current-frame"], [73, 3, 0, "duim-layouts:duim-layouts:current-pane", "current-pane"], [206, 3, 0, "system:operating-system:current-process-id", "current-process-id"], [119, 3, 0, "debugger-manager:debugger-manager:current-runtime-context", "current-runtime-context"], [177, 3, 0, "dylan:threads:current-thread", "current-thread"], [177, 3, 0, "dylan:threads:current-thread-id", "current-thread-id"], [201, 3, 0, "sql:sql:cursor-name", "cursor-name"], [74, 3, 0, "duim-sheets:duim-sheets:cursor?", "cursor?"], [71, 3, 0, "duim-graphics:duim-graphics:curve-to", "curve-to"], [166, 3, 0, "common-dylan:machine-words:d%ceiling/", "d%ceiling/"], [166, 3, 0, "common-dylan:machine-words:d%divide", "d%divide"], [166, 3, 0, "common-dylan:machine-words:d%floor/", "d%floor/"], [166, 3, 0, "common-dylan:machine-words:d%round/", "d%round/"], [166, 3, 0, "common-dylan:machine-words:d%truncate/", "d%truncate/"], [201, 3, 0, "sql:sql:database", "database"], [201, 3, 0, "sql:sql:database-object-name", "database-object-name"], [201, 3, 0, "sql:sql:database-object-name-setter", "database-object-name-setter"], [201, 3, 0, "sql:sql:datatype-hints", "datatype-hints"], [201, 3, 0, "sql:sql:datatype-hints-setter", "datatype-hints-setter"], [202, 3, 0, "system:date:date-day", "date-day"], [202, 3, 0, "system:date:date-day-of-week", "date-day-of-week"], [202, 3, 0, "system:date:date-hours", "date-hours"], [202, 3, 0, "system:date:date-microseconds", "date-microseconds"], [202, 3, 0, "system:date:date-minutes", "date-minutes"], [202, 3, 0, "system:date:date-month", "date-month"], [202, 3, 0, "system:date:date-seconds", "date-seconds"], [202, 3, 0, "system:date:date-time-zone-offset", "date-time-zone-offset"], [202, 3, 0, "system:date:date-time-zone-offset-setter", "date-time-zone-offset-setter"], [202, 3, 0, "system:date:date-year", "date-year"], [201, 3, 0, "sql:sql:dbms", "dbms"], [201, 3, 0, "sql:sql:dbms-name", "dbms-name"], [201, 3, 0, "sql:sql:dbms-version", "dbms-version"], [164, 8, 0, "common-dylan:common-extensions:debug-assert", "debug-assert"], [164, 3, 0, "common-dylan:common-extensions:debug-message", "debug-message"], [119, 3, 0, "debugger-manager:debugger-manager:debug-target-access-path", "debug-target-access-path"], [119, 3, 0, "debugger-manager:debugger-manager:debug-target-compilation-context", "debug-target-compilation-context"], [119, 3, 0, "debugger-manager:debugger-manager:debug-target-compilation-context-setter", "debug-target-compilation-context-setter"], [119, 3, 0, "debugger-manager:debugger-manager:debug-target-symbol-table", "debug-target-symbol-table"], [202, 3, 0, "system:date:decode-date", "decode-date"], [202, 3, 0, "system:date:decode-duration", "decode-duration"], [202, 4, 0, "system:date:decode-duration([day/time-duration])", "decode-duration(<day/time-duration>)"], [202, 4, 0, "system:date:decode-duration([year/month-duration])", "decode-duration(<year/month-duration>)"], [66, 3, 0, "duim-dcs:duim-dcs:default-background", "default-background"], [66, 3, 0, "duim-dcs:duim-dcs:default-background-setter", "default-background-setter"], [201, 3, 0, "sql:sql:default-connection", "default-connection"], [201, 3, 0, "sql:sql:default-conversion", "default-conversion"], [201, 3, 0, "sql:sql:default-dbms", "default-dbms"], [201, 3, 0, "sql:sql:default-diagnostics-size", "default-diagnostics-size"], [66, 3, 0, "duim-dcs:duim-dcs:default-foreground", "default-foreground"], [66, 3, 0, "duim-dcs:duim-dcs:default-foreground-setter", "default-foreground-setter"], [164, 4, 0, "common-dylan:common-extensions:default-handler([warning])", "default-handler(<warning>)"], [201, 3, 0, "sql:sql:default-isolation-level", "default-isolation-level"], [164, 3, 0, "common-dylan:common-extensions:default-last-handler", "default-last-handler"], [74, 3, 0, "duim-sheets:duim-sheets:default-port", "default-port"], [74, 3, 0, "duim-sheets:duim-sheets:default-port-setter", "default-port-setter"], [66, 3, 0, "duim-dcs:duim-dcs:default-text-style", "default-text-style"], [66, 3, 0, "duim-dcs:duim-dcs:default-text-style-setter", "default-text-style-setter"], [201, 3, 0, "sql:sql:default-transaction-mode", "default-transaction-mode"], [201, 3, 0, "sql:sql:default-value", "default-value"], [154, 8, 0, "c-ffi:c-ffi:definec-address", "define C-address"], [154, 8, 0, "c-ffi:c-ffi:definec-callable-wrapper", "define C-callable-wrapper"], [154, 8, 0, "c-ffi:c-ffi:definec-function", "define C-function"], [154, 8, 0, "c-ffi:c-ffi:definec-mapped-subtype", "define C-mapped-subtype"], [154, 8, 0, "c-ffi:c-ffi:definec-pointer-type", "define C-pointer-type"], [154, 8, 0, "c-ffi:c-ffi:definec-struct", "define C-struct"], [154, 8, 0, "c-ffi:c-ffi:definec-subtype", "define C-subtype"], [154, 8, 0, "c-ffi:c-ffi:definec-union", "define C-union"], [154, 8, 0, "c-ffi:c-ffi:definec-variable", "define C-variable"], [68, 8, 0, "duim:duim-frames:definecommand-table", "define command-table"], [68, 8, 0, "duim:duim-frames:defineframe", "define frame"], [186, 8, 0, "dylan:dylan:definefunction", "define function"], [164, 8, 0, "common-dylan:common-extensions:definelast-handler", "define last-handler"], [154, 8, 0, "c-ffi:c-ffi:defineobjc-selector", "define objc-selector"], [73, 8, 0, "duim-layouts:duim-layouts:definepane", "define pane"], [164, 8, 0, "common-dylan:common-extensions:definetable", "define table"], [118, 3, 0, "access-path:access-path:definitely-no-source-locations", "definitely-no-source-locations"], [118, 3, 0, "access-path:access-path:definitely-no-source-locations-setter", "definitely-no-source-locations-setter"], [68, 3, 0, "duim:duim-frames:deiconify-frame", "deiconify-frame"], [203, 3, 0, "system:file-system:delete-directory", "delete-directory"], [203, 3, 0, "system:file-system:delete-file", "delete-file"], [119, 3, 0, "debugger-manager:debugger-manager:demangle-dylan-name", "demangle-dylan-name"], [119, 3, 0, "debugger-manager:debugger-manager:demangle-local-dylan-name", "demangle-local-dylan-name"], [119, 3, 0, "debugger-manager:debugger-manager:deregister-debug-point", "deregister-debug-point"], [118, 3, 0, "access-path:access-path:describe-debugger-connection", "describe-debugger-connection"], [118, 4, 0, "access-path:access-path:describe-debugger-connection([local-debugger-connection])", "describe-debugger-connection(<local-debugger-connection>)"], [118, 4, 0, "access-path:access-path:describe-debugger-connection([remote-debugger-connection])", "describe-debugger-connection(<remote-debugger-connection>)"], [119, 3, 0, "debugger-manager:debugger-manager:describe-dylan-object", "describe-dylan-object"], [154, 3, 0, "c-ffi:c-ffi:destroy", "destroy"], [68, 3, 0, "duim:duim-frames:destroy-frame", "destroy-frame"], [71, 3, 0, "duim-graphics:duim-graphics:destroy-pixmap", "destroy-pixmap"], [74, 3, 0, "duim-sheets:duim-sheets:destroy-port", "destroy-port"], [74, 3, 0, "duim-sheets:duim-sheets:destroy-sheet", "destroy-sheet"], [106, 5, 0, "dfmc-conditions:dfmc-conditions:dfmc-continue", "dfmc-continue"], [106, 5, 0, "dfmc-conditions:dfmc-conditions:dfmc-restart", "dfmc-restart"], [201, 3, 0, "sql:sql:diagnostic-to-string", "diagnostic-to-string"], [201, 3, 0, "sql:sql:diagnostics-size", "diagnostics-size"], [201, 3, 0, "sql:sql:diagnostics-size-setter", "diagnostics-size-setter"], [68, 3, 0, "duim:duim-frames:dialog-apply-button", "dialog-apply-button"], [68, 3, 0, "duim:duim-frames:dialog-apply-button-setter", "dialog-apply-button-setter"], [68, 3, 0, "duim:duim-frames:dialog-apply-callback", "dialog-apply-callback"], [68, 3, 0, "duim:duim-frames:dialog-back-button", "dialog-back-button"], [68, 3, 0, "duim:duim-frames:dialog-back-button-setter", "dialog-back-button-setter"], [68, 3, 0, "duim:duim-frames:dialog-back-callback", "dialog-back-callback"], [68, 3, 0, "duim:duim-frames:dialog-cancel-button", "dialog-cancel-button"], [68, 3, 0, "duim:duim-frames:dialog-cancel-button-setter", "dialog-cancel-button-setter"], [68, 3, 0, "duim:duim-frames:dialog-cancel-callback", "dialog-cancel-callback"], [68, 3, 0, "duim:duim-frames:dialog-cancel-callback-setter", "dialog-cancel-callback-setter"], [68, 3, 0, "duim:duim-frames:dialog-current-page", "dialog-current-page"], [68, 3, 0, "duim:duim-frames:dialog-current-page-setter", "dialog-current-page-setter"], [68, 3, 0, "duim:duim-frames:dialog-exit-button", "dialog-exit-button"], [68, 3, 0, "duim:duim-frames:dialog-exit-button-setter", "dialog-exit-button-setter"], [68, 3, 0, "duim:duim-frames:dialog-exit-callback", "dialog-exit-callback"], [68, 3, 0, "duim:duim-frames:dialog-exit-callback-setter", "dialog-exit-callback-setter"], [68, 3, 0, "duim:duim-frames:dialog-exit-enabled?", "dialog-exit-enabled?"], [68, 3, 0, "duim:duim-frames:dialog-exit-enabled?-setter", "dialog-exit-enabled?-setter"], [68, 3, 0, "duim:duim-frames:dialog-help-button", "dialog-help-button"], [68, 3, 0, "duim:duim-frames:dialog-help-button-setter", "dialog-help-button-setter"], [68, 3, 0, "duim:duim-frames:dialog-help-callback", "dialog-help-callback"], [68, 3, 0, "duim:duim-frames:dialog-next-button", "dialog-next-button"], [68, 3, 0, "duim:duim-frames:dialog-next-button-setter", "dialog-next-button-setter"], [68, 3, 0, "duim:duim-frames:dialog-next-callback", "dialog-next-callback"], [68, 3, 0, "duim:duim-frames:dialog-next-enabled?", "dialog-next-enabled?"], [68, 3, 0, "duim:duim-frames:dialog-next-enabled?-setter", "dialog-next-enabled?-setter"], [68, 3, 0, "duim:duim-frames:dialog-next-page", "dialog-next-page"], [68, 3, 0, "duim:duim-frames:dialog-next-page-setter", "dialog-next-page-setter"], [68, 3, 0, "duim:duim-frames:dialog-page-changed-callback", "dialog-page-changed-callback"], [68, 3, 0, "duim:duim-frames:dialog-page-changed-callback-setter", "dialog-page-changed-callback-setter"], [68, 3, 0, "duim:duim-frames:dialog-page-complete?", "dialog-page-complete?"], [68, 3, 0, "duim:duim-frames:dialog-page-complete?-setter", "dialog-page-complete?-setter"], [68, 3, 0, "duim:duim-frames:dialog-pages", "dialog-pages"], [68, 3, 0, "duim:duim-frames:dialog-pages-setter", "dialog-pages-setter"], [68, 3, 0, "duim:duim-frames:dialog-previous-page", "dialog-previous-page"], [68, 3, 0, "duim:duim-frames:dialog-previous-page-setter", "dialog-previous-page-setter"], [164, 3, 0, "common-dylan:common-extensions:difference", "difference"], [203, 3, 0, "system:file-system:directory-contents", "directory-contents"], [203, 3, 0, "system:file-system:directory-empty?", "directory-empty?"], [203, 4, 0, "system:file-system:directory-empty?([file-system-directory-locator])", "directory-empty?(<file-system-directory-locator>)"], [118, 3, 0, "access-path:access-path:disable-breakpoint", "disable-breakpoint"], [118, 3, 0, "access-path:access-path:disable-read-watchpoint", "disable-read-watchpoint"], [118, 3, 0, "access-path:access-path:disable-write-watchpoint", "disable-write-watchpoint"], [184, 3, 0, "io:streams:discard-input", "discard-input"], [184, 3, 0, "io:streams:discard-output", "discard-output"], [201, 3, 0, "sql:sql:disconnect", "disconnect"], [201, 3, 0, "sql:sql:disconnect-all", "disconnect-all"], [74, 3, 0, "duim-sheets:duim-sheets:display", "display"], [74, 3, 0, "duim-sheets:duim-sheets:display-depth", "display-depth"], [74, 3, 0, "duim-sheets:duim-sheets:display-height", "display-height"], [69, 3, 0, "duim:duim-gadgets:display-menu", "display-menu"], [74, 3, 0, "duim-sheets:duim-sheets:display-mm-height", "display-mm-height"], [74, 3, 0, "duim-sheets:duim-sheets:display-mm-width", "display-mm-width"], [74, 3, 0, "duim-sheets:duim-sheets:display-orientation", "display-orientation"], [74, 3, 0, "duim-sheets:duim-sheets:display-pixel-height", "display-pixel-height"], [74, 3, 0, "duim-sheets:duim-sheets:display-pixel-width", "display-pixel-width"], [74, 3, 0, "duim-sheets:duim-sheets:display-pixels-per-point", "display-pixels-per-point"], [68, 3, 0, "duim:duim-frames:display-progress-note", "display-progress-note"], [74, 3, 0, "duim-sheets:duim-sheets:display-units", "display-units"], [74, 3, 0, "duim-sheets:duim-sheets:display-width", "display-width"], [74, 3, 0, "duim-sheets:duim-sheets:display?", "display?"], [73, 3, 0, "duim-layouts:duim-layouts:do-allocate-space", "do-allocate-space"], [74, 3, 0, "duim-sheets:duim-sheets:do-children-containing-position", "do-children-containing-position"], [74, 3, 0, "duim-sheets:duim-sheets:do-children-overlapping-region", "do-children-overlapping-region"], [73, 3, 0, "duim-layouts:duim-layouts:do-compose-space", "do-compose-space"], [70, 3, 0, "duim-geometry:duim-geometry:do-coordinates", "do-coordinates"], [203, 3, 0, "system:file-system:do-directory", "do-directory"], [74, 3, 0, "duim-sheets:duim-sheets:do-displays", "do-displays"], [70, 3, 0, "duim-geometry:duim-geometry:do-endpoint-coordinates", "do-endpoint-coordinates"], [118, 3, 0, "access-path:access-path:do-frame-arguments", "do-frame-arguments"], [118, 3, 0, "access-path:access-path:do-frame-lexicals", "do-frame-lexicals"], [74, 3, 0, "duim-sheets:duim-sheets:do-frames", "do-frames"], [118, 3, 0, "access-path:access-path:do-libraries", "do-libraries"], [118, 3, 0, "access-path:access-path:do-open-access-connections", "do-open-access-connections"], [118, 3, 0, "access-path:access-path:do-open-debugger-connections", "do-open-debugger-connections"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:do-polygon-coordinates", "do-polygon-coordinates"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:do-polygon-segments", "do-polygon-segments"], [74, 3, 0, "duim-sheets:duim-sheets:do-ports", "do-ports"], [118, 3, 0, "access-path:access-path:do-processes", "do-processes"], [70, 3, 0, "duim-geometry:duim-geometry:do-regions", "do-regions"], [118, 3, 0, "access-path:access-path:do-registers", "do-registers"], [74, 3, 0, "duim-sheets:duim-sheets:do-sheet-children", "do-sheet-children"], [74, 3, 0, "duim-sheets:duim-sheets:do-sheet-tree", "do-sheet-tree"], [118, 3, 0, "access-path:access-path:do-symbols", "do-symbols"], [118, 3, 0, "access-path:access-path:do-threads", "do-threads"], [74, 3, 0, "duim-sheets:duim-sheets:do-with-drawing-options", "do-with-drawing-options"], [71, 3, 0, "duim-graphics:duim-graphics:do-with-output-to-pixmap", "do-with-output-to-pixmap"], [74, 3, 0, "duim-sheets:duim-sheets:do-with-pointer-grabbed", "do-with-pointer-grabbed"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:do-with-program-conditions", "do-with-program-conditions"], [74, 3, 0, "duim-sheets:duim-sheets:do-with-sheet-medium", "do-with-sheet-medium"], [74, 3, 0, "duim-sheets:duim-sheets:do-with-text-style", "do-with-text-style"], [74, 3, 0, "duim-sheets:duim-sheets:do-with-transform", "do-with-transform"], [201, 3, 0, "sql:sql:domain", "domain"], [173, 8, 0, "dood:dood:dood-class-definer", "dood-class-definer"], [173, 3, 0, "dood:dood:dood-close", "dood-close"], [173, 3, 0, "dood:dood:dood-commit", "dood-commit"], [173, 3, 0, "dood:dood:dood-disk-object", "dood-disk-object"], [173, 4, 0, "dood:dood:dood-disk-object([dood],[class])", "dood-disk-object(<dood>, <class>)"], [173, 4, 0, "dood:dood:dood-disk-object([dood],[dood-mapped-and-owned-object])", "dood-disk-object(<dood>, <dood-mapped-and-owned-object>)"], [173, 4, 0, "dood:dood:dood-disk-object([dood],[function])", "dood-disk-object(<dood>, <function>)"], [173, 4, 0, "dood:dood:dood-disk-object([dood],[generic-function])", "dood-disk-object(<dood>, <generic-function>)"], [173, 4, 0, "dood:dood:dood-disk-object([dood],[integer])", "dood-disk-object(<dood>, <integer>)"], [173, 4, 0, "dood:dood:dood-disk-object([dood],[object])", "dood-disk-object(<dood>, <object>)"], [173, 3, 0, "dood:dood:dood-lazy-forward-iteration-protocol", "dood-lazy-forward-iteration-protocol"], [173, 4, 0, "dood:dood:dood-name([dood])", "dood-name(<dood>)"], [173, 3, 0, "dood:dood:dood-reinitialize", "dood-reinitialize"], [173, 3, 0, "dood:dood:dood-restore-proxy", "dood-restore-proxy"], [173, 4, 0, "dood:dood:dood-restore-proxy([dood],[dood-class-program-binding-proxy])", "dood-restore-proxy(<dood>, <dood-class-program-binding-proxy>)"], [173, 4, 0, "dood:dood:dood-restore-proxy([dood],[dood-program-binding-proxy])", "dood-restore-proxy(<dood>, <dood-program-binding-proxy>)"], [173, 4, 0, "dood:dood:dood-restore-proxy([dood],[dood-program-module-proxy])", "dood-restore-proxy(<dood>, <dood-program-module-proxy>)"], [173, 3, 0, "dood:dood:dood-root", "dood-root"], [173, 3, 0, "dood:dood:dood-root-setter", "dood-root-setter"], [173, 3, 0, "dood:dood:dood-size", "dood-size"], [174, 3, 0, "common-dylan:finalization:drain-finalization-queue", "drain-finalization-queue"], [71, 3, 0, "duim-graphics:duim-graphics:draw-arrow", "draw-arrow"], [71, 3, 0, "duim-graphics:duim-graphics:draw-bezier-curve", "draw-bezier-curve"], [71, 3, 0, "duim-graphics:duim-graphics:draw-circle", "draw-circle"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:draw-design", "draw-design"], [71, 3, 0, "duim-graphics:duim-graphics:draw-ellipse", "draw-ellipse"], [71, 3, 0, "duim-graphics:duim-graphics:draw-image", "draw-image"], [71, 3, 0, "duim-graphics:duim-graphics:draw-line", "draw-line"], [71, 3, 0, "duim-graphics:duim-graphics:draw-lines", "draw-lines"], [71, 3, 0, "duim-graphics:duim-graphics:draw-oval", "draw-oval"], [71, 3, 0, "duim-graphics:duim-graphics:draw-pixmap", "draw-pixmap"], [71, 3, 0, "duim-graphics:duim-graphics:draw-point", "draw-point"], [71, 3, 0, "duim-graphics:duim-graphics:draw-points", "draw-points"], [71, 3, 0, "duim-graphics:duim-graphics:draw-polygon", "draw-polygon"], [71, 3, 0, "duim-graphics:duim-graphics:draw-rectangle", "draw-rectangle"], [71, 3, 0, "duim-graphics:duim-graphics:draw-rectangles", "draw-rectangles"], [71, 3, 0, "duim-graphics:duim-graphics:draw-regular-polygon", "draw-regular-polygon"], [71, 3, 0, "duim-graphics:duim-graphics:draw-text", "draw-text"], [71, 3, 0, "duim-graphics:duim-graphics:draw-triangle", "draw-triangle"], [118, 3, 0, "access-path:access-path:dylan-calculate-destination-for-step-into", "dylan-calculate-destination-for-step-into"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-call-frame?", "dylan-call-frame?"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-class-browser-information", "dylan-class-browser-information"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-class-slot-storage", "dylan-class-slot-storage"], [118, 3, 0, "access-path:access-path:dylan-current-function", "dylan-current-function"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-debug-message-string", "dylan-debug-message-string"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-error-message-string", "dylan-error-message-string"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-generic-function-methods", "dylan-generic-function-methods"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-keyword-name", "dylan-keyword-name"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-method-iep", "dylan-method-iep"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-method-specializers", "dylan-method-specializers"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-object-immediate-value", "dylan-object-immediate-value"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-object-size", "dylan-object-size"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-object?", "dylan-object?"], [118, 3, 0, "access-path:access-path:dylan-resume-thread", "dylan-resume-thread"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-slot-descriptor-getter", "dylan-slot-descriptor-getter"], [118, 3, 0, "access-path:access-path:dylan-thread-environment-block-address", "dylan-thread-environment-block-address"], [118, 3, 0, "access-path:access-path:dylan-thread-mv-buffer-live?", "dylan-thread-mv-buffer-live?"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-trace-entry-arguments", "dylan-trace-entry-arguments"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-trace-return-values", "dylan-trace-return-values"], [119, 3, 0, "debugger-manager:debugger-manager:dylan-value-unbound?", "dylan-value-unbound?"], [177, 8, 0, "dylan:threads:dynamic-bind", "dynamic-bind"], [177, 8, 0, "dylan:threads:dynamic-bind(extended)", "dynamic-bind (extended)"], [201, 3, 0, "sql:sql:dynamic-function", "dynamic-function"], [154, 4, 0, "c-ffi:c-ffi:element([c-statically-typed-pointer])", "element(<C-statically-typed-pointer>)"], [111, 4, 0, "skip-list:skip-list:element([skip-list])", "element(<skip-list>)"], [111, 3, 0, "skip-list:skip-list:element-sequence", "element-sequence"], [154, 4, 0, "c-ffi:c-ffi:element-setter([c-statically-typed-pointer])", "element-setter(<C-statically-typed-pointer>)"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:ellipse-center-point", "ellipse-center-point"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:ellipse-center-position", "ellipse-center-position"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:ellipse-end-angle", "ellipse-end-angle"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:ellipse-radii", "ellipse-radii"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:ellipse-start-angle", "ellipse-start-angle"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:ellipse?", "ellipse?"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:elliptical-arc?", "elliptical-arc?"], [155, 3, 0, "collections:bit-set:empty-bit-set!", "empty-bit-set!"], [118, 3, 0, "access-path:access-path:enable-breakpoint", "enable-breakpoint"], [118, 3, 0, "access-path:access-path:enable-read-watchpoint", "enable-read-watchpoint"], [118, 3, 0, "access-path:access-path:enable-write-watchpoint", "enable-write-watchpoint"], [202, 3, 0, "system:date:encode-date", "encode-date"], [202, 3, 0, "system:date:encode-day/time-duration", "encode-day/time-duration"], [202, 3, 0, "system:date:encode-year/month-duration", "encode-year/month-duration"], [71, 3, 0, "duim-graphics:duim-graphics:end-path", "end-path"], [201, 3, 0, "sql:sql:end-transaction", "end-transaction"], [119, 3, 0, "debugger-manager:debugger-manager:enquire-object", "enquire-object"], [119, 4, 0, "debugger-manager:debugger-manager:enquire-object([page-relative-object-table],[remote-value])", "enquire-object(<page-relative-object-table>, <remote-value>)"], [203, 3, 0, "system:file-system:ensure-directories-exist", "ensure-directories-exist"], [208, 3, 0, "win32-kernel:win32-kernel:ensure-no-win32-error", "ensure-no-win32-error"], [201, 3, 0, "sql:sql:environment-name", "environment-name"], [206, 3, 0, "system:operating-system:environment-variable", "environment-variable"], [206, 3, 0, "system:operating-system:environment-variable-setter", "environment-variable-setter"], [154, 3, 0, "c-ffi:c-ffi:equal-memory?", "equal-memory?"], [70, 3, 0, "duim-geometry:duim-geometry:even-scaling-transform?", "even-scaling-transform?"], [166, 3, 0, "common-dylan:machine-words:even?", "even?"], [192, 3, 0, "dylan:dylan:even?", "even?"], [192, 4, 0, "dylan:dylan:even?([complex])", "even?(<complex>)"], [192, 4, 0, "dylan:dylan:even?([integer])", "even?(<integer>)"], [74, 3, 0, "duim-sheets:duim-sheets:event-button", "event-button"], [74, 3, 0, "duim-sheets:duim-sheets:event-character", "event-character"], [68, 3, 0, "duim:duim-frames:event-destroy-frame?", "event-destroy-frame?"], [74, 3, 0, "duim-sheets:duim-sheets:event-key-name", "event-key-name"], [74, 3, 0, "duim-sheets:duim-sheets:event-matches-gesture?", "event-matches-gesture?"], [74, 3, 0, "duim-sheets:duim-sheets:event-modifier-state", "event-modifier-state"], [74, 3, 0, "duim-sheets:duim-sheets:event-pointer", "event-pointer"], [74, 3, 0, "duim-sheets:duim-sheets:event-region", "event-region"], [74, 3, 0, "duim-sheets:duim-sheets:event-sheet", "event-sheet"], [68, 3, 0, "duim:duim-frames:event-status-code", "event-status-code"], [74, 3, 0, "duim-sheets:duim-sheets:event-x", "event-x"], [74, 3, 0, "duim-sheets:duim-sheets:event-y", "event-y"], [74, 3, 0, "duim-sheets:duim-sheets:event?", "event?"], [118, 3, 0, "access-path:access-path:exception-name", "exception-name"], [201, 3, 0, "sql:sql:execute", "execute"], [68, 3, 0, "duim:duim-frames:execute-command", "execute-command"], [164, 3, 0, "common-dylan:common-extensions:exit-application", "exit-application"], [68, 3, 0, "duim:duim-frames:exit-dialog", "exit-dialog"], [68, 3, 0, "duim:duim-frames:exit-frame", "exit-frame"], [171, 3, 0, "common-dylan:transcendentals:exp", "exp"], [171, 4, 0, "common-dylan:transcendentals:exp([double-float])", "exp(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:exp([single-float])", "exp(<single-float>)"], [69, 3, 0, "duim:duim-gadgets:expand-node", "expand-node"], [203, 3, 0, "system:file-system:expand-pathname", "expand-pathname"], [203, 4, 0, "system:file-system:expand-pathname([file-system-locator])", "expand-pathname(<file-system-locator>)"], [203, 4, 0, "system:file-system:expand-pathname([string])", "expand-pathname(<string>)"], [154, 3, 0, "c-ffi:c-ffi:export-c-dylan-object", "export-C-Dylan-object"], [118, 3, 0, "access-path:access-path:extend-remote-library", "extend-remote-library"], [164, 3, 0, "common-dylan:common-extensions:false-or", "false-or"], [201, 3, 0, "sql:sql:fields", "fields"], [201, 3, 0, "sql:sql:fields-setter", "fields-setter"], [184, 3, 0, "io:streams:file-error-locator", "file-error-locator"], [203, 3, 0, "system:file-system:file-error-locator", "file-error-locator"], [203, 3, 0, "system:file-system:file-exists?", "file-exists?"], [205, 3, 0, "system:locators:file-locator", "file-locator"], [203, 3, 0, "system:file-system:file-properties", "file-properties"], [203, 3, 0, "system:file-system:file-property", "file-property"], [203, 3, 0, "system:file-system:file-property-setter", "file-property-setter"], [203, 3, 0, "system:file-system:file-system-separator", "file-system-separator"], [203, 3, 0, "system:file-system:file-type", "file-type"], [71, 3, 0, "duim-graphics:duim-graphics:fill-path", "fill-path"], [164, 3, 0, "common-dylan:common-extensions:fill-table!", "fill-table!"], [174, 3, 0, "common-dylan:finalization:finalize", "finalize"], [174, 4, 0, "common-dylan:finalization:finalize([object])", "finalize(<object>)"], [174, 3, 0, "common-dylan:finalization:finalize-when-unreachable", "finalize-when-unreachable"], [119, 3, 0, "debugger-manager:debugger-manager:find-closest-symbolic-name", "find-closest-symbolic-name"], [66, 3, 0, "duim-dcs:duim-dcs:find-color", "find-color"], [201, 3, 0, "sql:sql:find-diagnostic", "find-diagnostic"], [74, 3, 0, "duim-sheets:duim-sheets:find-display", "find-display"], [119, 3, 0, "debugger-manager:debugger-manager:find-dylan-name", "find-dylan-name"], [164, 3, 0, "common-dylan:common-extensions:find-element", "find-element"], [68, 3, 0, "duim:duim-frames:find-frame", "find-frame"], [74, 3, 0, "duim-sheets:duim-sheets:find-frame-manager", "find-frame-manager"], [69, 3, 0, "duim:duim-gadgets:find-item", "find-item"], [118, 3, 0, "access-path:access-path:find-lexical-variable", "find-lexical-variable"], [119, 3, 0, "debugger-manager:debugger-manager:find-library-called", "find-library-called"], [69, 3, 0, "duim:duim-gadgets:find-node", "find-node"], [118, 3, 0, "access-path:access-path:find-or-make-library", "find-or-make-library"], [74, 3, 0, "duim-sheets:duim-sheets:find-port", "find-port"], [118, 3, 0, "access-path:access-path:find-register", "find-register"], [118, 3, 0, "access-path:access-path:find-symbol", "find-symbol"], [118, 3, 0, "access-path:access-path:first-chance-exception?", "first-chance-exception?"], [118, 3, 0, "access-path:access-path:first-frame-breakable-address", "first-frame-breakable-address"], [118, 4, 0, "access-path:access-path:first-frame-breakable-address([remote-function])", "first-frame-breakable-address(<remote-function>)"], [118, 4, 0, "access-path:access-path:first-frame-breakable-address([remote-symbol])", "first-frame-breakable-address(<remote-symbol>)"], [119, 3, 0, "debugger-manager:debugger-manager:first-stack-frame", "first-stack-frame"], [70, 3, 0, "duim-geometry:duim-geometry:fix-coordinate", "fix-coordinate"], [74, 3, 0, "duim-sheets:duim-sheets:fixed-width-font?", "fixed-width-font?"], [164, 3, 0, "common-dylan:common-extensions:float-to-string", "float-to-string"], [192, 3, 0, "dylan:dylan:floor", "floor"], [192, 4, 0, "dylan:dylan:floor([float])", "floor(<float>)"], [192, 4, 0, "dylan:dylan:floor([integer])", "floor(<integer>)"], [192, 4, 0, "dylan:dylan:floor([machine-number])", "floor(<machine-number>)"], [192, 3, 0, "dylan:dylan:floor/", "floor/"], [192, 4, 0, "dylan:dylan:floor/([integer],[integer])", "floor/(<integer>, <integer>)"], [192, 4, 0, "dylan:dylan:floor/([machine-number],[machine-number])", "floor/(<machine-number>, <machine-number>)"], [74, 3, 0, "duim-sheets:duim-sheets:font-ascent", "font-ascent"], [74, 3, 0, "duim-sheets:duim-sheets:font-descent", "font-descent"], [74, 3, 0, "duim-sheets:duim-sheets:font-height", "font-height"], [74, 3, 0, "duim-sheets:duim-sheets:font-metrics", "font-metrics"], [74, 3, 0, "duim-sheets:duim-sheets:font-width", "font-width"], [192, 8, 0, "dylan:dylan:for", "for"], [74, 3, 0, "duim-sheets:duim-sheets:force-display", "force-display"], [180, 3, 0, "io:format-out:force-err", "force-err"], [180, 3, 0, "io:format-out:force-out", "force-out"], [184, 3, 0, "io:streams:force-output", "force-output"], [119, 3, 0, "debugger-manager:debugger-manager:foreign-object-type", "foreign-object-type"], [179, 3, 0, "io:format:format", "format"], [179, 4, 0, "io:format:format([byte-string])", "format(<byte-string>)"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:format-condition", "format-condition"], [202, 3, 0, "system:date:format-date", "format-date"], [180, 3, 0, "io:format-out:format-err", "format-err"], [180, 4, 0, "io:format-out:format-err([byte-string])", "format-err(<byte-string>)"], [167, 3, 0, "common-dylan:simple-format:format-out", "format-out"], [180, 3, 0, "io:format-out:format-out", "format-out"], [180, 4, 0, "io:format-out:format-out([byte-string])", "format-out(<byte-string>)"], [133, 3, 0, "ppml:ppml:format-to-ppml", "format-to-ppml"], [167, 3, 0, "common-dylan:simple-format:format-to-string", "format-to-string"], [179, 3, 0, "io:format:format-to-string", "format-to-string"], [179, 4, 0, "io:format:format-to-string([byte-string])", "format-to-string(<byte-string>)"], [164, 3, 0, "common-dylan:common-extensions:found?", "found?"], [68, 3, 0, "duim:duim-frames:frame-accelerators", "frame-accelerators"], [68, 3, 0, "duim:duim-frames:frame-accelerators-setter", "frame-accelerators-setter"], [68, 3, 0, "duim:duim-frames:frame-can-exit?", "frame-can-exit?"], [68, 3, 0, "duim:duim-frames:frame-command-table", "frame-command-table"], [68, 3, 0, "duim:duim-frames:frame-command-table-setter", "frame-command-table-setter"], [68, 3, 0, "duim:duim-frames:frame-default-button", "frame-default-button"], [68, 3, 0, "duim:duim-frames:frame-default-button-setter", "frame-default-button-setter"], [68, 3, 0, "duim:duim-frames:frame-event-queue", "frame-event-queue"], [68, 3, 0, "duim:duim-frames:frame-fixed-height?", "frame-fixed-height?"], [68, 3, 0, "duim:duim-frames:frame-fixed-width?", "frame-fixed-width?"], [68, 3, 0, "duim:duim-frames:frame-icon", "frame-icon"], [68, 3, 0, "duim:duim-frames:frame-icon-setter", "frame-icon-setter"], [68, 3, 0, "duim:duim-frames:frame-input-focus", "frame-input-focus"], [68, 3, 0, "duim:duim-frames:frame-input-focus-setter", "frame-input-focus-setter"], [118, 3, 0, "access-path:access-path:frame-instruction-address", "frame-instruction-address"], [68, 3, 0, "duim:duim-frames:frame-layout", "frame-layout"], [68, 3, 0, "duim:duim-frames:frame-layout-setter", "frame-layout-setter"], [74, 3, 0, "duim-sheets:duim-sheets:frame-manager", "frame-manager"], [74, 3, 0, "duim-sheets:duim-sheets:frame-manager-frames", "frame-manager-frames"], [74, 3, 0, "duim-sheets:duim-sheets:frame-manager-palette", "frame-manager-palette"], [74, 3, 0, "duim-sheets:duim-sheets:frame-manager-palette-setter", "frame-manager-palette-setter"], [74, 3, 0, "duim-sheets:duim-sheets:frame-manager?", "frame-manager?"], [68, 3, 0, "duim:duim-frames:frame-mapped?", "frame-mapped?"], [68, 3, 0, "duim:duim-frames:frame-mapped?-setter", "frame-mapped?-setter"], [68, 3, 0, "duim:duim-frames:frame-menu-bar", "frame-menu-bar"], [68, 3, 0, "duim:duim-frames:frame-menu-bar-setter", "frame-menu-bar-setter"], [68, 3, 0, "duim:duim-frames:frame-mode", "frame-mode"], [68, 3, 0, "duim:duim-frames:frame-owner", "frame-owner"], [68, 3, 0, "duim:duim-frames:frame-palette", "frame-palette"], [68, 3, 0, "duim:duim-frames:frame-palette-setter", "frame-palette-setter"], [118, 3, 0, "access-path:access-path:frame-pointer", "frame-pointer"], [68, 3, 0, "duim:duim-frames:frame-position", "frame-position"], [68, 3, 0, "duim:duim-frames:frame-resizable?", "frame-resizable?"], [118, 3, 0, "access-path:access-path:frame-return-address", "frame-return-address"], [68, 3, 0, "duim:duim-frames:frame-size", "frame-size"], [68, 3, 0, "duim:duim-frames:frame-state", "frame-state"], [68, 3, 0, "duim:duim-frames:frame-status-bar", "frame-status-bar"], [68, 3, 0, "duim:duim-frames:frame-status-bar-setter", "frame-status-bar-setter"], [68, 3, 0, "duim:duim-frames:frame-status-message", "frame-status-message"], [68, 3, 0, "duim:duim-frames:frame-status-message-setter", "frame-status-message-setter"], [68, 3, 0, "duim:duim-frames:frame-thread", "frame-thread"], [118, 3, 0, "access-path:access-path:frame-thread", "frame-thread"], [68, 3, 0, "duim:duim-frames:frame-title", "frame-title"], [68, 3, 0, "duim:duim-frames:frame-title-setter", "frame-title-setter"], [68, 3, 0, "duim:duim-frames:frame-tool-bar", "frame-tool-bar"], [68, 3, 0, "duim:duim-frames:frame-tool-bar-setter", "frame-tool-bar-setter"], [68, 3, 0, "duim:duim-frames:frame-top-level", "frame-top-level"], [68, 3, 0, "duim:duim-frames:frame?", "frame?"], [119, 3, 0, "debugger-manager:debugger-manager:free-remote-object", "free-remote-object"], [163, 4, 0, "common-dylan:byte-vector:from-hexstring([byte-string])", "from-hexstring(<byte-string>)"], [118, 3, 0, "access-path:access-path:full-lexicals-read?", "full-lexicals-read?"], [118, 3, 0, "access-path:access-path:full-lexicals-read?-setter", "full-lexicals-read?-setter"], [66, 3, 0, "duim-dcs:duim-dcs:fully-merged-text-style?", "fully-merged-text-style?"], [118, 3, 0, "access-path:access-path:function-bounding-addresses", "function-bounding-addresses"], [118, 3, 0, "access-path:access-path:function-recorded-source-locations", "function-recorded-source-locations"], [118, 3, 0, "access-path:access-path:function-source-location-map", "function-source-location-map"], [69, 3, 0, "duim:duim-gadgets:gadget-accelerator", "gadget-accelerator"], [69, 3, 0, "duim:duim-gadgets:gadget-accelerator-setter", "gadget-accelerator-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-activate-callback", "gadget-activate-callback"], [69, 3, 0, "duim:duim-gadgets:gadget-activate-callback-setter", "gadget-activate-callback-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-client", "gadget-client"], [69, 3, 0, "duim:duim-gadgets:gadget-client-setter", "gadget-client-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-command", "gadget-command"], [69, 3, 0, "duim:duim-gadgets:gadget-command-setter", "gadget-command-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-default?", "gadget-default?"], [69, 3, 0, "duim:duim-gadgets:gadget-default?-setter", "gadget-default?-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-documentation", "gadget-documentation"], [69, 3, 0, "duim:duim-gadgets:gadget-documentation-setter", "gadget-documentation-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-enabled?", "gadget-enabled?"], [69, 3, 0, "duim:duim-gadgets:gadget-enabled?-setter", "gadget-enabled?-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-id", "gadget-id"], [69, 3, 0, "duim:duim-gadgets:gadget-id-setter", "gadget-id-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-items", "gadget-items"], [69, 3, 0, "duim:duim-gadgets:gadget-items-setter", "gadget-items-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-key-press-callback", "gadget-key-press-callback"], [69, 3, 0, "duim:duim-gadgets:gadget-key-press-callback-setter", "gadget-key-press-callback-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-label", "gadget-label"], [69, 3, 0, "duim:duim-gadgets:gadget-label-key", "gadget-label-key"], [69, 3, 0, "duim:duim-gadgets:gadget-label-setter", "gadget-label-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-mnemonic", "gadget-mnemonic"], [69, 3, 0, "duim:duim-gadgets:gadget-mnemonic-setter", "gadget-mnemonic-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-orientation", "gadget-orientation"], [69, 3, 0, "duim:duim-gadgets:gadget-popup-menu-callback", "gadget-popup-menu-callback"], [69, 3, 0, "duim:duim-gadgets:gadget-popup-menu-callback-setter", "gadget-popup-menu-callback-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-ratios", "gadget-ratios"], [69, 3, 0, "duim:duim-gadgets:gadget-ratios-setter", "gadget-ratios-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-read-only?", "gadget-read-only?"], [69, 3, 0, "duim:duim-gadgets:gadget-scrolling-horizontally?", "gadget-scrolling-horizontally?"], [69, 3, 0, "duim:duim-gadgets:gadget-scrolling-vertically?", "gadget-scrolling-vertically?"], [69, 3, 0, "duim:duim-gadgets:gadget-selection", "gadget-selection"], [69, 3, 0, "duim:duim-gadgets:gadget-selection-mode", "gadget-selection-mode"], [69, 3, 0, "duim:duim-gadgets:gadget-selection-setter", "gadget-selection-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-slug-size", "gadget-slug-size"], [69, 3, 0, "duim:duim-gadgets:gadget-slug-size-setter", "gadget-slug-size-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-test", "gadget-test"], [69, 3, 0, "duim:duim-gadgets:gadget-text", "gadget-text"], [69, 3, 0, "duim:duim-gadgets:gadget-text-setter", "gadget-text-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-value", "gadget-value"], [69, 3, 0, "duim:duim-gadgets:gadget-value-changed-callback", "gadget-value-changed-callback"], [69, 3, 0, "duim:duim-gadgets:gadget-value-changed-callback-setter", "gadget-value-changed-callback-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-value-changing-callback", "gadget-value-changing-callback"], [69, 3, 0, "duim:duim-gadgets:gadget-value-changing-callback-setter", "gadget-value-changing-callback-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-value-key", "gadget-value-key"], [69, 3, 0, "duim:duim-gadgets:gadget-value-range", "gadget-value-range"], [69, 3, 0, "duim:duim-gadgets:gadget-value-range-setter", "gadget-value-range-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-value-setter", "gadget-value-setter"], [69, 3, 0, "duim:duim-gadgets:gadget-value-type", "gadget-value-type"], [69, 3, 0, "duim:duim-gadgets:gadget-x-alignment", "gadget-x-alignment"], [69, 3, 0, "duim:duim-gadgets:gadget-y-alignment", "gadget-y-alignment"], [69, 3, 0, "duim:duim-gadgets:gadget?", "gadget?"], [192, 3, 0, "dylan:dylan:gcd", "gcd"], [74, 3, 0, "duim-sheets:duim-sheets:gesture-button", "gesture-button"], [74, 3, 0, "duim-sheets:duim-sheets:gesture-keysym", "gesture-keysym"], [74, 3, 0, "duim-sheets:duim-sheets:gesture-modifier-state", "gesture-modifier-state"], [74, 3, 0, "duim-sheets:duim-sheets:gesture-spec-equal", "gesture-spec-equal"], [74, 3, 0, "duim-sheets:duim-sheets:get-clipboard-data-as", "get-clipboard-data-as"], [74, 3, 0, "duim-sheets:duim-sheets:get-default-background", "get-default-background"], [74, 3, 0, "duim-sheets:duim-sheets:get-default-foreground", "get-default-foreground"], [74, 3, 0, "duim-sheets:duim-sheets:get-default-text-style", "get-default-text-style"], [119, 3, 0, "debugger-manager:debugger-manager:get-inspector-values", "get-inspector-values"], [118, 3, 0, "access-path:access-path:get-process-page-fault-count", "get-process-page-fault-count"], [118, 3, 0, "access-path:access-path:get-process-wall-clock-time", "get-process-wall-clock-time"], [159, 3, 0, "collections:plists:get-property", "get-property"], [118, 3, 0, "access-path:access-path:get-thread-cpu-time", "get-thread-cpu-time"], [119, 3, 0, "debugger-manager:debugger-manager:handle-debug-point-event", "handle-debug-point-event"], [74, 3, 0, "duim-sheets:duim-sheets:handle-event", "handle-event"], [119, 3, 0, "debugger-manager:debugger-manager:handle-interactor-return", "handle-interactor-return"], [119, 4, 0, "debugger-manager:debugger-manager:handle-interactor-return([debug-target],[remote-thread],[object])", "handle-interactor-return(<debug-target>, <remote-thread>, <object>)"], [74, 3, 0, "duim-sheets:duim-sheets:handle-repaint", "handle-repaint"], [163, 4, 0, "common-dylan:byte-vector:hexstring([byte-vector])", "hexstring(<byte-vector>)"], [203, 3, 0, "system:file-system:home-directory", "home-directory"], [73, 8, 0, "duim-layouts:duim-layouts:horizontally", "horizontally"], [199, 3, 0, "network:sockets:host-address", "host-address"], [118, 3, 0, "access-path:access-path:host-machine", "host-machine"], [199, 3, 0, "network:sockets:host-name", "host-name"], [199, 3, 0, "network:sockets:host-order", "host-order"], [199, 4, 0, "network:sockets:host-order([ipv4-numeric-address])", "host-order(<ipv4-numeric-address>)"], [171, 3, 0, "common-dylan:transcendentals:hypot", "hypot"], [171, 4, 0, "common-dylan:transcendentals:hypot([double-float],[double-float])", "hypot(<double-float>, <double-float>)"], [171, 4, 0, "common-dylan:transcendentals:hypot([double-float],[single-float])", "hypot(<double-float>, <single-float>)"], [171, 4, 0, "common-dylan:transcendentals:hypot([single-float],[double-float])", "hypot(<single-float>, <double-float>)"], [171, 4, 0, "common-dylan:transcendentals:hypot([single-float],[single-float])", "hypot(<single-float>, <single-float>)"], [68, 3, 0, "duim:duim-frames:iconify-frame", "iconify-frame"], [70, 3, 0, "duim-geometry:duim-geometry:identity-transform?", "identity-transform?"], [164, 3, 0, "common-dylan:common-extensions:ignorable", "ignorable"], [164, 3, 0, "common-dylan:common-extensions:ignore", "ignore"], [171, 3, 0, "common-dylan:transcendentals:ilog2", "ilog2"], [66, 3, 0, "duim-dcs:duim-dcs:image-depth", "image-depth"], [66, 3, 0, "duim-dcs:duim-dcs:image-height", "image-height"], [66, 3, 0, "duim-dcs:duim-dcs:image-width", "image-width"], [66, 3, 0, "duim-dcs:duim-dcs:image?", "image?"], [154, 3, 0, "c-ffi:c-ffi:import-c-dylan-object", "import-C-Dylan-object"], [184, 3, 0, "io:streams:indent", "indent"], [118, 3, 0, "access-path:access-path:indexed-remote-value", "indexed-remote-value"], [201, 3, 0, "sql:sql:indexed-table", "indexed-table"], [201, 3, 0, "sql:sql:indexed-table-setter", "indexed-table-setter"], [201, 3, 0, "sql:sql:indexes", "indexes"], [201, 3, 0, "sql:sql:indicator-policy", "indicator-policy"], [155, 3, 0, "collections:bit-set:infinite?", "infinite?"], [118, 3, 0, "access-path:access-path:inform-profiling-started", "inform-profiling-started"], [118, 3, 0, "access-path:access-path:inform-profiling-stopped", "inform-profiling-stopped"], [119, 3, 0, "debugger-manager:debugger-manager:initialize-return-tracepoint", "initialize-return-tracepoint"], [119, 4, 0, "debugger-manager:debugger-manager:initialize-return-tracepoint([debug-target],[return-tracepoint],[remote-thread])", "initialize-return-tracepoint(<debug-target>, <return-tracepoint>, <remote-thread>)"], [118, 3, 0, "access-path:access-path:initialize-stack-trace", "initialize-stack-trace"], [66, 3, 0, "duim-dcs:duim-dcs:ink?", "ink?"], [184, 3, 0, "io:streams:inner-stream", "inner-stream"], [184, 3, 0, "io:streams:inner-stream-setter", "inner-stream-setter"], [201, 3, 0, "sql:sql:input-indicator", "input-indicator"], [201, 3, 0, "sql:sql:input-indicator-setter", "input-indicator-setter"], [201, 3, 0, "sql:sql:install-diagnostic", "install-diagnostic"], [201, 3, 0, "sql:sql:install-diagnostic-key", "install-diagnostic-key"], [201, 3, 0, "sql:sql:installation-functions", "installation-functions"], [119, 3, 0, "debugger-manager:debugger-manager:instruct-thread-to-step-into", "instruct-thread-to-step-into"], [119, 3, 0, "debugger-manager:debugger-manager:instruct-thread-to-step-out", "instruct-thread-to-step-out"], [119, 3, 0, "debugger-manager:debugger-manager:instruct-thread-to-step-over", "instruct-thread-to-step-over"], [119, 3, 0, "debugger-manager:debugger-manager:instruction-pointers", "instruction-pointers"], [118, 3, 0, "access-path:access-path:integer-as-tagged-remote-value", "integer-as-tagged-remote-value"], [164, 3, 0, "common-dylan:common-extensions:integer-to-string", "integer-to-string"], [192, 3, 0, "dylan:dylan:integral?", "integral?"], [192, 4, 0, "dylan:dylan:integral?([complex])", "integral?(<complex>)"], [192, 4, 0, "dylan:dylan:integral?([machine-number])", "integral?(<machine-number>)"], [119, 3, 0, "debugger-manager:debugger-manager:interaction-request-application-state", "interaction-request-application-state"], [119, 4, 0, "debugger-manager:debugger-manager:interaction-request-application-state([interactor-return-breakpoint])", "interaction-request-application-state(<interactor-return-breakpoint>)"], [119, 3, 0, "debugger-manager:debugger-manager:interaction-request-application-state-setter", "interaction-request-application-state-setter"], [119, 4, 0, "debugger-manager:debugger-manager:interaction-request-application-state-setter([object],[interactor-return-breakpoint])", "interaction-request-application-state-setter(<object>, <interactor-return-breakpoint>)"], [118, 3, 0, "access-path:access-path:interactive-thread-break-event-handler", "interactive-thread-break-event-handler"], [118, 4, 0, "access-path:access-path:interactive-thread-break-event-handler([access-path])", "interactive-thread-break-event-handler(<access-path>)"], [119, 3, 0, "debugger-manager:debugger-manager:interactive-thread-name", "interactive-thread-name"], [119, 3, 0, "debugger-manager:debugger-manager:interactor-deferred-id-table", "interactor-deferred-id-table"], [119, 3, 0, "debugger-manager:debugger-manager:interactor-return-values", "interactor-return-values"], [119, 3, 0, "debugger-manager:debugger-manager:interactor-transaction-id", "interactor-transaction-id"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:interesting-note?", "interesting-note?"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:interesting-note?([performance-note])", "interesting-note?(<performance-note>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:interesting-note?([program-note])", "interesting-note?(<program-note>)"], [118, 3, 0, "access-path:access-path:interpret-instruction-at-current-location", "interpret-instruction-at-current-location"], [119, 3, 0, "debugger-manager:debugger-manager:invalidate-page-relative-object-table", "invalidate-page-relative-object-table"], [119, 4, 0, "debugger-manager:debugger-manager:invalidate-page-relative-object-table([page-relative-object-table])", "invalidate-page-relative-object-table(<page-relative-object-table>)"], [70, 3, 0, "duim-geometry:duim-geometry:invert-transform", "invert-transform"], [70, 3, 0, "duim-geometry:duim-geometry:invertible-transform?", "invertible-transform?"], [201, 3, 0, "sql:sql:is-null?", "is-null?"], [201, 3, 0, "sql:sql:isolation-level", "isolation-level"], [201, 3, 0, "sql:sql:isolation-level-setter", "isolation-level-setter"], [171, 3, 0, "common-dylan:transcendentals:isqrt", "isqrt"], [69, 3, 0, "duim:duim-gadgets:item-object", "item-object"], [164, 8, 0, "common-dylan:common-extensions:iterate", "iterate"], [164, 3, 0, "common-dylan:common-extensions:join", "join"], [164, 4, 0, "common-dylan:common-extensions:join([sequence],[sequence])", "join(<sequence>, <sequence>)"], [177, 3, 0, "dylan:threads:join-thread", "join-thread"], [159, 3, 0, "collections:plists:keyword-sequence", "keyword-sequence"], [118, 3, 0, "access-path:access-path:kill-application", "kill-application"], [119, 3, 0, "debugger-manager:debugger-manager:kill-application", "kill-application"], [69, 8, 0, "duim:duim-gadgets:labelling", "labelling"], [118, 3, 0, "access-path:access-path:last-frame-breakable-address", "last-frame-breakable-address"], [118, 4, 0, "access-path:access-path:last-frame-breakable-address([remote-function])", "last-frame-breakable-address(<remote-function>)"], [118, 4, 0, "access-path:access-path:last-frame-breakable-address([remote-symbol])", "last-frame-breakable-address(<remote-symbol>)"], [73, 3, 0, "duim-layouts:duim-layouts:layout-border", "layout-border"], [73, 3, 0, "duim-layouts:duim-layouts:layout-border-setter", "layout-border-setter"], [73, 3, 0, "duim-layouts:duim-layouts:layout-equalize-heights?", "layout-equalize-heights?"], [73, 3, 0, "duim-layouts:duim-layouts:layout-equalize-widths?", "layout-equalize-widths?"], [68, 3, 0, "duim:duim-frames:layout-frame", "layout-frame"], [192, 3, 0, "dylan:dylan:lcm", "lcm"], [118, 3, 0, "access-path:access-path:lexical-variable-address", "lexical-variable-address"], [118, 3, 0, "access-path:access-path:lexical-variable-name", "lexical-variable-name"], [118, 3, 0, "access-path:access-path:lexicals", "lexicals"], [118, 3, 0, "access-path:access-path:lexicals-count", "lexicals-count"], [118, 3, 0, "access-path:access-path:lexicals-count-setter", "lexicals-count-setter"], [118, 3, 0, "access-path:access-path:lexicals-nub-table", "lexicals-nub-table"], [118, 3, 0, "access-path:access-path:lexicals-nub-table-setter", "lexicals-nub-table-setter"], [118, 3, 0, "access-path:access-path:lexicals-setter", "lexicals-setter"], [201, 3, 0, "sql:sql:liaison", "liaison"], [201, 3, 0, "sql:sql:liaison-setter", "liaison-setter"], [118, 3, 0, "access-path:access-path:library-base-address", "library-base-address"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:library-conditions-table", "library-conditions-table"], [118, 3, 0, "access-path:access-path:library-core-name", "library-core-name"], [118, 3, 0, "access-path:access-path:library-image-name", "library-image-name"], [118, 3, 0, "access-path:access-path:library-object-files", "library-object-files"], [118, 3, 0, "access-path:access-path:library-version", "library-version"], [166, 3, 0, "common-dylan:machine-words:limited", "limited"], [192, 3, 0, "dylan:dylan:limited", "limited"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:line-end-point", "line-end-point"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:line-end-position", "line-end-position"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:line-start-point", "line-start-point"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:line-start-position", "line-start-position"], [71, 3, 0, "duim-graphics:duim-graphics:line-to", "line-to"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:line?", "line?"], [118, 3, 0, "access-path:access-path:link-next", "link-next"], [118, 3, 0, "access-path:access-path:link-next-setter", "link-next-setter"], [118, 3, 0, "access-path:access-path:link-previous", "link-previous"], [118, 3, 0, "access-path:access-path:link-previous-setter", "link-previous-setter"], [203, 3, 0, "system:file-system:link-target", "link-target"], [69, 3, 0, "duim:duim-gadgets:list-control-icon-function", "list-control-icon-function"], [69, 3, 0, "duim:duim-gadgets:list-control-icon-function-setter", "list-control-icon-function-setter"], [69, 3, 0, "duim:duim-gadgets:list-control-view", "list-control-view"], [69, 3, 0, "duim:duim-gadgets:list-control-view-setter", "list-control-view-setter"], [205, 3, 0, "system:locators:list-locator", "list-locator"], [205, 4, 0, "system:locators:list-locator([file-system-directory-locator])", "list-locator(<file-system-directory-locator>)"], [119, 3, 0, "debugger-manager:debugger-manager:live-frame-lexical-variables", "live-frame-lexical-variables"], [206, 3, 0, "system:operating-system:load-library", "load-library"], [119, 3, 0, "debugger-manager:debugger-manager:load-runtime-component", "load-runtime-component"], [202, 3, 0, "system:date:local-daylight-savings-time?", "local-daylight-savings-time?"], [199, 3, 0, "network:sockets:local-host", "local-host"], [199, 3, 0, "network:sockets:local-host-name", "local-host-name"], [199, 3, 0, "network:sockets:local-port", "local-port"], [202, 3, 0, "system:date:local-time-zone-name", "local-time-zone-name"], [202, 3, 0, "system:date:local-time-zone-offset", "local-time-zone-offset"], [205, 3, 0, "system:locators:locator-address", "locator-address"], [205, 3, 0, "system:locators:locator-as-string", "locator-as-string"], [205, 3, 0, "system:locators:locator-base", "locator-base"], [205, 3, 0, "system:locators:locator-cgi-string", "locator-cgi-string"], [205, 3, 0, "system:locators:locator-default-port", "locator-default-port"], [205, 3, 0, "system:locators:locator-directory", "locator-directory"], [205, 3, 0, "system:locators:locator-error", "locator-error"], [205, 3, 0, "system:locators:locator-extension", "locator-extension"], [205, 3, 0, "system:locators:locator-file", "locator-file"], [205, 3, 0, "system:locators:locator-host", "locator-host"], [205, 3, 0, "system:locators:locator-index", "locator-index"], [205, 3, 0, "system:locators:locator-name", "locator-name"], [205, 4, 0, "system:locators:locator-name([mailto-locator])", "locator-name(<mailto-locator>)"], [205, 4, 0, "system:locators:locator-name([microsoft-unc-locator])", "locator-name(<microsoft-unc-locator>)"], [205, 4, 0, "system:locators:locator-name([microsoft-volume-locator])", "locator-name(<microsoft-volume-locator>)"], [205, 3, 0, "system:locators:locator-path", "locator-path"], [205, 3, 0, "system:locators:locator-relative?", "locator-relative?"], [205, 3, 0, "system:locators:locator-server", "locator-server"], [205, 3, 0, "system:locators:locator-volume", "locator-volume"], [184, 3, 0, "io:streams:lock-stream", "lock-stream"], [177, 8, 0, "dylan:threads:locked", "locked"], [171, 3, 0, "common-dylan:transcendentals:log", "log"], [171, 4, 0, "common-dylan:transcendentals:log([double-float])", "log(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:log([single-float])", "log(<single-float>)"], [192, 3, 0, "dylan:dylan:logand", "logand"], [192, 3, 0, "dylan:dylan:logbit?", "logbit?"], [206, 3, 0, "system:operating-system:login-group", "login-group"], [206, 3, 0, "system:operating-system:login-name", "login-name"], [192, 3, 0, "dylan:dylan:logior", "logior"], [171, 3, 0, "common-dylan:transcendentals:logn", "logn"], [192, 3, 0, "dylan:dylan:lognot", "lognot"], [192, 3, 0, "dylan:dylan:logxor", "logxor"], [68, 3, 0, "duim:duim-frames:lower-frame", "lower-frame"], [74, 3, 0, "duim-sheets:duim-sheets:lower-sheet", "lower-sheet"], [206, 3, 0, "system:operating-system:machine-concurrent-thread-count", "machine-concurrent-thread-count"], [66, 3, 0, "duim-dcs:duim-dcs:make", "make"], [184, 4, 0, "io:streams:make([byte-string-stream])", "make(<byte-string-stream>)"], [202, 4, 0, "system:date:make([date])", "make(<date>)"], [203, 4, 0, "system:file-system:make([file-stream])", "make(<file-stream>)"], [68, 4, 0, "duim:duim-frames:make([frame])", "make(<frame>)"], [184, 4, 0, "io:streams:make([sequence-stream])", "make(<sequence-stream>)"], [73, 4, 0, "duim-layouts:duim-layouts:make([space-requirement])", "make(<space-requirement>)"], [184, 4, 0, "io:streams:make([string-stream])", "make(<string-stream>)"], [184, 4, 0, "io:streams:make([unicode-string-stream])", "make(<unicode-string-stream>)"], [154, 4, 0, "c-ffi:c-ffi:make(subclass([c-pointer]))", "make(subclass(<C-pointer>))"], [70, 3, 0, "duim-geometry:duim-geometry:make-3-point-transform", "make-3-point-transform"], [118, 3, 0, "access-path:access-path:make-access-connection", "make-access-connection"], [70, 3, 0, "duim-geometry:duim-geometry:make-bounding-box", "make-bounding-box"], [66, 3, 0, "duim-dcs:duim-dcs:make-color-for-contrasting-color", "make-color-for-contrasting-color"], [66, 3, 0, "duim-dcs:duim-dcs:make-contrasting-colors", "make-contrasting-colors"], [66, 3, 0, "duim-dcs:duim-dcs:make-contrasting-dash-patterns", "make-contrasting-dash-patterns"], [201, 3, 0, "sql:sql:make-dbms-specific", "make-dbms-specific"], [66, 3, 0, "duim-dcs:duim-dcs:make-device-font", "make-device-font"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:make-ellipse", "make-ellipse"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:make-elliptical-arc", "make-elliptical-arc"], [74, 3, 0, "duim-sheets:duim-sheets:make-frame-manager", "make-frame-manager"], [66, 3, 0, "duim-dcs:duim-dcs:make-gray-color", "make-gray-color"], [66, 3, 0, "duim-dcs:duim-dcs:make-ihs-color", "make-ihs-color"], [69, 3, 0, "duim:duim-gadgets:make-item", "make-item"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:make-line", "make-line"], [68, 3, 0, "duim:duim-frames:make-menu-from-command-table-menu", "make-menu-from-command-table-menu"], [69, 3, 0, "duim:duim-gadgets:make-menu-from-items", "make-menu-from-items"], [68, 3, 0, "duim:duim-frames:make-menus-from-command-table", "make-menus-from-command-table"], [74, 3, 0, "duim-sheets:duim-sheets:make-modifier-state", "make-modifier-state"], [69, 3, 0, "duim:duim-gadgets:make-node", "make-node"], [66, 3, 0, "duim-dcs:duim-dcs:make-palette", "make-palette"], [74, 3, 0, "duim-sheets:duim-sheets:make-pane", "make-pane"], [66, 3, 0, "duim-dcs:duim-dcs:make-pattern", "make-pattern"], [71, 3, 0, "duim-graphics:duim-graphics:make-pixmap", "make-pixmap"], [70, 3, 0, "duim-geometry:duim-geometry:make-point", "make-point"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:make-polygon", "make-polygon"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:make-polyline", "make-polyline"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:make-program-note-filter", "make-program-note-filter"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:make-rectangle", "make-rectangle"], [70, 3, 0, "duim-geometry:duim-geometry:make-reflection-transform", "make-reflection-transform"], [119, 3, 0, "debugger-manager:debugger-manager:make-return-tracepoint", "make-return-tracepoint"], [119, 4, 0, "debugger-manager:debugger-manager:make-return-tracepoint([debug-target],[entry-tracepoint],[remote-thread])", "make-return-tracepoint(<debug-target>, <entry-tracepoint>, <remote-thread>)"], [119, 4, 0, "debugger-manager:debugger-manager:make-return-tracepoint([debug-target],[starting-dynamic-initialization],[remote-thread])", "make-return-tracepoint(<debug-target>, <starting-dynamic-initialization>, <remote-thread>)"], [66, 3, 0, "duim-dcs:duim-dcs:make-rgb-color", "make-rgb-color"], [70, 3, 0, "duim-geometry:duim-geometry:make-rotation-transform", "make-rotation-transform"], [70, 3, 0, "duim-geometry:duim-geometry:make-scaling-transform", "make-scaling-transform"], [66, 3, 0, "duim-dcs:duim-dcs:make-stencil", "make-stencil"], [66, 3, 0, "duim-dcs:duim-dcs:make-text-style", "make-text-style"], [70, 3, 0, "duim-geometry:duim-geometry:make-transform", "make-transform"], [70, 3, 0, "duim-geometry:duim-geometry:make-translation-transform", "make-translation-transform"], [119, 3, 0, "debugger-manager:debugger-manager:manage-running-application", "manage-running-application"], [119, 3, 0, "debugger-manager:debugger-manager:mangle-in-context", "mangle-in-context"], [119, 3, 0, "debugger-manager:debugger-manager:mangle-local-dylan-name", "mangle-local-dylan-name"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:maybe-note", "maybe-note"], [74, 3, 0, "duim-sheets:duim-sheets:medium-background", "medium-background"], [74, 3, 0, "duim-sheets:duim-sheets:medium-background-setter", "medium-background-setter"], [74, 3, 0, "duim-sheets:duim-sheets:medium-brush", "medium-brush"], [74, 3, 0, "duim-sheets:duim-sheets:medium-brush-setter", "medium-brush-setter"], [74, 3, 0, "duim-sheets:duim-sheets:medium-clipping-region", "medium-clipping-region"], [74, 3, 0, "duim-sheets:duim-sheets:medium-clipping-region-setter", "medium-clipping-region-setter"], [74, 3, 0, "duim-sheets:duim-sheets:medium-default-text-style", "medium-default-text-style"], [74, 3, 0, "duim-sheets:duim-sheets:medium-default-text-style-setter", "medium-default-text-style-setter"], [74, 3, 0, "duim-sheets:duim-sheets:medium-drawable", "medium-drawable"], [74, 3, 0, "duim-sheets:duim-sheets:medium-drawable-setter", "medium-drawable-setter"], [74, 3, 0, "duim-sheets:duim-sheets:medium-foreground", "medium-foreground"], [74, 3, 0, "duim-sheets:duim-sheets:medium-foreground-setter", "medium-foreground-setter"], [74, 3, 0, "duim-sheets:duim-sheets:medium-merged-text-style", "medium-merged-text-style"], [74, 3, 0, "duim-sheets:duim-sheets:medium-pen", "medium-pen"], [74, 3, 0, "duim-sheets:duim-sheets:medium-pen-setter", "medium-pen-setter"], [74, 3, 0, "duim-sheets:duim-sheets:medium-pixmap", "medium-pixmap"], [74, 3, 0, "duim-sheets:duim-sheets:medium-pixmap-setter", "medium-pixmap-setter"], [74, 3, 0, "duim-sheets:duim-sheets:medium-sheet", "medium-sheet"], [74, 3, 0, "duim-sheets:duim-sheets:medium-text-style", "medium-text-style"], [74, 3, 0, "duim-sheets:duim-sheets:medium-text-style-setter", "medium-text-style-setter"], [74, 3, 0, "duim-sheets:duim-sheets:medium-transform", "medium-transform"], [74, 3, 0, "duim-sheets:duim-sheets:medium-transform-setter", "medium-transform-setter"], [74, 3, 0, "duim-sheets:duim-sheets:medium?", "medium?"], [155, 3, 0, "collections:bit-set:member?", "member?"], [68, 3, 0, "duim:duim-frames:menu-item-accelerator", "menu-item-accelerator"], [68, 3, 0, "duim:duim-frames:menu-item-mnemonic", "menu-item-mnemonic"], [68, 3, 0, "duim:duim-frames:menu-item-name", "menu-item-name"], [68, 3, 0, "duim:duim-frames:menu-item-options", "menu-item-options"], [68, 3, 0, "duim:duim-frames:menu-item-type", "menu-item-type"], [68, 3, 0, "duim:duim-frames:menu-item-value", "menu-item-value"], [69, 3, 0, "duim:duim-gadgets:menu-owner", "menu-owner"], [190, 3, 0, "dylan:dylan:merge-hash-ids", "merge-hash-ids"], [205, 3, 0, "system:locators:merge-locators", "merge-locators"], [66, 3, 0, "duim-dcs:duim-dcs:merge-text-styles", "merge-text-styles"], [201, 3, 0, "sql:sql:message-text", "message-text"], [74, 3, 0, "duim-sheets:duim-sheets:modifier-key-index", "modifier-key-index"], [74, 3, 0, "duim-sheets:duim-sheets:modifier-key-index-name", "modifier-key-index-name"], [192, 3, 0, "dylan:dylan:modulo", "modulo"], [192, 4, 0, "dylan:dylan:modulo([integer],[integer])", "modulo(<integer>, <integer>)"], [192, 4, 0, "dylan:dylan:modulo([machine-number],[machine-number])", "modulo(<machine-number>, <machine-number>)"], [71, 3, 0, "duim-graphics:duim-graphics:move-to", "move-to"], [68, 3, 0, "duim:duim-frames:move-to-next-page", "move-to-next-page"], [68, 3, 0, "duim:duim-frames:move-to-previous-page", "move-to-previous-page"], [201, 3, 0, "sql:sql:multiple-connections?", "multiple-connections?"], [118, 3, 0, "access-path:access-path:nearest-source-locations", "nearest-source-locations"], [118, 3, 0, "access-path:access-path:nearest-symbols", "nearest-symbols"], [192, 3, 0, "dylan:dylan:negative", "negative"], [192, 4, 0, "dylan:dylan:negative([complex])", "negative(<complex>)"], [192, 4, 0, "dylan:dylan:negative([float])", "negative(<float>)"], [192, 4, 0, "dylan:dylan:negative([integer])", "negative(<integer>)"], [166, 3, 0, "common-dylan:machine-words:negative?", "negative?"], [192, 3, 0, "dylan:dylan:negative?", "negative?"], [192, 4, 0, "dylan:dylan:negative?([complex])", "negative?(<complex>)"], [192, 4, 0, "dylan:dylan:negative?([machine-number])", "negative?(<machine-number>)"], [199, 3, 0, "network:sockets:network-order", "network-order"], [199, 4, 0, "network:sockets:network-order([ipv4-numeric-address])", "network-order(<ipv4-numeric-address>)"], [184, 3, 0, "io:streams:new-line", "new-line"], [201, 3, 0, "sql:sql:next-dbms-diagnostic", "next-dbms-diagnostic"], [118, 3, 0, "access-path:access-path:next-frame", "next-frame"], [118, 3, 0, "access-path:access-path:next-instruction", "next-instruction"], [119, 3, 0, "debugger-manager:debugger-manager:next-stack-frame", "next-stack-frame"], [69, 3, 0, "duim:duim-gadgets:node-children", "node-children"], [69, 3, 0, "duim:duim-gadgets:node-children-setter", "node-children-setter"], [69, 3, 0, "duim:duim-gadgets:node-expanded?", "node-expanded?"], [69, 3, 0, "duim:duim-gadgets:node-object", "node-object"], [69, 3, 0, "duim:duim-gadgets:node-parents", "node-parents"], [69, 3, 0, "duim:duim-gadgets:node-state", "node-state"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:note", "note"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:note(subclass([program-condition]))", "note(subclass(<program-condition>))"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:note-during", "note-during"], [68, 3, 0, "duim:duim-frames:note-progress", "note-progress"], [74, 3, 0, "duim-sheets:duim-sheets:notify-user", "notify-user"], [68, 8, 0, "duim:duim-frames:noting-progress", "noting-progress"], [154, 3, 0, "c-ffi:c-ffi:null-pointer", "null-pointer"], [154, 3, 0, "c-ffi:c-ffi:null-pointer?", "null-pointer?"], [201, 3, 0, "sql:sql:nullable?", "nullable?"], [118, 3, 0, "access-path:access-path:number-of-active-threads", "number-of-active-threads"], [118, 3, 0, "access-path:access-path:number-of-frames-on-stack", "number-of-frames-on-stack"], [119, 3, 0, "debugger-manager:debugger-manager:number-of-lexical-variables", "number-of-lexical-variables"], [118, 3, 0, "access-path:access-path:number-of-locations", "number-of-locations"], [199, 3, 0, "network:sockets:numeric-host-address", "numeric-host-address"], [190, 3, 0, "dylan:dylan:object-hash", "object-hash"], [119, 3, 0, "debugger-manager:debugger-manager:object-requires-registration?", "object-requires-registration?"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:obsolete-condition?", "obsolete-condition?"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:obsolete-condition?([program-condition])", "obsolete-condition?(<program-condition>)"], [119, 3, 0, "debugger-manager:debugger-manager:obtain-component-name", "obtain-component-name"], [119, 4, 0, "debugger-manager:debugger-manager:obtain-component-name([debug-target],[string])", "obtain-component-name(<debug-target>, <string>)"], [166, 3, 0, "common-dylan:machine-words:odd?", "odd?"], [192, 3, 0, "dylan:dylan:odd?", "odd?"], [192, 4, 0, "dylan:dylan:odd?([complex])", "odd?(<complex>)"], [192, 4, 0, "dylan:dylan:odd?([integer])", "odd?(<integer>)"], [118, 3, 0, "access-path:access-path:older-stack-frame?", "older-stack-frame?"], [164, 3, 0, "common-dylan:common-extensions:one-of", "one-of"], [74, 3, 0, "duim-sheets:duim-sheets:open-clipboard", "open-clipboard"], [205, 3, 0, "system:locators:open-locator", "open-locator"], [184, 3, 0, "io:streams:outer-stream", "outer-stream"], [184, 3, 0, "io:streams:outer-stream-setter", "outer-stream-setter"], [201, 3, 0, "sql:sql:output-indicator", "output-indicator"], [201, 3, 0, "sql:sql:output-indicator-setter", "output-indicator-setter"], [177, 3, 0, "dylan:threads:owned?", "owned?"], [177, 4, 0, "dylan:threads:owned?([read-write-lock])", "owned?(<read-write-lock>)"], [177, 4, 0, "dylan:threads:owned?([recursive-lock])", "owned?(<recursive-lock>)"], [177, 4, 0, "dylan:threads:owned?([simple-lock])", "owned?(<simple-lock>)"], [206, 3, 0, "system:operating-system:owner-name", "owner-name"], [206, 3, 0, "system:operating-system:owner-organization", "owner-organization"], [118, 3, 0, "access-path:access-path:page-execute-permission?", "page-execute-permission?"], [119, 3, 0, "debugger-manager:debugger-manager:page-faults-increment", "page-faults-increment"], [118, 3, 0, "access-path:access-path:page-read-permission?", "page-read-permission?"], [118, 3, 0, "access-path:access-path:page-relative-address", "page-relative-address"], [118, 3, 0, "access-path:access-path:page-write-permission?", "page-write-permission?"], [66, 3, 0, "duim-dcs:duim-dcs:palette?", "palette?"], [73, 3, 0, "duim-layouts:duim-layouts:pane-display-function", "pane-display-function"], [73, 3, 0, "duim-layouts:duim-layouts:pane-layout", "pane-layout"], [206, 3, 0, "system:operating-system:parent-process-id", "parent-process-id"], [202, 3, 0, "system:date:parse-date-string", "parse-date-string"], [202, 3, 0, "system:date:parse-iso8601-string", "parse-iso8601-string"], [118, 3, 0, "access-path:access-path:partial-lexicals-read?", "partial-lexicals-read?"], [118, 3, 0, "access-path:access-path:partial-lexicals-read?-setter", "partial-lexicals-read?-setter"], [70, 3, 0, "duim-geometry:duim-geometry:path?", "path?"], [66, 3, 0, "duim-dcs:duim-dcs:pattern?", "pattern?"], [184, 3, 0, "io:streams:peek", "peek"], [66, 3, 0, "duim-dcs:duim-dcs:pen-cap-shape", "pen-cap-shape"], [66, 3, 0, "duim-dcs:duim-dcs:pen-dashes", "pen-dashes"], [66, 3, 0, "duim-dcs:duim-dcs:pen-joint-shape", "pen-joint-shape"], [66, 3, 0, "duim-dcs:duim-dcs:pen-units", "pen-units"], [66, 3, 0, "duim-dcs:duim-dcs:pen-width", "pen-width"], [66, 3, 0, "duim-dcs:duim-dcs:pen?", "pen?"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:performance-note-definer", "performance-note-definer"], [71, 3, 0, "duim-graphics:duim-graphics:pixmap?", "pixmap?"], [70, 3, 0, "duim-geometry:duim-geometry:point-position", "point-position"], [70, 3, 0, "duim-geometry:duim-geometry:point-x", "point-x"], [70, 3, 0, "duim-geometry:duim-geometry:point-y", "point-y"], [70, 3, 0, "duim-geometry:duim-geometry:point?", "point?"], [154, 3, 0, "c-ffi:c-ffi:pointer-address", "pointer-address"], [74, 3, 0, "duim-sheets:duim-sheets:pointer-button-state", "pointer-button-state"], [154, 3, 0, "c-ffi:c-ffi:pointer-cast", "pointer-cast"], [74, 3, 0, "duim-sheets:duim-sheets:pointer-cursor", "pointer-cursor"], [74, 3, 0, "duim-sheets:duim-sheets:pointer-cursor-setter", "pointer-cursor-setter"], [74, 3, 0, "duim-sheets:duim-sheets:pointer-position", "pointer-position"], [74, 3, 0, "duim-sheets:duim-sheets:pointer-sheet", "pointer-sheet"], [154, 3, 0, "c-ffi:c-ffi:pointer-value", "pointer-value"], [154, 3, 0, "c-ffi:c-ffi:pointer-value-address", "pointer-value-address"], [154, 3, 0, "c-ffi:c-ffi:pointer-value-setter", "pointer-value-setter"], [74, 3, 0, "duim-sheets:duim-sheets:pointer?", "pointer?"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:polygon-coordinates", "polygon-coordinates"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:polygon-points", "polygon-points"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:polygon?", "polygon?"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:polyline-closed?", "polyline-closed?"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:polyline?", "polyline?"], [74, 3, 0, "duim-sheets:duim-sheets:port", "port"], [74, 3, 0, "duim-sheets:duim-sheets:port-modifier-state", "port-modifier-state"], [74, 3, 0, "duim-sheets:duim-sheets:port-name", "port-name"], [74, 3, 0, "duim-sheets:duim-sheets:port-pointer", "port-pointer"], [74, 3, 0, "duim-sheets:duim-sheets:port-server-path", "port-server-path"], [74, 3, 0, "duim-sheets:duim-sheets:port-type", "port-type"], [74, 3, 0, "duim-sheets:duim-sheets:port?", "port?"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:portability-note-definer", "portability-note-definer"], [164, 3, 0, "common-dylan:common-extensions:position", "position"], [166, 3, 0, "common-dylan:machine-words:positive?", "positive?"], [192, 3, 0, "dylan:dylan:positive?", "positive?"], [192, 4, 0, "dylan:dylan:positive?([complex])", "positive?(<complex>)"], [192, 4, 0, "dylan:dylan:positive?([machine-number])", "positive?(<machine-number>)"], [201, 3, 0, "sql:sql:possible-explanation", "possible-explanation"], [133, 3, 0, "ppml:ppml:ppml-block", "ppml-block"], [133, 3, 0, "ppml:ppml:ppml-break", "ppml-break"], [133, 3, 0, "ppml:ppml:ppml-browser-aware-object", "ppml-browser-aware-object"], [133, 3, 0, "ppml:ppml:ppml-format-string", "ppml-format-string"], [133, 3, 0, "ppml:ppml:ppml-print", "ppml-print"], [133, 3, 0, "ppml:ppml:ppml-print-one-line", "ppml-print-one-line"], [133, 3, 0, "ppml:ppml:ppml-separator-block", "ppml-separator-block"], [133, 3, 0, "ppml:ppml:ppml-string", "ppml-string"], [133, 3, 0, "ppml:ppml:ppml-suspension", "ppml-suspension"], [182, 3, 0, "io:pprint:pprint-indent", "pprint-indent"], [182, 3, 0, "io:pprint:pprint-logical-block", "pprint-logical-block"], [182, 3, 0, "io:pprint:pprint-newline", "pprint-newline"], [182, 3, 0, "io:pprint:pprint-tab", "pprint-tab"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:present-program-error", "present-program-error"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:present-program-error([condition])", "present-program-error(<condition>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:present-program-error([program-note])", "present-program-error(<program-note>)"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:present-program-note", "present-program-note"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:present-program-note([condition])", "present-program-note(<condition>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:present-program-note([program-note])", "present-program-note(<program-note>)"], [118, 3, 0, "access-path:access-path:previous-frame", "previous-frame"], [119, 3, 0, "debugger-manager:debugger-manager:previous-stack-frame", "previous-stack-frame"], [176, 3, 0, "dylan:dylan-primitives:primitive-address-add", "primitive-address-add"], [176, 3, 0, "dylan:dylan-primitives:primitive-address-and", "primitive-address-and"], [176, 3, 0, "dylan:dylan-primitives:primitive-address-equals?", "primitive-address-equals?"], [176, 3, 0, "dylan:dylan-primitives:primitive-address-left-shift", "primitive-address-left-shift"], [176, 3, 0, "dylan:dylan-primitives:primitive-address-multiply", "primitive-address-multiply"], [176, 3, 0, "dylan:dylan-primitives:primitive-address-not", "primitive-address-not"], [176, 3, 0, "dylan:dylan-primitives:primitive-address-or", "primitive-address-or"], [176, 3, 0, "dylan:dylan-primitives:primitive-address-right-shift", "primitive-address-right-shift"], [176, 3, 0, "dylan:dylan-primitives:primitive-address-subtract", "primitive-address-subtract"], [176, 3, 0, "dylan:dylan-primitives:primitive-allocate", "primitive-allocate"], [176, 3, 0, "dylan:dylan-primitives:primitive-allocate-thread-variable", "primitive-allocate-thread-variable"], [176, 3, 0, "dylan:dylan-primitives:primitive-big-integer-at", "primitive-big-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-big-integer-at-setter", "primitive-big-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-bits-as-single-float", "primitive-bits-as-single-float"], [176, 3, 0, "dylan:dylan-primitives:primitive-byte-allocate", "primitive-byte-allocate"], [176, 3, 0, "dylan:dylan-primitives:primitive-byte-character-at", "primitive-byte-character-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-byte-character-at-setter", "primitive-byte-character-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-byte-element", "primitive-byte-element"], [176, 3, 0, "dylan:dylan-primitives:primitive-byte-element-setter", "primitive-byte-element-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-continue-unwind", "primitive-continue-unwind"], [176, 3, 0, "dylan:dylan-primitives:primitive-copy-vector", "primitive-copy-vector"], [176, 3, 0, "dylan:dylan-primitives:primitive-current-thread", "primitive-current-thread"], [176, 3, 0, "dylan:dylan-primitives:primitive-decoded-bits-as-single-float", "primitive-decoded-bits-as-single-float"], [176, 3, 0, "dylan:dylan-primitives:primitive-destroy-notification", "primitive-destroy-notification"], [176, 3, 0, "dylan:dylan-primitives:primitive-destroy-recursive-lock", "primitive-destroy-recursive-lock"], [176, 3, 0, "dylan:dylan-primitives:primitive-destroy-semaphore", "primitive-destroy-semaphore"], [176, 3, 0, "dylan:dylan-primitives:primitive-destroy-simple-lock", "primitive-destroy-simple-lock"], [176, 3, 0, "dylan:dylan-primitives:primitive-destroy-thread", "primitive-destroy-thread"], [176, 3, 0, "dylan:dylan-primitives:primitive-double-float-at", "primitive-double-float-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-double-float-at-setter", "primitive-double-float-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-element", "primitive-element"], [176, 3, 0, "dylan:dylan-primitives:primitive-element-setter", "primitive-element-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-equals?", "primitive-equals?"], [176, 3, 0, "dylan:dylan-primitives:primitive-extended-float-at", "primitive-extended-float-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-extended-float-at-setter", "primitive-extended-float-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-false?", "primitive-false?"], [176, 3, 0, "dylan:dylan-primitives:primitive-fill!", "primitive-fill!"], [176, 3, 0, "dylan:dylan-primitives:primitive-function-code", "primitive-function-code"], [176, 3, 0, "dylan:dylan-primitives:primitive-function-environment", "primitive-function-environment"], [176, 3, 0, "dylan:dylan-primitives:primitive-ieee-double-float-at", "primitive-ieee-double-float-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-ieee-double-float-at-setter", "primitive-ieee-double-float-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-ieee-extended-float-at", "primitive-ieee-extended-float-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-ieee-extended-float-at-setter", "primitive-ieee-extended-float-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-ieee-single-float-at", "primitive-ieee-single-float-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-ieee-single-float-at-setter", "primitive-ieee-single-float-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-iep-apply", "primitive-iep-apply"], [176, 3, 0, "dylan:dylan-primitives:primitive-initialize-current-thread", "primitive-initialize-current-thread"], [176, 3, 0, "dylan:dylan-primitives:primitive-inlined-nlx", "primitive-inlined-nlx"], [176, 3, 0, "dylan:dylan-primitives:primitive-int?", "primitive-int?"], [176, 3, 0, "dylan:dylan-primitives:primitive-machine-integer-at", "primitive-machine-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-machine-integer-at-setter", "primitive-machine-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-make-box", "primitive-make-box"], [176, 3, 0, "dylan:dylan-primitives:primitive-make-environment", "primitive-make-environment"], [176, 3, 0, "dylan:dylan-primitives:primitive-make-notification", "primitive-make-notification"], [176, 3, 0, "dylan:dylan-primitives:primitive-make-recursive-lock", "primitive-make-recursive-lock"], [176, 3, 0, "dylan:dylan-primitives:primitive-make-semaphore", "primitive-make-semaphore"], [176, 3, 0, "dylan:dylan-primitives:primitive-make-simple-lock", "primitive-make-simple-lock"], [176, 3, 0, "dylan:dylan-primitives:primitive-make-string", "primitive-make-string"], [176, 3, 0, "dylan:dylan-primitives:primitive-make-thread", "primitive-make-thread"], [176, 3, 0, "dylan:dylan-primitives:primitive-nlx", "primitive-nlx"], [176, 3, 0, "dylan:dylan-primitives:primitive-owned-recursive-lock", "primitive-owned-recursive-lock"], [176, 3, 0, "dylan:dylan-primitives:primitive-owned-simple-lock", "primitive-owned-simple-lock"], [176, 3, 0, "dylan:dylan-primitives:primitive-pointer-at", "primitive-pointer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-pointer-at-setter", "primitive-pointer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-read-cycle-counter", "primitive-read-cycle-counter"], [176, 3, 0, "dylan:dylan-primitives:primitive-read-return-address", "primitive-read-return-address"], [176, 3, 0, "dylan:dylan-primitives:primitive-release-all-notification", "primitive-release-all-notification"], [176, 3, 0, "dylan:dylan-primitives:primitive-release-notification", "primitive-release-notification"], [176, 3, 0, "dylan:dylan-primitives:primitive-release-recursive-lock", "primitive-release-recursive-lock"], [176, 3, 0, "dylan:dylan-primitives:primitive-release-semaphore", "primitive-release-semaphore"], [176, 3, 0, "dylan:dylan-primitives:primitive-release-simple-lock", "primitive-release-simple-lock"], [176, 3, 0, "dylan:dylan-primitives:primitive-replace!", "primitive-replace!"], [176, 3, 0, "dylan:dylan-primitives:primitive-replace-bytes!", "primitive-replace-bytes!"], [176, 3, 0, "dylan:dylan-primitives:primitive-signed-16-bit-integer-at", "primitive-signed-16-bit-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-signed-16-bit-integer-at-setter", "primitive-signed-16-bit-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-signed-32-bit-integer-at", "primitive-signed-32-bit-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-signed-32-bit-integer-at-setter", "primitive-signed-32-bit-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-signed-64-bit-integer-at", "primitive-signed-64-bit-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-signed-64-bit-integer-at-setter", "primitive-signed-64-bit-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-signed-8-bit-integer-at", "primitive-signed-8-bit-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-signed-8-bit-integer-at-setter", "primitive-signed-8-bit-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-add", "primitive-single-float-add"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-as-bits", "primitive-single-float-as-bits"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-at", "primitive-single-float-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-at-setter", "primitive-single-float-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-divide", "primitive-single-float-divide"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-equals?", "primitive-single-float-equals?"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-greater-than-or-equal?", "primitive-single-float-greater-than-or-equal?"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-greater-than?", "primitive-single-float-greater-than?"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-less-than-or-equal?", "primitive-single-float-less-than-or-equal?"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-less-than?", "primitive-single-float-less-than?"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-multiply", "primitive-single-float-multiply"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-negate", "primitive-single-float-negate"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-not-equals?", "primitive-single-float-not-equals?"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-subtract", "primitive-single-float-subtract"], [176, 3, 0, "dylan:dylan-primitives:primitive-single-float-unary-divide", "primitive-single-float-unary-divide"], [176, 3, 0, "dylan:dylan-primitives:primitive-sleep", "primitive-sleep"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-add", "primitive-small-integer-add"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-and", "primitive-small-integer-and"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-at", "primitive-small-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-at-setter", "primitive-small-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-divide", "primitive-small-integer-divide"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-equals?", "primitive-small-integer-equals?"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-greater-than-or-equal?", "primitive-small-integer-greater-than-or-equal?"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-greater-than?", "primitive-small-integer-greater-than?"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-left-shift", "primitive-small-integer-left-shift"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-less-than?", "primitive-small-integer-less-than?"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-modulo", "primitive-small-integer-modulo"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-multiply", "primitive-small-integer-multiply"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-negate", "primitive-small-integer-negate"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-not", "primitive-small-integer-not"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-not-equals?", "primitive-small-integer-not-equals?"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-or", "primitive-small-integer-or"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-right-shift", "primitive-small-integer-right-shift"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-subtract", "primitive-small-integer-subtract"], [176, 3, 0, "dylan:dylan-primitives:primitive-small-integer-xor", "primitive-small-integer-xor"], [176, 3, 0, "dylan:dylan-primitives:primitive-thread-join-multiple", "primitive-thread-join-multiple"], [176, 3, 0, "dylan:dylan-primitives:primitive-thread-join-single", "primitive-thread-join-single"], [176, 3, 0, "dylan:dylan-primitives:primitive-thread-yield", "primitive-thread-yield"], [176, 3, 0, "dylan:dylan-primitives:primitive-true?", "primitive-true?"], [176, 3, 0, "dylan:dylan-primitives:primitive-unsigned-16-bit-integer-at", "primitive-unsigned-16-bit-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-unsigned-16-bit-integer-at-setter", "primitive-unsigned-16-bit-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-unsigned-32-bit-integer-at", "primitive-unsigned-32-bit-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-unsigned-32-bit-integer-at-setter", "primitive-unsigned-32-bit-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-unsigned-64-bit-integer-at", "primitive-unsigned-64-bit-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-unsigned-64-bit-integer-at-setter", "primitive-unsigned-64-bit-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-unsigned-8-bit-integer-at", "primitive-unsigned-8-bit-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-unsigned-8-bit-integer-at-setter", "primitive-unsigned-8-bit-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-unsigned-machine-integer-at", "primitive-unsigned-machine-integer-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-unsigned-machine-integer-at-setter", "primitive-unsigned-machine-integer-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-untyped-at", "primitive-untyped-at"], [176, 3, 0, "dylan:dylan-primitives:primitive-untyped-at-setter", "primitive-untyped-at-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-variable-lookup", "primitive-variable-lookup"], [176, 3, 0, "dylan:dylan-primitives:primitive-variable-lookup-setter", "primitive-variable-lookup-setter"], [176, 3, 0, "dylan:dylan-primitives:primitive-wait-for-notification", "primitive-wait-for-notification"], [176, 3, 0, "dylan:dylan-primitives:primitive-wait-for-notification-timed", "primitive-wait-for-notification-timed"], [176, 3, 0, "dylan:dylan-primitives:primitive-wait-for-recursive-lock", "primitive-wait-for-recursive-lock"], [176, 3, 0, "dylan:dylan-primitives:primitive-wait-for-recursive-lock-timed", "primitive-wait-for-recursive-lock-timed"], [176, 3, 0, "dylan:dylan-primitives:primitive-wait-for-semaphore", "primitive-wait-for-semaphore"], [176, 3, 0, "dylan:dylan-primitives:primitive-wait-for-semaphore-timed", "primitive-wait-for-semaphore-timed"], [176, 3, 0, "dylan:dylan-primitives:primitive-wait-for-simple-lock", "primitive-wait-for-simple-lock"], [176, 3, 0, "dylan:dylan-primitives:primitive-wait-for-simple-lock-timed", "primitive-wait-for-simple-lock-timed"], [176, 3, 0, "dylan:dylan-primitives:primitive-xep-apply", "primitive-xep-apply"], [182, 3, 0, "io:print:print", "print"], [119, 3, 0, "debugger-manager:debugger-manager:print-dylan-object", "print-dylan-object"], [179, 3, 0, "io:format:print-message", "print-message"], [179, 4, 0, "io:format:print-message([condition])", "print-message(<condition>)"], [179, 4, 0, "io:format:print-message([string]or[character])", "print-message(<string> or <character>)"], [179, 4, 0, "io:format:print-message([symbol])", "print-message(<symbol>)"], [182, 3, 0, "io:print:print-object", "print-object"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:print-object([program-condition],[stream])", "print-object(<program-condition>, <stream>)"], [182, 3, 0, "io:print:print-to-string", "print-to-string"], [182, 8, 0, "io:print:printing-object", "printing-object"], [119, 3, 0, "debugger-manager:debugger-manager:profile-data", "profile-data"], [119, 4, 0, "debugger-manager:debugger-manager:profile-data([debug-target])", "profile-data(<debug-target>)"], [119, 4, 0, "debugger-manager:debugger-manager:profile-data([profile-state])", "profile-data(<profile-state>)"], [119, 3, 0, "debugger-manager:debugger-manager:profile-thread", "profile-thread"], [168, 8, 0, "common-dylan:simple-profiling:profiling", "profiling"], [168, 3, 0, "common-dylan:simple-profiling:profiling-type-result", "profiling-type-result"], [168, 4, 0, "common-dylan:simple-profiling:profiling-type-result([profiling-state],[cpu-profiling-type])", "profiling-type-result(<profiling-state>, <cpu-profiling-type>)"], [168, 4, 0, "common-dylan:simple-profiling:profiling-type-result([profiling-state],singleton(#\"allocation\"))", "profiling-type-result(<profiling-state>, singleton(#"allocation"))"], [168, 4, 0, "common-dylan:simple-profiling:profiling-type-result([profiling-state],singleton(#\"allocation-stats\"))", "profiling-type-result(<profiling-state>, singleton(#"allocation-stats"))"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:program-condition-definer", "program-condition-definer"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:program-condition-definer-definer", "program-condition-definer-definer"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:program-error-definer", "program-error-definer"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:program-note-class-=", "program-note-class-="], [106, 8, 0, "dfmc-conditions:dfmc-conditions:program-note-definer", "program-note-definer"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:program-note-file-name-=", "program-note-file-name-="], [106, 3, 0, "dfmc-conditions:dfmc-conditions:program-note-filter", "program-note-filter"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:program-note-filter(subclass([condition]))", "program-note-filter(subclass(<condition>))"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:program-note-filter(subclass([performance-note]))", "program-note-filter(subclass(<performance-note>))"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:program-note-filter(subclass([portability-note]))", "program-note-filter(subclass(<portability-note>))"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:program-note-filter(subclass([program-note]))", "program-note-filter(subclass(<program-note>))"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:program-note-filter(subclass([program-warning]))", "program-note-filter(subclass(<program-warning>))"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:program-note-filter(subclass([run-time-error-warning]))", "program-note-filter(subclass(<run-time-error-warning>))"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:program-note-filter(subclass([serious-program-warning]))", "program-note-filter(subclass(<serious-program-warning>))"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:program-note-filter(subclass([style-warning]))", "program-note-filter(subclass(<style-warning>))"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:program-note-filter-setter", "program-note-filter-setter"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:program-note-filter-setter([program-note-filter],subclass([program-condition]))", "program-note-filter-setter(<program-note-filter>, subclass(<program-condition>))"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:program-note-in", "program-note-in"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:program-note-location-between", "program-note-location-between"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:program-restart-definer", "program-restart-definer"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:program-warning-definer", "program-warning-definer"], [159, 8, 0, "collections:plists:put-property!", "put-property!"], [118, 3, 0, "access-path:access-path:query-breakpoint?", "query-breakpoint?"], [118, 3, 0, "access-path:access-path:query-read-watchpoint?", "query-read-watchpoint?"], [118, 3, 0, "access-path:access-path:query-write-watchpoint?", "query-write-watchpoint?"], [74, 3, 0, "duim-sheets:duim-sheets:queue-event", "queue-event"], [74, 3, 0, "duim-sheets:duim-sheets:queue-repaint", "queue-repaint"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:raise", "raise"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:raise(subclass([program-error]))", "raise(subclass(<program-error>))"], [68, 3, 0, "duim:duim-frames:raise-frame", "raise-frame"], [74, 3, 0, "duim-sheets:duim-sheets:raise-sheet", "raise-sheet"], [169, 3, 0, "common-dylan:simple-random:random", "random"], [192, 3, 0, "dylan:dylan:range", "range"], [184, 3, 0, "io:streams:read", "read"], [118, 3, 0, "access-path:access-path:read-16b", "read-16b"], [118, 3, 0, "access-path:access-path:read-32b", "read-32b"], [118, 3, 0, "access-path:access-path:read-64b", "read-64b"], [118, 3, 0, "access-path:access-path:read-8b", "read-8b"], [118, 3, 0, "access-path:access-path:read-byte-string", "read-byte-string"], [118, 3, 0, "access-path:access-path:read-double-float", "read-double-float"], [118, 4, 0, "access-path:access-path:read-double-float([access-path],[active-remote-register])", "read-double-float(<access-path>, <active-remote-register>)"], [118, 4, 0, "access-path:access-path:read-double-float([access-path],[remote-value])", "read-double-float(<access-path>, <remote-value>)"], [119, 3, 0, "debugger-manager:debugger-manager:read-dylan-value", "read-dylan-value"], [184, 3, 0, "io:streams:read-element", "read-element"], [66, 3, 0, "duim-dcs:duim-dcs:read-image", "read-image"], [66, 3, 0, "duim-dcs:duim-dcs:read-image-as", "read-image-as"], [119, 3, 0, "debugger-manager:debugger-manager:read-instance-slot-element", "read-instance-slot-element"], [184, 3, 0, "io:streams:read-into!", "read-into!"], [184, 3, 0, "io:streams:read-line", "read-line"], [184, 3, 0, "io:streams:read-line-into!", "read-line-into!"], [118, 3, 0, "access-path:access-path:read-single-float", "read-single-float"], [118, 4, 0, "access-path:access-path:read-single-float([access-path],[active-remote-register])", "read-single-float(<access-path>, <active-remote-register>)"], [118, 4, 0, "access-path:access-path:read-single-float([access-path],[remote-value])", "read-single-float(<access-path>, <remote-value>)"], [184, 3, 0, "io:streams:read-through", "read-through"], [184, 3, 0, "io:streams:read-to", "read-to"], [184, 3, 0, "io:streams:read-to-end", "read-to-end"], [118, 3, 0, "access-path:access-path:read-value", "read-value"], [118, 4, 0, "access-path:access-path:read-value([access-path],[active-remote-register])", "read-value(<access-path>, <active-remote-register>)"], [118, 4, 0, "access-path:access-path:read-value([access-path],[remote-value])", "read-value(<access-path>, <remote-value>)"], [118, 3, 0, "access-path:access-path:receivable-first-chance-exceptions", "receivable-first-chance-exceptions"], [118, 3, 0, "access-path:access-path:receiving-first-chance?", "receiving-first-chance?"], [118, 3, 0, "access-path:access-path:receiving-first-chance?-setter", "receiving-first-chance?-setter"], [201, 3, 0, "sql:sql:record-available?", "record-available?"], [201, 3, 0, "sql:sql:record-coercion-policy", "record-coercion-policy"], [118, 3, 0, "access-path:access-path:recover-breakpoint", "recover-breakpoint"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:rectangle-edges", "rectangle-edges"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:rectangle-height", "rectangle-height"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:rectangle-max-point", "rectangle-max-point"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:rectangle-max-position", "rectangle-max-position"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:rectangle-min-point", "rectangle-min-point"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:rectangle-min-position", "rectangle-min-position"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:rectangle-size", "rectangle-size"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:rectangle-width", "rectangle-width"], [67, 3, 0, "duim-extended-geometry:duim-extended-geometry:rectangle?", "rectangle?"], [70, 3, 0, "duim-geometry:duim-geometry:rectilinear-transform?", "rectilinear-transform?"], [68, 3, 0, "duim:duim-frames:redo-command", "redo-command"], [154, 3, 0, "c-ffi:c-ffi:referenced-type", "referenced-type"], [70, 3, 0, "duim-geometry:duim-geometry:reflection-transform?", "reflection-transform?"], [70, 3, 0, "duim-geometry:duim-geometry:region-contains-position?", "region-contains-position?"], [70, 3, 0, "duim-geometry:duim-geometry:region-contains-region?", "region-contains-region?"], [70, 3, 0, "duim-geometry:duim-geometry:region-difference", "region-difference"], [70, 3, 0, "duim-geometry:duim-geometry:region-empty?", "region-empty?"], [70, 3, 0, "duim-geometry:duim-geometry:region-equal", "region-equal"], [70, 3, 0, "duim-geometry:duim-geometry:region-intersection", "region-intersection"], [70, 3, 0, "duim-geometry:duim-geometry:region-intersects-region?", "region-intersects-region?"], [70, 3, 0, "duim-geometry:duim-geometry:region-set-function", "region-set-function"], [70, 3, 0, "duim-geometry:duim-geometry:region-set-regions", "region-set-regions"], [70, 3, 0, "duim-geometry:duim-geometry:region-set?", "region-set?"], [70, 3, 0, "duim-geometry:duim-geometry:region-union", "region-union"], [70, 3, 0, "duim-geometry:duim-geometry:region?", "region?"], [154, 3, 0, "c-ffi:c-ffi:register-c-dylan-object", "register-C-Dylan-object"], [164, 3, 0, "common-dylan:common-extensions:register-application-exit-function", "register-application-exit-function"], [119, 3, 0, "debugger-manager:debugger-manager:register-debug-point", "register-debug-point"], [201, 3, 0, "sql:sql:register-diagnostic-installer", "register-diagnostic-installer"], [118, 3, 0, "access-path:access-path:register-exit-process-function", "register-exit-process-function"], [118, 3, 0, "access-path:access-path:register-interactive-code-segment", "register-interactive-code-segment"], [118, 3, 0, "access-path:access-path:register-name", "register-name"], [119, 3, 0, "debugger-manager:debugger-manager:register-remote-object", "register-remote-object"], [118, 3, 0, "access-path:access-path:register-thread", "register-thread"], [205, 3, 0, "system:locators:relative-locator", "relative-locator"], [73, 3, 0, "duim-layouts:duim-layouts:relayout-children", "relayout-children"], [73, 3, 0, "duim-layouts:duim-layouts:relayout-parent", "relayout-parent"], [177, 3, 0, "dylan:threads:release", "release"], [177, 4, 0, "dylan:threads:release([exclusive-lock])", "release(<exclusive-lock>)"], [177, 4, 0, "dylan:threads:release([notification])", "release(<notification>)"], [177, 4, 0, "dylan:threads:release([read-write-lock])", "release(<read-write-lock>)"], [177, 4, 0, "dylan:threads:release([recursive-lock])", "release(<recursive-lock>)"], [177, 4, 0, "dylan:threads:release([semaphore])", "release(<semaphore>)"], [177, 4, 0, "dylan:threads:release([simple-lock])", "release(<simple-lock>)"], [177, 3, 0, "dylan:threads:release-all", "release-all"], [192, 3, 0, "dylan:dylan:remainder", "remainder"], [192, 4, 0, "dylan:dylan:remainder([integer],[integer])", "remainder(<integer>, <integer>)"], [118, 3, 0, "access-path:access-path:remote-address-page-number", "remote-address-page-number"], [119, 3, 0, "debugger-manager:debugger-manager:remote-address-source-location", "remote-address-source-location"], [118, 3, 0, "access-path:access-path:remote-call", "remote-call"], [118, 3, 0, "access-path:access-path:remote-call-result", "remote-call-result"], [118, 3, 0, "access-path:access-path:remote-call-spy", "remote-call-spy"], [118, 3, 0, "access-path:access-path:remote-function-debug-end", "remote-function-debug-end"], [118, 3, 0, "access-path:access-path:remote-function-debug-start", "remote-function-debug-start"], [118, 3, 0, "access-path:access-path:remote-function-end", "remote-function-end"], [199, 3, 0, "network:sockets:remote-host", "remote-host"], [119, 3, 0, "debugger-manager:debugger-manager:remote-instance?", "remote-instance?"], [118, 3, 0, "access-path:access-path:remote-object-file-client-data", "remote-object-file-client-data"], [118, 3, 0, "access-path:access-path:remote-object-file-core-name", "remote-object-file-core-name"], [118, 3, 0, "access-path:access-path:remote-object-file-language", "remote-object-file-language"], [118, 3, 0, "access-path:access-path:remote-object-file-library", "remote-object-file-library"], [118, 3, 0, "access-path:access-path:remote-object-file-object-extension", "remote-object-file-object-extension"], [118, 3, 0, "access-path:access-path:remote-object-file-path", "remote-object-file-path"], [118, 3, 0, "access-path:access-path:remote-object-file-source-extension", "remote-object-file-source-extension"], [119, 3, 0, "debugger-manager:debugger-manager:remote-object-value", "remote-object-value"], [199, 3, 0, "network:sockets:remote-port", "remote-port"], [118, 3, 0, "access-path:access-path:remote-process-actual-identifier", "remote-process-actual-identifier"], [118, 3, 0, "access-path:access-path:remote-process-name", "remote-process-name"], [118, 3, 0, "access-path:access-path:remote-process-system-identifier", "remote-process-system-identifier"], [119, 3, 0, "debugger-manager:debugger-manager:remote-restart-description", "remote-restart-description"], [118, 3, 0, "access-path:access-path:remote-restore-context", "remote-restore-context"], [118, 3, 0, "access-path:access-path:remote-symbol-address", "remote-symbol-address"], [118, 3, 0, "access-path:access-path:remote-symbol-language", "remote-symbol-language"], [118, 3, 0, "access-path:access-path:remote-symbol-library", "remote-symbol-library"], [118, 3, 0, "access-path:access-path:remote-symbol-name", "remote-symbol-name"], [118, 3, 0, "access-path:access-path:remote-symbol-object-file", "remote-symbol-object-file"], [118, 3, 0, "access-path:access-path:remote-symbol-source-location-map", "remote-symbol-source-location-map"], [118, 3, 0, "access-path:access-path:remote-symbol-source-location-map-setter", "remote-symbol-source-location-map-setter"], [118, 3, 0, "access-path:access-path:remote-symbol-storage-status", "remote-symbol-storage-status"], [118, 3, 0, "access-path:access-path:remote-value-[", "remote-value-<"], [118, 3, 0, "access-path:access-path:remote-value-[=", "remote-value-<="], [118, 3, 0, "access-path:access-path:remote-value-=", "remote-value-="], [118, 3, 0, "access-path:access-path:remote-value-as-string", "remote-value-as-string"], [118, 3, 0, "access-path:access-path:remote-value-byte-size", "remote-value-byte-size"], [118, 3, 0, "access-path:access-path:remote-value-low-order-bits", "remote-value-low-order-bits"], [118, 3, 0, "access-path:access-path:remote-virtual-page-size", "remote-virtual-page-size"], [161, 3, 0, "collections:table-extensions:remove-all-keys!", "remove-all-keys!"], [164, 3, 0, "common-dylan:common-extensions:remove-all-keys!", "remove-all-keys!"], [161, 4, 0, "collections:table-extensions:remove-all-keys!([mutable-explicit-key-collection])", "remove-all-keys!(<mutable-explicit-key-collection>)"], [161, 4, 0, "collections:table-extensions:remove-all-keys!([table])", "remove-all-keys!(<table>)"], [118, 3, 0, "access-path:access-path:remove-all-stepping-control-for-thread", "remove-all-stepping-control-for-thread"], [74, 3, 0, "duim-sheets:duim-sheets:remove-child", "remove-child"], [66, 3, 0, "duim-dcs:duim-dcs:remove-colors", "remove-colors"], [69, 3, 0, "duim:duim-gadgets:remove-column", "remove-column"], [68, 3, 0, "duim:duim-frames:remove-command", "remove-command"], [68, 3, 0, "duim:duim-frames:remove-command-table", "remove-command-table"], [68, 3, 0, "duim:duim-frames:remove-command-table-menu-item", "remove-command-table-menu-item"], [69, 3, 0, "duim:duim-gadgets:remove-item", "remove-item"], [159, 3, 0, "collections:plists:remove-keywords", "remove-keywords"], [69, 3, 0, "duim:duim-gadgets:remove-node", "remove-node"], [119, 3, 0, "debugger-manager:debugger-manager:remove-object", "remove-object"], [119, 4, 0, "debugger-manager:debugger-manager:remove-object([page-relative-object-table],[remote-value])", "remove-object(<page-relative-object-table>, <remote-value>)"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:remove-program-conditions-from!", "remove-program-conditions-from!"], [159, 8, 0, "collections:plists:remove-property!", "remove-property!"], [203, 3, 0, "system:file-system:rename-file", "rename-file"], [74, 3, 0, "duim-sheets:duim-sheets:repaint-sheet", "repaint-sheet"], [74, 3, 0, "duim-sheets:duim-sheets:replace-child", "replace-child"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:report-condition", "report-condition"], [208, 3, 0, "win32-kernel:win32-kernel:report-win32-error", "report-win32-error"], [119, 3, 0, "debugger-manager:debugger-manager:reset-profile-data", "reset-profile-data"], [119, 3, 0, "debugger-manager:debugger-manager:resolve-dylan-keyword", "resolve-dylan-keyword"], [119, 3, 0, "debugger-manager:debugger-manager:resolve-dylan-name", "resolve-dylan-name"], [205, 3, 0, "system:locators:resolve-locator", "resolve-locator"], [118, 3, 0, "access-path:access-path:resolve-source-location", "resolve-source-location"], [119, 3, 0, "debugger-manager:debugger-manager:resolve-symbolic-name", "resolve-symbolic-name"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:restart", "restart"], [118, 3, 0, "access-path:access-path:restart", "restart"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:restart(subclass([program-restart]))", "restart(subclass(<program-restart>))"], [119, 3, 0, "debugger-manager:debugger-manager:restart-application", "restart-application"], [71, 3, 0, "duim-graphics:duim-graphics:restore-clipping-region", "restore-clipping-region"], [118, 3, 0, "access-path:access-path:resume-thread", "resume-thread"], [201, 3, 0, "sql:sql:returned-sqlstate", "returned-sqlstate"], [70, 3, 0, "duim-geometry:duim-geometry:rigid-transform?", "rigid-transform?"], [201, 3, 0, "sql:sql:rollback-transaction", "rollback-transaction"], [203, 3, 0, "system:file-system:root-directories", "root-directories"], [192, 3, 0, "dylan:dylan:round", "round"], [192, 4, 0, "dylan:dylan:round([float])", "round(<float>)"], [192, 4, 0, "dylan:dylan:round([integer])", "round(<integer>)"], [192, 4, 0, "dylan:dylan:round([machine-number])", "round(<machine-number>)"], [192, 3, 0, "dylan:dylan:round/", "round/"], [192, 4, 0, "dylan:dylan:round/([integer],[integer])", "round/(<integer>, <integer>)"], [192, 4, 0, "dylan:dylan:round/([machine-number],[machine-number])", "round/(<machine-number>, <machine-number>)"], [201, 3, 0, "sql:sql:row-count", "row-count"], [201, 3, 0, "sql:sql:rowset-size", "rowset-size"], [206, 3, 0, "system:operating-system:run-application", "run-application"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:run-time-error-warning-definer", "run-time-error-warning-definer"], [119, 3, 0, "debugger-manager:debugger-manager:runtime-context-debug-target", "runtime-context-debug-target"], [119, 3, 0, "debugger-manager:debugger-manager:runtime-context-frame", "runtime-context-frame"], [119, 3, 0, "debugger-manager:debugger-manager:runtime-context-lexical-variable-value", "runtime-context-lexical-variable-value"], [119, 3, 0, "debugger-manager:debugger-manager:runtime-context-thread", "runtime-context-thread"], [70, 3, 0, "duim-geometry:duim-geometry:scaling-transform?", "scaling-transform?"], [201, 3, 0, "sql:sql:schema-from-name", "schema-from-name"], [201, 3, 0, "sql:sql:schema-name", "schema-name"], [69, 3, 0, "duim:duim-gadgets:scroll-position", "scroll-position"], [201, 3, 0, "sql:sql:scroll-window", "scroll-window"], [201, 3, 0, "sql:sql:scrollable?", "scrollable?"], [69, 8, 0, "duim:duim-gadgets:scrolling", "scrolling"], [118, 3, 0, "access-path:access-path:self-contained-component?", "self-contained-component?"], [118, 3, 0, "access-path:access-path:self-contained-component?-setter", "self-contained-component?-setter"], [161, 3, 0, "collections:table-extensions:sequence-hash", "sequence-hash"], [177, 3, 0, "dylan:threads:sequence-point", "sequence-point"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:serious-note?", "serious-note?"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:serious-note?([program-error])", "serious-note?(<program-error>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:serious-note?([program-note])", "serious-note?(<program-note>)"], [106, 4, 0, "dfmc-conditions:dfmc-conditions:serious-note?([serious-program-warning])", "serious-note?(<serious-program-warning>)"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:serious-program-warning-definer", "serious-program-warning-definer"], [155, 3, 0, "collections:bit-set:set-add", "set-add"], [155, 3, 0, "collections:bit-set:set-add!", "set-add!"], [119, 3, 0, "debugger-manager:debugger-manager:set-application-class-breakpoint", "set-application-class-breakpoint"], [70, 3, 0, "duim-geometry:duim-geometry:set-box-edges", "set-box-edges"], [70, 3, 0, "duim-geometry:duim-geometry:set-box-position", "set-box-position"], [70, 3, 0, "duim-geometry:duim-geometry:set-box-size", "set-box-size"], [74, 3, 0, "duim-sheets:duim-sheets:set-caret-position", "set-caret-position"], [155, 3, 0, "collections:bit-set:set-complement", "set-complement"], [155, 3, 0, "collections:bit-set:set-complement!", "set-complement!"], [155, 3, 0, "collections:bit-set:set-difference", "set-difference"], [155, 3, 0, "collections:bit-set:set-difference!", "set-difference!"], [68, 3, 0, "duim:duim-frames:set-frame-position", "set-frame-position"], [68, 3, 0, "duim:duim-frames:set-frame-size", "set-frame-size"], [155, 3, 0, "collections:bit-set:set-intersection", "set-intersection"], [155, 3, 0, "collections:bit-set:set-intersection!", "set-intersection!"], [74, 3, 0, "duim-sheets:duim-sheets:set-pointer-position", "set-pointer-position"], [155, 3, 0, "collections:bit-set:set-remove", "set-remove"], [155, 3, 0, "collections:bit-set:set-remove!", "set-remove!"], [69, 3, 0, "duim:duim-gadgets:set-scroll-position", "set-scroll-position"], [74, 3, 0, "duim-sheets:duim-sheets:set-sheet-edges", "set-sheet-edges"], [74, 3, 0, "duim-sheets:duim-sheets:set-sheet-position", "set-sheet-position"], [74, 3, 0, "duim-sheets:duim-sheets:set-sheet-size", "set-sheet-size"], [155, 3, 0, "collections:bit-set:set-union", "set-union"], [155, 3, 0, "collections:bit-set:set-union!", "set-union!"], [119, 3, 0, "debugger-manager:debugger-manager:setup-interactor", "setup-interactor"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-ancestor?", "sheet-ancestor?"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-child", "sheet-child"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-child-setter", "sheet-child-setter"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-children", "sheet-children"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-children-setter", "sheet-children-setter"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-edges", "sheet-edges"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-event-mask", "sheet-event-mask"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-event-mask-setter", "sheet-event-mask-setter"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-event-queue", "sheet-event-queue"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-frame", "sheet-frame"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-mapped?", "sheet-mapped?"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-mapped?-setter", "sheet-mapped?-setter"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-medium", "sheet-medium"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-parent", "sheet-parent"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-parent-setter", "sheet-parent-setter"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-pointer-cursor", "sheet-pointer-cursor"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-pointer-cursor-setter", "sheet-pointer-cursor-setter"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-position", "sheet-position"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-region", "sheet-region"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-region-setter", "sheet-region-setter"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-size", "sheet-size"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-state", "sheet-state"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-text-cursor", "sheet-text-cursor"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-transform", "sheet-transform"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-transform-setter", "sheet-transform-setter"], [69, 3, 0, "duim:duim-gadgets:sheet-viewport", "sheet-viewport"], [69, 3, 0, "duim:duim-gadgets:sheet-viewport-region", "sheet-viewport-region"], [74, 3, 0, "duim-sheets:duim-sheets:sheet-withdrawn?", "sheet-withdrawn?"], [74, 3, 0, "duim-sheets:duim-sheets:sheet?", "sheet?"], [203, 3, 0, "system:file-system:shorten-pathname", "shorten-pathname"], [203, 4, 0, "system:file-system:shorten-pathname([file-system-locator])", "shorten-pathname(<file-system-locator>)"], [200, 3, 0, "progress-stream:progress-stream:show-progress", "show-progress"], [119, 3, 0, "debugger-manager:debugger-manager:signal-restart-on-thread", "signal-restart-on-thread"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:simple-note", "simple-note"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:simple-raise", "simple-raise"], [205, 3, 0, "system:locators:simplify-locator", "simplify-locator"], [171, 3, 0, "common-dylan:transcendentals:sin", "sin"], [171, 4, 0, "common-dylan:transcendentals:sin([double-float])", "sin(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:sin([single-float])", "sin(<single-float>)"], [171, 3, 0, "common-dylan:transcendentals:sincos", "sincos"], [171, 4, 0, "common-dylan:transcendentals:sincos([double-float])", "sincos(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:sincos([single-float])", "sincos(<single-float>)"], [171, 3, 0, "common-dylan:transcendentals:sinh", "sinh"], [171, 4, 0, "common-dylan:transcendentals:sinh([double-float])", "sinh(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:sinh([single-float])", "sinh(<single-float>)"], [155, 3, 0, "collections:bit-set:size", "size"], [154, 3, 0, "c-ffi:c-ffi:size-of", "size-of"], [111, 9, 0, "", "skip-list"], [111, 10, 0, "skip-list:skip-list", "skip-list"], [184, 3, 0, "io:streams:skip-through", "skip-through"], [177, 3, 0, "dylan:threads:sleep", "sleep"], [166, 3, 0, "common-dylan:machine-words:so%+", "so%+"], [166, 3, 0, "common-dylan:machine-words:so%-", "so%-"], [166, 3, 0, "common-dylan:machine-words:so%\\*", "so%\\*"], [166, 3, 0, "common-dylan:machine-words:so%abs", "so%abs"], [166, 3, 0, "common-dylan:machine-words:so%negative", "so%negative"], [166, 3, 0, "common-dylan:machine-words:so%shift-left", "so%shift-left"], [199, 3, 0, "network:sockets:socket-descriptor", "socket-descriptor"], [118, 3, 0, "access-path:access-path:source-filename", "source-filename"], [118, 3, 0, "access-path:access-path:source-location-description", "source-location-description"], [119, 3, 0, "debugger-manager:debugger-manager:source-location-remote-address", "source-location-remote-address"], [73, 3, 0, "duim-layouts:duim-layouts:space-requirement-height", "space-requirement-height"], [73, 3, 0, "duim-layouts:duim-layouts:space-requirement-max-height", "space-requirement-max-height"], [73, 3, 0, "duim-layouts:duim-layouts:space-requirement-max-width", "space-requirement-max-width"], [73, 3, 0, "duim-layouts:duim-layouts:space-requirement-min-height", "space-requirement-min-height"], [73, 3, 0, "duim-layouts:duim-layouts:space-requirement-min-width", "space-requirement-min-width"], [73, 3, 0, "duim-layouts:duim-layouts:space-requirement-width", "space-requirement-width"], [73, 3, 0, "duim-layouts:duim-layouts:space-requirement?", "space-requirement?"], [164, 3, 0, "common-dylan:common-extensions:split", "split"], [164, 4, 0, "common-dylan:common-extensions:split([sequence],[function])", "split(<sequence>, <function>)"], [164, 4, 0, "common-dylan:common-extensions:split([sequence],[object])", "split(<sequence>, <object>)"], [164, 4, 0, "common-dylan:common-extensions:split([sequence],[sequence])", "split(<sequence>, <sequence>)"], [69, 3, 0, "duim:duim-gadgets:splitter-split-bar-moved-callback", "splitter-split-bar-moved-callback"], [69, 3, 0, "duim:duim-gadgets:splitter-split-bar-moved-callback-setter", "splitter-split-bar-moved-callback-setter"], [69, 3, 0, "duim:duim-gadgets:splitter-split-box-callback", "splitter-split-box-callback"], [69, 3, 0, "duim:duim-gadgets:splitter-split-box-callback-setter", "splitter-split-box-callback-setter"], [119, 3, 0, "debugger-manager:debugger-manager:spy-call-arguments", "spy-call-arguments"], [119, 3, 0, "debugger-manager:debugger-manager:spy-call-debug-target", "spy-call-debug-target"], [119, 3, 0, "debugger-manager:debugger-manager:spy-call-function-descriptor", "spy-call-function-descriptor"], [119, 3, 0, "debugger-manager:debugger-manager:spy-call-selected-thread", "spy-call-selected-thread"], [118, 3, 0, "access-path:access-path:spy-function-argument-remote-vector", "spy-function-argument-remote-vector"], [118, 3, 0, "access-path:access-path:spy-function-argument-remote-vector-setter", "spy-function-argument-remote-vector-setter"], [119, 8, 0, "debugger-manager:debugger-manager:spy-function-definer", "spy-function-definer"], [119, 3, 0, "debugger-manager:debugger-manager:spy-function-runtime-component", "spy-function-runtime-component"], [119, 3, 0, "debugger-manager:debugger-manager:spy-function-runtime-name", "spy-function-runtime-name"], [201, 8, 0, "sql:sql:sql", "sql"], [171, 3, 0, "common-dylan:transcendentals:sqrt", "sqrt"], [171, 4, 0, "common-dylan:transcendentals:sqrt([double-float])", "sqrt(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:sqrt([single-float])", "sqrt(<single-float>)"], [118, 3, 0, "access-path:access-path:stack-frame-pointer", "stack-frame-pointer"], [73, 3, 0, "duim-layouts:duim-layouts:stack-layout-mapped-page", "stack-layout-mapped-page"], [73, 3, 0, "duim-layouts:duim-layouts:stack-layout-mapped-page-setter", "stack-layout-mapped-page-setter"], [118, 3, 0, "access-path:access-path:stack-size", "stack-size"], [118, 3, 0, "access-path:access-path:stack-size-setter", "stack-size-setter"], [118, 3, 0, "access-path:access-path:stack-size-valid?", "stack-size-valid?"], [118, 3, 0, "access-path:access-path:stack-size-valid?-setter", "stack-size-valid?-setter"], [118, 3, 0, "access-path:access-path:stack-trace-valid?", "stack-trace-valid?"], [118, 3, 0, "access-path:access-path:stack-trace-valid?-setter", "stack-trace-valid?-setter"], [68, 3, 0, "duim:duim-frames:start-dialog", "start-dialog"], [68, 3, 0, "duim:duim-frames:start-frame", "start-frame"], [71, 3, 0, "duim-graphics:duim-graphics:start-path", "start-path"], [119, 3, 0, "debugger-manager:debugger-manager:start-profiling", "start-profiling"], [168, 3, 0, "common-dylan:simple-profiling:start-profiling", "start-profiling"], [168, 3, 0, "common-dylan:simple-profiling:start-profiling-type", "start-profiling-type"], [168, 4, 0, "common-dylan:simple-profiling:start-profiling-type([profiling-state],[cpu-profiling-type])", "start-profiling-type(<profiling-state>, <cpu-profiling-type>)"], [168, 4, 0, "common-dylan:simple-profiling:start-profiling-type([profiling-state],singleton(#\"allocation\"))", "start-profiling-type(<profiling-state>, singleton(#"allocation"))"], [168, 4, 0, "common-dylan:simple-profiling:start-profiling-type([profiling-state],singleton(#\"allocation-stats\"))", "start-profiling-type(<profiling-state>, singleton(#"allocation-stats"))"], [199, 8, 0, "network:sockets:start-server", "start-server"], [199, 3, 0, "network:sockets:start-sockets", "start-sockets"], [201, 3, 0, "sql:sql:start-transaction", "start-transaction"], [201, 3, 0, "sql:sql:statement-column-names", "statement-column-names"], [69, 3, 0, "duim:duim-gadgets:status-bar-label-pane", "status-bar-label-pane"], [69, 3, 0, "duim:duim-gadgets:status-bar-progress-bar", "status-bar-progress-bar"], [66, 3, 0, "duim-dcs:duim-dcs:stencil?", "stencil?"], [118, 3, 0, "access-path:access-path:step", "step"], [118, 3, 0, "access-path:access-path:step-out", "step-out"], [118, 3, 0, "access-path:access-path:step-over", "step-over"], [118, 3, 0, "access-path:access-path:stepping-locations-remote-vector", "stepping-locations-remote-vector"], [118, 3, 0, "access-path:access-path:stepping-locations-remote-vector-setter", "stepping-locations-remote-vector-setter"], [118, 3, 0, "access-path:access-path:stop", "stop"], [119, 3, 0, "debugger-manager:debugger-manager:stop-application", "stop-application"], [119, 3, 0, "debugger-manager:debugger-manager:stop-profiling", "stop-profiling"], [168, 3, 0, "common-dylan:simple-profiling:stop-profiling", "stop-profiling"], [168, 3, 0, "common-dylan:simple-profiling:stop-profiling-type", "stop-profiling-type"], [168, 4, 0, "common-dylan:simple-profiling:stop-profiling-type([profiling-state],[cpu-profiling-type])", "stop-profiling-type(<profiling-state>, <cpu-profiling-type>)"], [168, 4, 0, "common-dylan:simple-profiling:stop-profiling-type([profiling-state],singleton(#\"allocation\"))", "stop-profiling-type(<profiling-state>, singleton(#"allocation"))"], [168, 4, 0, "common-dylan:simple-profiling:stop-profiling-type([profiling-state],singleton(#\"allocation-stats\"))", "stop-profiling-type(<profiling-state>, singleton(#"allocation-stats"))"], [118, 3, 0, "access-path:access-path:stop-reason-access-violation-address", "stop-reason-access-violation-address"], [118, 3, 0, "access-path:access-path:stop-reason-access-violation-operation", "stop-reason-access-violation-operation"], [119, 3, 0, "debugger-manager:debugger-manager:stop-reason-client-data", "stop-reason-client-data"], [118, 3, 0, "access-path:access-path:stop-reason-debug-point-address", "stop-reason-debug-point-address"], [119, 3, 0, "debugger-manager:debugger-manager:stop-reason-debug-points", "stop-reason-debug-points"], [118, 3, 0, "access-path:access-path:stop-reason-debug-string", "stop-reason-debug-string"], [118, 3, 0, "access-path:access-path:stop-reason-exception-address", "stop-reason-exception-address"], [118, 3, 0, "access-path:access-path:stop-reason-exception-first-chance?", "stop-reason-exception-first-chance?"], [118, 3, 0, "access-path:access-path:stop-reason-executable-component", "stop-reason-executable-component"], [118, 3, 0, "access-path:access-path:stop-reason-exit-code", "stop-reason-exit-code"], [118, 3, 0, "access-path:access-path:stop-reason-library", "stop-reason-library"], [118, 3, 0, "access-path:access-path:stop-reason-process", "stop-reason-process"], [118, 3, 0, "access-path:access-path:stop-reason-process-exit-code", "stop-reason-process-exit-code"], [118, 3, 0, "access-path:access-path:stop-reason-thread", "stop-reason-thread"], [118, 3, 0, "access-path:access-path:stop-reason-thread-exit-code", "stop-reason-thread-exit-code"], [184, 3, 0, "io:streams:stream-at-end?", "stream-at-end?"], [184, 3, 0, "io:streams:stream-console?", "stream-console?"], [184, 3, 0, "io:streams:stream-contents", "stream-contents"], [184, 3, 0, "io:streams:stream-element-type", "stream-element-type"], [184, 3, 0, "io:streams:stream-input-available?", "stream-input-available?"], [184, 3, 0, "io:streams:stream-lock", "stream-lock"], [184, 3, 0, "io:streams:stream-lock-setter", "stream-lock-setter"], [184, 3, 0, "io:streams:stream-open?", "stream-open?"], [184, 3, 0, "io:streams:stream-position", "stream-position"], [184, 3, 0, "io:streams:stream-position-setter", "stream-position-setter"], [184, 3, 0, "io:streams:stream-size", "stream-size"], [162, 3, 0, "coloring-stream:coloring-stream:stream-supports-ansi-color?", "stream-supports-ansi-color?"], [162, 3, 0, "coloring-stream:coloring-stream:stream-supports-color?", "stream-supports-color?"], [200, 3, 0, "progress-stream:progress-stream:stream-supports-show-progress?", "stream-supports-show-progress?"], [205, 3, 0, "system:locators:string-as-locator", "string-as-locator"], [118, 3, 0, "access-path:access-path:string-as-remote-value", "string-as-remote-value"], [161, 3, 0, "collections:table-extensions:string-hash", "string-hash"], [164, 3, 0, "common-dylan:common-extensions:string-to-integer", "string-to-integer"], [71, 3, 0, "duim-graphics:duim-graphics:stroke-path", "stroke-path"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:style-warning-definer", "style-warning-definer"], [164, 3, 0, "common-dylan:common-extensions:subclass", "subclass"], [201, 3, 0, "sql:sql:subclass-code", "subclass-code"], [201, 3, 0, "sql:sql:subclass-origin", "subclass-origin"], [205, 3, 0, "system:locators:subdirectory-locator", "subdirectory-locator"], [106, 3, 0, "dfmc-conditions:dfmc-conditions:subnotes", "subnotes"], [164, 3, 0, "common-dylan:common-extensions:supplied?", "supplied?"], [205, 3, 0, "system:locators:supports-list-locator?", "supports-list-locator?"], [205, 4, 0, "system:locators:supports-list-locator?([file-system-directory-locator])", "supports-list-locator?(<file-system-directory-locator>)"], [205, 3, 0, "system:locators:supports-open-locator?", "supports-open-locator?"], [118, 3, 0, "access-path:access-path:suspend-thread", "suspend-thread"], [118, 3, 0, "access-path:access-path:symbol-relative-address", "symbol-relative-address"], [177, 3, 0, "dylan:threads:synchronization-name", "synchronization-name"], [74, 3, 0, "duim-sheets:duim-sheets:synchronize-display", "synchronize-display"], [184, 3, 0, "io:streams:synchronize-output", "synchronize-output"], [177, 3, 0, "dylan:threads:synchronize-side-effects", "synchronize-side-effects"], [69, 3, 0, "duim:duim-gadgets:tab-control-current-page", "tab-control-current-page"], [69, 3, 0, "duim:duim-gadgets:tab-control-current-page-setter", "tab-control-current-page-setter"], [69, 3, 0, "duim:duim-gadgets:tab-control-labels", "tab-control-labels"], [69, 3, 0, "duim:duim-gadgets:tab-control-pages", "tab-control-pages"], [69, 3, 0, "duim:duim-gadgets:tab-control-pages-setter", "tab-control-pages-setter"], [73, 3, 0, "duim-layouts:duim-layouts:table-contents", "table-contents"], [73, 3, 0, "duim-layouts:duim-layouts:table-contents-setter", "table-contents-setter"], [69, 3, 0, "duim:duim-gadgets:table-control-view", "table-control-view"], [69, 3, 0, "duim:duim-gadgets:table-control-view-setter", "table-control-view-setter"], [201, 3, 0, "sql:sql:table-from-name", "table-from-name"], [201, 3, 0, "sql:sql:table-name", "table-name"], [190, 3, 0, "dylan:dylan:table-protocol", "table-protocol"], [73, 8, 0, "duim-layouts:duim-layouts:tabling", "tabling"], [161, 8, 0, "collections:table-extensions:tabling", "tabling"], [118, 3, 0, "access-path:access-path:tagged-remote-value-as-character", "tagged-remote-value-as-character"], [118, 3, 0, "access-path:access-path:tagged-remote-value-as-integer", "tagged-remote-value-as-integer"], [171, 3, 0, "common-dylan:transcendentals:tan", "tan"], [171, 4, 0, "common-dylan:transcendentals:tan([double-float])", "tan(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:tan([single-float])", "tan(<single-float>)"], [171, 3, 0, "common-dylan:transcendentals:tanh", "tanh"], [171, 4, 0, "common-dylan:transcendentals:tanh([double-float])", "tanh(<double-float>)"], [171, 4, 0, "common-dylan:transcendentals:tanh([single-float])", "tanh(<single-float>)"], [203, 3, 0, "system:file-system:temp-directory", "temp-directory"], [201, 3, 0, "sql:sql:text", "text"], [162, 3, 0, "coloring-stream:coloring-stream:text-attributes", "text-attributes"], [201, 3, 0, "sql:sql:text-setter", "text-setter"], [74, 3, 0, "duim-sheets:duim-sheets:text-size", "text-size"], [66, 3, 0, "duim-dcs:duim-dcs:text-style-components", "text-style-components"], [66, 3, 0, "duim-dcs:duim-dcs:text-style-family", "text-style-family"], [74, 3, 0, "duim-sheets:duim-sheets:text-style-mapping", "text-style-mapping"], [74, 3, 0, "duim-sheets:duim-sheets:text-style-mapping-exists?", "text-style-mapping-exists?"], [74, 3, 0, "duim-sheets:duim-sheets:text-style-mapping-setter", "text-style-mapping-setter"], [66, 3, 0, "duim-dcs:duim-dcs:text-style-size", "text-style-size"], [66, 3, 0, "duim-dcs:duim-dcs:text-style-slant", "text-style-slant"], [66, 3, 0, "duim-dcs:duim-dcs:text-style-strikeout?", "text-style-strikeout?"], [66, 3, 0, "duim-dcs:duim-dcs:text-style-underline?", "text-style-underline?"], [66, 3, 0, "duim-dcs:duim-dcs:text-style-weight", "text-style-weight"], [66, 3, 0, "duim-dcs:duim-dcs:text-style?", "text-style?"], [177, 8, 0, "dylan:threads:thread", "thread"], [118, 3, 0, "access-path:access-path:thread-access-path", "thread-access-path"], [177, 3, 0, "dylan:threads:thread-id", "thread-id"], [118, 3, 0, "access-path:access-path:thread-name", "thread-name"], [177, 3, 0, "dylan:threads:thread-name", "thread-name"], [118, 3, 0, "access-path:access-path:thread-permanently-suspended?", "thread-permanently-suspended?"], [118, 3, 0, "access-path:access-path:thread-permanently-suspended?-setter", "thread-permanently-suspended?-setter"], [118, 3, 0, "access-path:access-path:thread-priority", "thread-priority"], [119, 3, 0, "debugger-manager:debugger-manager:thread-snapshots", "thread-snapshots"], [118, 3, 0, "access-path:access-path:thread-stack", "thread-stack"], [118, 3, 0, "access-path:access-path:thread-stack-setter", "thread-stack-setter"], [118, 3, 0, "access-path:access-path:thread-state", "thread-state"], [118, 3, 0, "access-path:access-path:thread-suspended?", "thread-suspended?"], [177, 3, 0, "dylan:threads:thread-yield", "thread-yield"], [170, 3, 0, "common-dylan:simple-timers:timer-accumulated-time", "timer-accumulated-time"], [170, 3, 0, "common-dylan:simple-timers:timer-running?", "timer-running?"], [170, 3, 0, "common-dylan:simple-timers:timer-start", "timer-start"], [170, 3, 0, "common-dylan:simple-timers:timer-stop", "timer-stop"], [168, 8, 0, "common-dylan:simple-profiling:timing", "timing"], [164, 3, 0, "common-dylan:common-extensions:tokenize-command-line", "tokenize-command-line"], [74, 3, 0, "duim-sheets:duim-sheets:top-level-sheet", "top-level-sheet"], [201, 3, 0, "sql:sql:transaction-mode", "transaction-mode"], [201, 3, 0, "sql:sql:transaction-mode-setter", "transaction-mode-setter"], [70, 3, 0, "duim-geometry:duim-geometry:transform-angles", "transform-angles"], [70, 3, 0, "duim-geometry:duim-geometry:transform-box", "transform-box"], [70, 3, 0, "duim-geometry:duim-geometry:transform-distance", "transform-distance"], [70, 3, 0, "duim-geometry:duim-geometry:transform-position", "transform-position"], [70, 3, 0, "duim-geometry:duim-geometry:transform-region", "transform-region"], [70, 3, 0, "duim-geometry:duim-geometry:transform?", "transform?"], [70, 3, 0, "duim-geometry:duim-geometry:translation-transform?", "translation-transform?"], [69, 3, 0, "duim:duim-gadgets:tree-control-children-generator", "tree-control-children-generator"], [69, 3, 0, "duim:duim-gadgets:tree-control-children-generator-setter", "tree-control-children-generator-setter"], [69, 3, 0, "duim:duim-gadgets:tree-control-children-predicate", "tree-control-children-predicate"], [69, 3, 0, "duim:duim-gadgets:tree-control-children-predicate-setter", "tree-control-children-predicate-setter"], [69, 3, 0, "duim:duim-gadgets:tree-control-icon-function", "tree-control-icon-function"], [69, 3, 0, "duim:duim-gadgets:tree-control-initial-depth", "tree-control-initial-depth"], [69, 3, 0, "duim:duim-gadgets:tree-control-initial-depth-setter", "tree-control-initial-depth-setter"], [69, 3, 0, "duim:duim-gadgets:tree-control-roots", "tree-control-roots"], [69, 3, 0, "duim:duim-gadgets:tree-control-roots-setter", "tree-control-roots-setter"], [192, 3, 0, "dylan:dylan:truncate", "truncate"], [192, 4, 0, "dylan:dylan:truncate([float])", "truncate(<float>)"], [192, 4, 0, "dylan:dylan:truncate([integer])", "truncate(<integer>)"], [192, 4, 0, "dylan:dylan:truncate([machine-number])", "truncate(<machine-number>)"], [192, 3, 0, "dylan:dylan:truncate/", "truncate/"], [192, 4, 0, "dylan:dylan:truncate/([integer],[integer])", "truncate/(<integer>, <integer>)"], [184, 3, 0, "io:streams:type-for-file-stream", "type-for-file-stream"], [184, 3, 0, "io:streams:type-for-sequence-stream", "type-for-sequence-stream"], [166, 3, 0, "common-dylan:machine-words:u%+", "u%+"], [166, 3, 0, "common-dylan:machine-words:u%-", "u%-"], [166, 3, 0, "common-dylan:machine-words:u%[", "u%<"], [166, 3, 0, "common-dylan:machine-words:u%\\*", "u%\\*"], [166, 3, 0, "common-dylan:machine-words:u%divide", "u%divide"], [166, 3, 0, "common-dylan:machine-words:u%rotate-left", "u%rotate-left"], [166, 3, 0, "common-dylan:machine-words:u%rotate-right", "u%rotate-right"], [166, 3, 0, "common-dylan:machine-words:u%shift-left", "u%shift-left"], [166, 3, 0, "common-dylan:machine-words:u%shift-right", "u%shift-right"], [166, 3, 0, "common-dylan:machine-words:ud%divide", "ud%divide"], [166, 3, 0, "common-dylan:machine-words:ud%shift-left", "ud%shift-left"], [166, 3, 0, "common-dylan:machine-words:ud%shift-right", "ud%shift-right"], [68, 3, 0, "duim:duim-frames:undo-command", "undo-command"], [164, 3, 0, "common-dylan:common-extensions:unfound", "unfound"], [164, 3, 0, "common-dylan:common-extensions:unfound?", "unfound?"], [201, 3, 0, "sql:sql:unique-index?", "unique-index?"], [155, 3, 0, "collections:bit-set:universal-bit-set!", "universal-bit-set!"], [184, 3, 0, "io:streams:unlock-stream", "unlock-stream"], [184, 3, 0, "io:streams:unread-element", "unread-element"], [154, 3, 0, "c-ffi:c-ffi:unregister-c-dylan-object", "unregister-C-Dylan-object"], [164, 3, 0, "common-dylan:common-extensions:unsupplied", "unsupplied"], [164, 3, 0, "common-dylan:common-extensions:unsupplied?", "unsupplied?"], [70, 3, 0, "duim-geometry:duim-geometry:untransform-angles", "untransform-angles"], [70, 3, 0, "duim-geometry:duim-geometry:untransform-box", "untransform-box"], [70, 3, 0, "duim-geometry:duim-geometry:untransform-distance", "untransform-distance"], [70, 3, 0, "duim-geometry:duim-geometry:untransform-position", "untransform-position"], [70, 3, 0, "duim-geometry:duim-geometry:untransform-region", "untransform-region"], [69, 3, 0, "duim:duim-gadgets:update-gadget", "update-gadget"], [201, 3, 0, "sql:sql:user", "user"], [159, 3, 0, "collections:plists:value-sequence", "value-sequence"], [161, 3, 0, "collections:table-extensions:values-hash", "values-hash"], [73, 8, 0, "duim-layouts:duim-layouts:vertically", "vertically"], [69, 3, 0, "duim:duim-gadgets:viewport-region", "viewport-region"], [69, 3, 0, "duim:duim-gadgets:viewport?", "viewport?"], [177, 3, 0, "dylan:threads:wait-for", "wait-for"], [177, 4, 0, "dylan:threads:wait-for([notification])", "wait-for(<notification>)"], [177, 4, 0, "dylan:threads:wait-for([read-write-lock])", "wait-for(<read-write-lock>)"], [177, 4, 0, "dylan:threads:wait-for([recursive-lock])", "wait-for(<recursive-lock>)"], [177, 4, 0, "dylan:threads:wait-for([semaphore])", "wait-for(<semaphore>)"], [177, 4, 0, "dylan:threads:wait-for([simple-lock])", "wait-for(<simple-lock>)"], [206, 3, 0, "system:operating-system:wait-for-application-process", "wait-for-application-process"], [184, 3, 0, "io:streams:wait-for-io-completion", "wait-for-io-completion"], [118, 3, 0, "access-path:access-path:wait-for-stop-reason", "wait-for-stop-reason"], [119, 3, 0, "debugger-manager:debugger-manager:wall-time-increment", "wall-time-increment"], [164, 8, 0, "common-dylan:common-extensions:when", "when"], [208, 3, 0, "win32-kernel:win32-kernel:win32-error-message", "win32-error-message"], [208, 3, 0, "win32-user:win32-user:win32-last-handler", "win32-last-handler"], [69, 8, 0, "duim:duim-gadgets:with-border", "with-border"], [74, 8, 0, "duim-sheets:duim-sheets:with-brush", "with-brush"], [154, 8, 0, "c-ffi:c-ffi:with-c-string", "with-c-string"], [74, 8, 0, "duim-sheets:duim-sheets:with-clipboard", "with-clipboard"], [74, 8, 0, "duim-sheets:duim-sheets:with-clipping-region", "with-clipping-region"], [201, 8, 0, "sql:sql:with-connection", "with-connection"], [74, 8, 0, "duim-sheets:duim-sheets:with-cursor-visible", "with-cursor-visible"], [201, 8, 0, "sql:sql:with-database", "with-database"], [201, 8, 0, "sql:sql:with-dbms", "with-dbms"], [74, 8, 0, "duim-sheets:duim-sheets:with-drawing-options", "with-drawing-options"], [74, 8, 0, "duim-sheets:duim-sheets:with-frame-manager", "with-frame-manager"], [74, 8, 0, "duim-sheets:duim-sheets:with-identity-transform", "with-identity-transform"], [184, 8, 0, "io:streams:with-indentation", "with-indentation"], [184, 8, 0, "io:streams:with-input-from-string", "with-input-from-string"], [159, 8, 0, "collections:plists:with-keywords-removed", "with-keywords-removed"], [177, 8, 0, "dylan:threads:with-lock", "with-lock"], [203, 8, 0, "system:file-system:with-open-file", "with-open-file"], [71, 8, 0, "duim-graphics:duim-graphics:with-output-to-pixmap", "with-output-to-pixmap"], [184, 8, 0, "io:streams:with-output-to-string", "with-output-to-string"], [74, 8, 0, "duim-sheets:duim-sheets:with-pen", "with-pen"], [74, 8, 0, "duim-sheets:duim-sheets:with-pointer-grabbed", "with-pointer-grabbed"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:with-program-conditions", "with-program-conditions"], [74, 8, 0, "duim-sheets:duim-sheets:with-rotation", "with-rotation"], [74, 8, 0, "duim-sheets:duim-sheets:with-scaling", "with-scaling"], [199, 8, 0, "network:sockets:with-server-socket", "with-server-socket"], [74, 8, 0, "duim-sheets:duim-sheets:with-sheet-medium", "with-sheet-medium"], [106, 8, 0, "dfmc-conditions:dfmc-conditions:with-simple-abort-retry-restart", "with-simple-abort-retry-restart"], [199, 8, 0, "network:sockets:with-socket-thread", "with-socket-thread"], [69, 8, 0, "duim:duim-gadgets:with-spacing", "with-spacing"], [154, 8, 0, "c-ffi:c-ffi:with-stack-structure", "with-stack-structure"], [184, 8, 0, "io:streams:with-stream-locked", "with-stream-locked"], [74, 8, 0, "duim-sheets:duim-sheets:with-text-style", "with-text-style"], [201, 8, 0, "sql:sql:with-transaction", "with-transaction"], [74, 8, 0, "duim-sheets:duim-sheets:with-transform", "with-transform"], [74, 8, 0, "duim-sheets:duim-sheets:with-translation", "with-translation"], [74, 3, 0, "duim-sheets:duim-sheets:withdraw-sheet", "withdraw-sheet"], [203, 3, 0, "system:file-system:working-directory", "working-directory"], [203, 3, 0, "system:file-system:working-directory-setter", "working-directory-setter"], [184, 3, 0, "io:streams:write", "write"], [118, 3, 0, "access-path:access-path:write-16b", "write-16b"], [118, 3, 0, "access-path:access-path:write-32b", "write-32b"], [118, 3, 0, "access-path:access-path:write-64b", "write-64b"], [118, 3, 0, "access-path:access-path:write-8b", "write-8b"], [118, 3, 0, "access-path:access-path:write-byte-string", "write-byte-string"], [118, 3, 0, "access-path:access-path:write-double-float", "write-double-float"], [118, 4, 0, "access-path:access-path:write-double-float([access-path],[active-remote-register],[double-float])", "write-double-float(<access-path>, <active-remote-register>, <double-float>)"], [118, 4, 0, "access-path:access-path:write-double-float([access-path],[remote-value],[double-float])", "write-double-float(<access-path>, <remote-value>, <double-float>)"], [119, 3, 0, "debugger-manager:debugger-manager:write-dylan-value", "write-dylan-value"], [184, 3, 0, "io:streams:write-element", "write-element"], [66, 3, 0, "duim-dcs:duim-dcs:write-image", "write-image"], [184, 3, 0, "io:streams:write-line", "write-line"], [118, 3, 0, "access-path:access-path:write-single-float", "write-single-float"], [118, 4, 0, "access-path:access-path:write-single-float([access-path],[active-remote-register],[single-float])", "write-single-float(<access-path>, <active-remote-register>, <single-float>)"], [118, 4, 0, "access-path:access-path:write-single-float([access-path],[remote-value],[single-float])", "write-single-float(<access-path>, <remote-value>, <single-float>)"], [118, 3, 0, "access-path:access-path:write-value", "write-value"], [118, 4, 0, "access-path:access-path:write-value([access-path],[active-remote-register],[remote-value])", "write-value(<access-path>, <active-remote-register>, <remote-value>)"], [118, 4, 0, "access-path:access-path:write-value([access-path],[remote-value],[remote-value])", "write-value(<access-path>, <remote-value>, <remote-value>)"], [166, 3, 0, "common-dylan:machine-words:zero?", "zero?"], [192, 3, 0, "dylan:dylan:zero?", "zero?"], [192, 4, 0, "dylan:dylan:zero?([complex])", "zero?(<complex>)"], [192, 4, 0, "dylan:dylan:zero?([machine-number])", "zero?(<machine-number>)"]], "dylan_boolean_p": [[77, 1, 1, "c.dylan_boolean_p", "instance"]], "dylan_class_debug_name": [[77, 1, 1, "c.dylan_class_debug_name", "instance"]], "dylan_class_p": [[77, 1, 1, "c.dylan_class_p", "instance"]], "dylan_double_float_data": [[77, 1, 1, "c.dylan_double_float_data", "instance"]], "dylan_double_float_p": [[77, 1, 1, "c.dylan_double_float_p", "instance"]], "dylan_empty_list_p": [[77, 1, 1, "c.dylan_empty_list_p", "instance"]], "dylan_float_p": [[77, 1, 1, "c.dylan_float_p", "instance"]], "dylan_function_debug_name": [[77, 1, 1, "c.dylan_function_debug_name", "instance"]], "dylan_function_p": [[77, 1, 1, "c.dylan_function_p", "instance"]], "dylan_head": [[77, 1, 1, "c.dylan_head", "instance"]], "dylan_object_class": [[77, 1, 1, "c.dylan_object_class", "instance"]], "dylan_pair_p": [[77, 1, 1, "c.dylan_pair_p", "instance"]], "dylan_print_object": [[77, 1, 1, "c.dylan_print_object", "object"]], "dylan_simple_condition_format_args": [[77, 1, 1, "c.dylan_simple_condition_format_args", "instance"]], "dylan_simple_condition_format_string": [[77, 1, 1, "c.dylan_simple_condition_format_string", "instance"]], "dylan_simple_condition_p": [[77, 1, 1, "c.dylan_simple_condition_p", "instance"]], "dylan_single_float_data": [[77, 1, 1, "c.dylan_single_float_data", "instance"]], "dylan_single_float_p": [[77, 1, 1, "c.dylan_single_float_p", "instance"]], "dylan_string_data": [[77, 1, 1, "c.dylan_string_data", "instance"]], "dylan_string_p": [[77, 1, 1, "c.dylan_string_p", "instance"]], "dylan_symbol_name": [[77, 1, 1, "c.dylan_symbol_name", "instance"]], "dylan_symbol_p": [[77, 1, 1, "c.dylan_symbol_p", "instance"]], "dylan_tail": [[77, 1, 1, "c.dylan_tail", "instance"]], "dylan_true_p": [[77, 1, 1, "c.dylan_true_p", "instance"]], "dylan_vector_p": [[77, 1, 1, "c.dylan_vector_p", "instance"]], "gf_optional_xep": [[176, 1, 1, "c.gf_optional_xep", "argument_count"], [176, 1, 1, "c.gf_optional_xep", "function"]], "gf_xep": [[176, 1, 1, "c.gf_xep", "argument_count"], [176, 1, 1, "c.gf_xep", "function"]], "gf_xep_0": [[176, 1, 1, "c.gf_xep_0", "argument_count"], [176, 1, 1, "c.gf_xep_0", "function"]], "gf_xep_1": [[176, 1, 1, "c.gf_xep_1", "argument_count"], [176, 1, 1, "c.gf_xep_1", "function"]], "gf_xep_2": [[176, 1, 1, "c.gf_xep_2", "argument_count"], [176, 1, 1, "c.gf_xep_2", "function"]], "gf_xep_3": [[176, 1, 1, "c.gf_xep_3", "argument_count"], [176, 1, 1, "c.gf_xep_3", "function"]], "gf_xep_4": [[176, 1, 1, "c.gf_xep_4", "argument_count"], [176, 1, 1, "c.gf_xep_4", "function"]], "gf_xep_5": [[176, 1, 1, "c.gf_xep_5", "argument_count"], [176, 1, 1, "c.gf_xep_5", "function"]], "gf_xep_6": [[176, 1, 1, "c.gf_xep_6", "argument_count"], [176, 1, 1, "c.gf_xep_6", "function"]], "gf_xep_7": [[176, 1, 1, "c.gf_xep_7", "argument_count"], [176, 1, 1, "c.gf_xep_7", "function"]], "gf_xep_8": [[176, 1, 1, "c.gf_xep_8", "argument_count"], [176, 1, 1, "c.gf_xep_8", "function"]], "gf_xep_9": [[176, 1, 1, "c.gf_xep_9", "argument_count"], [176, 1, 1, "c.gf_xep_9", "function"]], "optional_xep": [[176, 1, 1, "c.optional_xep", "argument_count"], [176, 1, 1, "c.optional_xep", "function"]], "primitive_allocate": [[176, 1, 1, "c.primitive_allocate", "size"]], "primitive_allocate_vector": [[176, 1, 1, "c.primitive_allocate_vector", "size"]], "primitive_basic_iep_apply": [[176, 1, 1, "c.primitive_basic_iep_apply", "a"], [176, 1, 1, "c.primitive_basic_iep_apply", "argument_count"], [176, 1, 1, "c.primitive_basic_iep_apply", "f"]], "primitive_byte_allocate": [[176, 1, 1, "c.primitive_byte_allocate", "byte_size"], [176, 1, 1, "c.primitive_byte_allocate", "word_size"]], "primitive_copy_vector": [[176, 1, 1, "c.primitive_copy_vector", "vector"]], "primitive_fill_E_": [[176, 1, 1, "c.primitive_fill_E_", "size"], [176, 1, 1, "c.primitive_fill_E_", "storage"], [176, 1, 1, "c.primitive_fill_E_", "value"]], "primitive_iep_apply": [[176, 1, 1, "c.primitive_iep_apply", "a"], [176, 1, 1, "c.primitive_iep_apply", "argument_count"], [176, 1, 1, "c.primitive_iep_apply", "f"]], "primitive_initialize_vector_from_buffer": [[176, 1, 1, "c.primitive_initialize_vector_from_buffer", "buffer"], [176, 1, 1, "c.primitive_initialize_vector_from_buffer", "size"], [176, 1, 1, "c.primitive_initialize_vector_from_buffer", "vector"]], "primitive_inlined_nlx": [[176, 1, 1, "c.primitive_inlined_nlx", "first_argument"], [176, 1, 1, "c.primitive_inlined_nlx", "target"]], "primitive_make_box": [[176, 1, 1, "c.primitive_make_box", "object"]], "primitive_make_environment": [[176, 1, 1, "c.primitive_make_environment", "size"]], "primitive_make_string": [[176, 1, 1, "c.primitive_make_string", "string"]], "primitive_nlx": [[176, 1, 1, "c.primitive_nlx", "arguments"], [176, 1, 1, "c.primitive_nlx", "target"]], "primitive_replace_E_": [[176, 1, 1, "c.primitive_replace_E_", "dst"], [176, 1, 1, "c.primitive_replace_E_", "size"], [176, 1, 1, "c.primitive_replace_E_", "src"]], "primitive_replace_vector_E_": [[176, 1, 1, "c.primitive_replace_vector_E_", "dest"], [176, 1, 1, "c.primitive_replace_vector_E_", "source"]], "primitive_xep_apply": [[176, 1, 1, "c.primitive_xep_apply", "a"], [176, 1, 1, "c.primitive_xep_apply", "argument_count"], [176, 1, 1, "c.primitive_xep_apply", "f"]], "xep": [[176, 1, 1, "c.xep", "argument_count"], [176, 1, 1, "c.xep", "function"]], "xep_0": [[176, 1, 1, "c.xep_0", "argument_count"], [176, 1, 1, "c.xep_0", "function"]], "xep_1": [[176, 1, 1, "c.xep_1", "argument_count"], [176, 1, 1, "c.xep_1", "function"]], "xep_2": [[176, 1, 1, "c.xep_2", "argument_count"], [176, 1, 1, "c.xep_2", "function"]], "xep_3": [[176, 1, 1, "c.xep_3", "argument_count"], [176, 1, 1, "c.xep_3", "function"]], "xep_4": [[176, 1, 1, "c.xep_4", "argument_count"], [176, 1, 1, "c.xep_4", "function"]], "xep_5": [[176, 1, 1, "c.xep_5", "argument_count"], [176, 1, 1, "c.xep_5", "function"]], "xep_6": [[176, 1, 1, "c.xep_6", "argument_count"], [176, 1, 1, "c.xep_6", "function"]], "xep_7": [[176, 1, 1, "c.xep_7", "argument_count"], [176, 1, 1, "c.xep_7", "function"]], "xep_8": [[176, 1, 1, "c.xep_8", "argument_count"], [176, 1, 1, "c.xep_8", "function"]], "xep_9": [[176, 1, 1, "c.xep_9", "argument_count"], [176, 1, 1, "c.xep_9", "function"]]}, "objtypes": {"0": "c:function", "1": "c:functionParam", "2": "dylan:constant", "3": "dylan:function", "4": "dylan:method", "5": "dylan:variable", "6": "dylan:class", "7": "dylan:type", "8": "dylan:macro", "9": "dylan:library", "10": "dylan:module"}, "objnames": {"0": ["c", "function", "C function"], "1": ["c", "functionParam", "C function parameter"], "2": ["dylan", "constant", "Dylan constant"], "3": ["dylan", "function", "Dylan function"], "4": ["dylan", "method", "Dylan method"], "5": ["dylan", "variable", "Dylan variable"], "6": ["dylan", "class", "Dylan class"], "7": ["dylan", "type", "Dylan type"], "8": ["dylan", "macro", "Dylan macro"], "9": ["dylan", "library", "Dylan library"], "10": ["dylan", "module", "Dylan module"]}, "titleterms": {"class": [0, 20, 26, 45, 66, 67, 68, 69, 70, 73, 74, 118, 152, 154, 174, 177, 184, 192, 199, 201, 208, 257], "instanti": 0, "everyth": 1, "i": [1, 11, 71, 96, 174, 233, 247, 248], "valu": [1, 8, 13, 48, 69, 90, 107, 119, 125, 147, 149, 201, 203, 208, 257], "gener": [2, 11, 26, 47, 54, 64, 77, 90, 112, 131, 149, 152, 176, 177, 192, 246, 257], "function": [2, 3, 11, 12, 16, 58, 59, 64, 71, 79, 94, 101, 118, 119, 124, 131, 149, 152, 153, 154, 161, 166, 171, 176, 182, 184, 186, 189, 201, 208, 234, 257], "getter": [3, 152], "setter": [3, 152, 154, 203, 246], "ar": [3, 77, 106], "hello": [4, 47, 83, 101], "world": [4, 37, 47, 83, 90], "how": [4, 11, 15, 52, 94, 104, 106, 174], "work": [4, 52, 92, 94, 102, 106, 131, 174, 206, 233], "keyword": [5, 52, 149, 198, 257], "argument": [5, 10, 64, 94, 118, 121, 149], "limit": [6, 239, 246], "type": [6, 10, 11, 44, 48, 55, 92, 101, 127, 133, 147, 154, 184, 192, 198, 201, 203, 208, 233, 239], "macro": [7, 11, 26, 64, 107, 108, 140, 154, 184, 191, 201, 257], "multipl": [8, 11, 13, 107, 125, 151, 173, 174, 177, 208], "return": [8, 145, 149, 203, 208, 257], "A": [9, 12, 19, 23, 25, 26, 47, 59, 69, 87, 208, 225], "quick": [9, 47, 87, 102], "tour": [9, 26], "dylan": [9, 11, 15, 25, 27, 28, 30, 33, 36, 42, 44, 45, 48, 50, 54, 59, 61, 62, 63, 77, 78, 79, 80, 84, 89, 94, 95, 98, 99, 100, 102, 103, 105, 115, 117, 118, 119, 127, 132, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 148, 152, 153, 154, 165, 166, 173, 175, 176, 177, 178, 188, 192, 198, 201, 208, 209, 210, 213, 219, 220, 221, 222, 224, 227, 228, 229, 230, 231, 232, 238, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257], "bit": [9, 155, 156, 208], "more": [9, 87, 90, 135], "background": [9, 11, 48, 238], "beyond": 10, "java": 10, "The": [10, 11, 13, 16, 20, 22, 23, 25, 43, 45, 48, 52, 58, 66, 67, 68, 69, 70, 73, 74, 90, 92, 94, 96, 99, 100, 101, 102, 105, 106, 118, 119, 121, 122, 127, 133, 147, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 173, 174, 175, 176, 177, 179, 180, 181, 182, 183, 184, 192, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 243], "ag": 10, "problem": [10, 37, 97], "solut": 10, "an": [10, 16, 47, 48, 79, 90, 92, 94, 102, 103, 148, 177], "exampl": [10, 19, 24, 37, 46, 48, 50, 54, 64, 79, 92, 94, 111, 119, 173, 185, 198, 201, 234, 235, 237, 243], "singl": [10, 19, 166, 177, 238], "implement": [10, 17, 43, 45, 47, 48, 127, 135, 143, 185, 201, 235, 238, 239, 240, 241, 242, 243], "inherit": [10, 48, 86], "method": [10, 16, 17, 45, 121, 131, 149, 174, 189, 201, 208, 257], "dispatch": [10, 29, 91, 131, 151], "part": [10, 51], "ii": 10, "visitor": 10, "horror": 10, "primit": [10, 127, 176], "distinct": 10, "from": [10, 16, 26, 47, 90, 99, 101, 145, 166, 184, 192, 201, 202, 208, 237], "object": [10, 45, 47, 48, 64, 77, 90, 118, 119, 124, 151, 152, 153, 154, 173, 174, 184, 194, 198, 201], "cast": 10, "requir": [10, 17, 43, 45, 46, 48, 177, 233], "No": 10, "extens": [10, 118, 119, 161, 164, 178, 187, 188, 191, 192, 198, 236, 248], "syntax": [10, 11, 59, 60, 143, 153, 185, 193, 196, 241, 242, 243, 246], "poor": 10, "iter": [10, 14, 58, 159, 187, 192], "collect": [10, 26, 55, 58, 69, 153, 158, 192, 201, 239, 246, 247, 250, 251, 252], "integr": [10, 201], "conclus": 10, "acknowledg": 10, "system": [11, 23, 104, 132, 143, 176, 191, 203, 204, 206, 247, 248, 249, 250, 251, 252, 253, 255], "overview": [11, 22, 26, 45, 66, 67, 68, 69, 70, 71, 73, 74, 154, 159, 184, 199], "anatomi": 11, "term": [11, 48], "definit": [11, 16, 17, 71, 97, 102, 108, 132, 186, 257], "main": [11, 77], "rule": [11, 104, 243], "bodi": 11, "style": [11, 257], "list": [11, 16, 17, 25, 26, 60, 90, 111, 130, 149, 207, 257], "statement": [11, 201], "pattern": 11, "subdivis": 11, "final": [11, 23, 101, 107, 127, 174], "item": [11, 20], "properti": [11, 26, 90, 154, 192, 203], "variabl": [11, 82, 89, 90, 94, 97, 104, 124, 127, 147, 154, 166, 176, 177, 246, 250], "simpl": [11, 12, 19, 58, 119, 150, 167, 168, 169, 170, 176, 177, 208], "wildcard": 11, "auxiliari": [11, 233], "set": [11, 16, 46, 52, 85, 89, 94, 101, 155, 160, 201], "substitut": 11, "convers": [11, 133, 201], "concaten": 11, "unhygien": 11, "refer": [11, 47, 48, 61, 72, 100, 106, 159, 171, 173, 178, 184, 185, 203, 233, 235, 239, 240, 241, 242, 243], "expans": [11, 195], "effect": [11, 91, 94, 174, 177], "constraint": [11, 201], "empti": 11, "miss": 11, "code": [11, 25, 34, 41, 46, 47, 54, 64, 77, 86, 91, 94, 118, 119, 127, 201, 213, 225, 246], "fragment": [11, 64], "complex": 11, "option": [11, 52, 54, 94, 96, 101, 150, 154, 198, 203], "recurs": [11, 58, 176, 177], "hygien": 11, "break": [11, 58, 77], "faq": 11, "tip": [11, 87], "advic": 11, "troubleshoot": 11, "can": [11, 69, 174], "combin": [11, 208], "name": [11, 48, 60, 77, 101, 119, 123, 132, 147, 198, 208, 236, 257], "one": [11, 90], "write": [11, 15, 44, 114, 118, 174, 184], "follow": 11, "bnf": [11, 243], "like": 11, "t": [11, 154, 207], "make": [11, 102, 117, 152, 249], "bare": [11, 149], "distanc": 12, "condit": [13, 56, 64, 106, 145, 177, 184, 199, 201, 203, 208], "quadrat": 13, "formula": 13, "sequenc": [14, 48, 184], "dot": [14, 257], "product": [14, 51, 89], "procedur": 15, "pascal": 15, "program": [15, 22, 99, 103, 106, 138, 220, 232], "ad": [16, 19, 20, 23, 85, 101, 107], "callback": [16, 17, 20, 26, 69, 208], "applic": [16, 19, 20, 21, 23, 37, 44, 47, 53, 90, 91, 94, 95, 97, 99, 101, 102, 103, 118, 119, 132, 174, 198, 201, 206, 208], "defin": [16, 20, 26, 47, 106, 107, 154, 208, 234], "underli": 16, "data": [16, 119, 201], "structur": [16, 48, 64, 131, 154, 208], "task": [16, 17, 25, 130], "specifi": [16, 26, 101, 198], "each": 16, "gadget": [16, 25, 26, 69], "handl": [16, 183, 201, 208], "file": [16, 25, 44, 48, 52, 77, 86, 92, 96, 99, 101, 104, 118, 184, 198, 203, 233, 238], "manag": [16, 17, 25, 37, 48, 85, 108, 115, 119, 120], "open": [16, 45, 50, 61, 63, 84, 98, 99, 101, 102, 117, 143, 144, 198, 210, 213, 219, 222, 224, 227, 228, 229, 231, 240, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256], "save": [16, 97, 101], "load": [16, 97], "remov": [16, 213], "duim": [16, 19, 21, 22, 26, 66, 67, 68, 69, 70, 71, 72, 73, 74, 115, 143, 223, 225, 232, 251], "support": [16, 53, 81, 127, 208, 218, 225, 232, 247, 251, 252], "non": [16, 52, 236], "updat": [16, 85, 177, 232, 233, 253, 254, 255], "user": [16, 37, 89, 115, 237], "interfac": [16, 37, 44, 47, 48, 64, 92, 96, 115, 119, 127, 140, 174], "initi": [16, 43, 45, 47, 99, 152, 174, 246], "new": [16, 20, 26, 99, 101, 106, 132, 135, 203, 211, 212, 216, 217, 232, 236], "instanc": [16, 192, 247], "frame": [16, 17, 20, 25, 26, 68, 94, 118], "determin": 16, "select": [16, 56, 257], "enabl": 16, "disabl": 16, "button": [16, 17, 26, 69], "refresh": 16, "creat": [16, 19, 20, 23, 26, 44, 47, 52, 92, 99, 101, 118, 132, 203, 208, 233], "inform": [16, 52, 101, 115, 176, 202, 203, 206], "dialog": [16, 20, 26], "exit": [16, 107, 125, 174], "enhanc": [16, 244], "us": [17, 19, 22, 25, 26, 52, 54, 71, 77, 78, 88, 90, 94, 95, 96, 101, 104, 154, 166, 174, 184, 192, 201, 214], "command": [17, 25, 68, 84, 94, 96, 217, 232, 248], "tabl": [17, 25, 26, 58, 161, 173, 174, 190, 192, 197, 201], "introduct": [17, 19, 22, 26, 48, 54, 108, 119, 125, 148, 246, 247, 248, 249], "re": 17, "menu": [17, 23, 25, 26, 69, 94, 96], "includ": [17, 198], "chang": [17, 94, 96, 102, 117, 143, 213, 246, 250, 251, 252], "run": [17, 19, 24, 46, 53, 90, 95, 97, 99, 102, 103, 108, 132, 206, 246, 249, 250, 251, 252], "2": [17, 201, 224, 232, 248, 255], "copyright": [18, 65, 75, 93, 109, 146, 172, 185, 233, 235, 242, 247], "design": [19, 20, 23, 48, 107, 154], "basic": [19, 26, 44, 48, 94, 154, 161, 166, 177, 199], "sheet": [19, 26, 55, 56, 57, 58, 60, 74], "hierarchi": [19, 23, 66, 67, 68, 69, 70, 73, 74, 106, 118, 177], "place": 19, "all": [19, 244], "element": [19, 194, 239, 241], "layout": [19, 26, 73, 86, 94, 96], "redesign": 19, "radio": 19, "box": [19, 26, 69, 124], "contain": 19, "interact": [19, 30, 78, 79, 94, 96, 99], "improv": [20, 213, 218, 232, 246, 247, 248], "project": [20, 37, 44, 47, 52, 86, 90, 92, 94, 96, 99, 101, 102], "start": [20, 47, 84, 94, 98, 99, 101, 102, 103], "default": [20, 241], "tool": [20, 30, 84, 92, 247, 248, 252, 253, 255], "bar": [20, 26, 69], "statu": [20, 69, 106, 233, 234, 237], "glu": [20, 23], "togeth": [20, 23], "build": [21, 46, 47, 89, 95, 99, 101, 102, 104, 132, 247, 248, 249, 250, 251], "With": 21, "librari": [22, 26, 44, 45, 48, 66, 67, 68, 69, 70, 71, 73, 74, 90, 92, 95, 99, 101, 106, 118, 119, 132, 133, 150, 154, 158, 162, 165, 173, 175, 176, 177, 178, 181, 192, 198, 199, 200, 201, 204, 206, 207, 208, 213, 216, 217, 225, 232, 236, 238, 246, 247, 248, 250, 251, 252, 253, 254, 255], "model": [22, 99, 108, 118, 119, 121, 238], "It": 22, "should": [22, 174], "easi": 22, "possibl": 22, "compact": 22, "portabl": [22, 48, 127, 247], "To": 23, "descript": [23, 198, 209], "document": [23, 30, 48, 61, 111, 112, 114, 133, 201, 210, 211, 232, 246, 247, 248, 250, 251, 252], "string": [23, 48, 60, 179, 184, 196, 216, 232, 236, 240, 243, 249], "keyboard": 23, "acceler": 23, "prefac": [24, 51, 100], "about": [24, 46, 47, 50, 52, 62, 90, 91, 94, 95], "thi": [24, 47, 64, 100, 106, 184, 201], "manual": [24, 64, 100], "further": [24, 51], "read": [24, 51, 118, 159, 173, 184], "sourc": [25, 88, 90, 91, 94, 96, 99, 101, 106, 118, 119, 143, 198], "For": [25, 61, 225], "content": [25, 208], "standard": [26, 51, 152, 183, 198], "displai": [26, 90, 96, 106], "control": [26, 69, 71, 94, 96, 97, 118, 119, 179], "tree": 26, "spin": 26, "text": [26, 69, 81, 162, 218], "field": [26, 208], "editor": [26, 81, 91, 96, 218, 225, 232], "password": 26, "rang": [26, 58, 69, 192], "scroll": 26, "slider": 26, "progress": [26, 200, 251], "assign": [26, 53, 107, 147], "row": 26, "column": 26, "stack": [26, 77, 90, 94, 97, 118, 119], "pinboard": 26, "fix": [26, 48, 97, 246, 247, 248], "horizont": 26, "vertic": 26, "them": 26, "screen": 26, "slot": [26, 106, 152, 189, 208, 246], "pane": [26, 94], "where": [26, 46], "go": [26, 94], "here": 26, "cilk": 27, "cocoa": [28, 225], "optim": [29, 91, 107, 108, 131], "searchabl": 30, "browsabl": 30, "api": [30, 106, 208, 236], "graph": [30, 108, 127, 246], "dylint": 31, "frontend": 32, "lisp": [32, 140], "gtk": [33, 115, 223, 225, 251], "googl": [34, 41], "summer": [34, 41], "2012": [34, 219, 232, 246], "javascript": 35, "compil": [35, 44, 52, 54, 76, 77, 78, 89, 90, 91, 94, 97, 99, 101, 104, 105, 107, 108, 127, 128, 131, 132, 176, 198, 209, 213, 246, 247, 249, 250, 251, 252, 253, 254, 255], "backend": 35, "numer": [36, 154, 193, 199, 242], "rethink": 37, "current": 37, "situat": 37, "better": 37, "propos": [37, 236, 242, 244], "workspac": 37, "packag": [37, 225, 226, 232], "catalog": 37, "softwar": [37, 49], "distribut": 37, "version": [37, 63, 99, 101, 135, 154, 198, 233], "develop": [37, 49, 61, 94, 96, 99, 135, 214], "process": [37, 103, 118, 201], "glossari": [37, 48, 116], "speed": 38, "static": [39, 153], "link": [39, 101, 154], "trace": [40, 77, 119, 154, 191], "connect": [42, 118, 201], "commun": 42, "bank": [43, 44, 45, 46], "client": [43, 46, 47, 52, 53, 92, 94, 177], "": [43, 45, 47, 90, 94, 96, 97, 117, 143, 198, 201, 208, 210], "perspect": [43, 45], "gui": [43, 45, 101], "corba": [43, 44, 45, 47, 49, 50, 52, 53, 251], "idl": [44, 47, 48, 52, 54], "account": 44, "checkingaccount": 44, "step": [44, 94, 118, 119], "map": [44, 48, 58, 119, 154, 201, 208], "attribut": [44, 48, 162], "oper": [44, 47, 48, 53, 55, 60, 166, 177, 192, 202, 203, 206, 257], "except": [44, 48, 94, 118], "server": [45, 46, 47, 52, 53, 92, 94, 103, 199], "odbc": [45, 46, 201], "databas": [45, 46, 90, 99, 173, 201], "sql": [45, 201], "adapt": [45, 48], "modul": [45, 48, 64, 66, 67, 68, 69, 70, 71, 73, 74, 118, 133, 147, 150, 155, 156, 157, 159, 160, 161, 162, 163, 164, 166, 167, 168, 169, 170, 171, 173, 174, 176, 177, 179, 180, 182, 183, 184, 192, 201, 202, 203, 205, 206, 207, 238], "servant": [45, 48], "up": [46, 85, 90, 94, 99], "find": [46, 77, 203], "regist": [46, 119, 121, 174], "window": [46, 63, 89, 94, 96, 101, 102, 208, 225, 247], "10": 46, "tutori": 47, "chapter": [47, 100], "base": [47, 74, 101, 104, 174, 198], "stub": [47, 92], "skeleton": [47, 48], "protocol": [47, 69, 177, 184, 190, 192, 199, 201], "brows": [47, 53, 90, 94, 97], "detour": 47, "orb": [47, 48, 50, 52, 53], "obtain": 47, "invok": [47, 96, 104], "complet": [47, 249], "note": [47, 48, 89, 106, 107, 154, 208, 239, 245, 246, 247, 248, 249, 256], "terminologi": [47, 64, 121, 154, 233], "test": [47, 92, 132, 247], "bind": [48, 99, 107, 125, 177, 225], "convent": [48, 60, 64, 71, 96, 121, 147, 198, 208], "bibliographi": 48, "rational": [48, 185, 234, 235, 237, 238, 239, 240, 241, 243], "philosophi": [48, 106], "linguist": 48, "engin": 48, "miscellan": [48, 54, 94, 246], "summari": [48, 236], "lexic": [48, 118], "identifi": 48, "specif": [48, 86, 92, 118, 151, 185, 192, 203, 234, 235, 237, 238, 239, 240, 241, 243, 246], "liter": [48, 59, 60, 193, 196, 242, 243], "integ": [48, 124, 154, 176, 192, 251], "float": [48, 154, 176], "point": [48, 64, 119, 121, 176], "number": [48, 132, 192, 233, 244], "charact": [48, 124, 208], "decim": 48, "constant": [48, 90, 133, 147, 171, 189, 208, 246, 257], "express": [48, 102, 147], "scope": 48, "overal": [48, 69, 73], "wide": [48, 90], "boolean": 48, "octet": 48, "ani": 48, "construct": [48, 107, 133, 187, 192, 247], "typedef": 48, "enumer": 48, "discrimin": [48, 131], "union": [48, 154], "arrai": 48, "In": [48, 104, 152], "paramet": [48, 60, 90, 94, 149, 257], "out": [48, 58, 94, 180, 203], "inout": 48, "memori": [48, 118, 143], "consider": [48, 244], "multi": [48, 177, 240, 243, 246], "thread": [48, 53, 90, 94, 118, 127, 176, 177, 246], "pseudo": 48, "equal": [48, 147, 192], "nil": 48, "dynam": [48, 135, 138, 153, 177], "invoc": 48, "nvlist": 48, "routin": 48, "compon": [49, 94, 99], "featur": [50, 90, 96, 125, 127, 177, 192], "audienc": [51, 64], "complianc": 51, "role": 52, "spec": 52, "affect": [52, 233], "header": [52, 198, 233, 238], "other": [52, 143, 208, 246], "debug": [53, 77, 94, 101, 103, 115, 119, 128, 246, 249, 250, 251], "id": [53, 98, 135, 251, 252], "runtim": [53, 119, 120, 122, 127, 131, 176, 247, 248], "implicit": 53, "activ": [53, 94, 96], "port": [53, 132], "poa": 53, "switch": 53, "usag": [54, 162], "preprocessor": 54, "cheat": [55, 56, 57, 58, 60], "common": [55, 164, 165, 247, 248, 249, 250, 251, 252], "mutabl": 55, "v": [55, 153, 208], "immut": [55, 64], "case": [56, 257], "unless": 56, "when": [56, 174, 184, 203], "while": 58, "until": 58, "loop": [58, 257], "over": [58, 94], "do": 58, "reduc": 58, "reduce1": 58, "tail": 58, "primer": 59, "scheme": [59, 124], "programm": 59, "predefin": 59, "format": [60, 133, 167, 179, 180, 198, 202, 233], "learn": [61, 90], "articl": 61, "public": [61, 62, 131], "instal": [63, 95, 103, 214], "unix": 63, "platform": [63, 86, 132, 251, 252], "older": 63, "goal": [64, 121, 184, 236, 238], "purpos": [64, 233], "spread": 64, "behavior": 64, "special": [64, 96, 125, 154, 192], "expand": [64, 108], "call": [64, 94, 118, 121, 154, 191, 225, 257], "advertis": 64, "pertain": 64, "error": [64, 66, 70, 97, 106, 128, 201, 208, 248], "dc": 66, "subclass": [66, 67, 68, 69, 70, 73, 74, 237], "ink": 66, "provid": [66, 70], "extend": [67, 177], "geometri": [67, 70], "area": 67, "path": [67, 71, 118], "its": [68, 69, 70, 73], "event": [68, 74], "page": [68, 69, 90, 101, 118], "kei": 69, "varieti": 69, "have": 69, "children": 69, "tab": 69, "group": 69, "region": 70, "graphic": 71, "draw": 71, "approxim": 71, "render": 71, "geometr": 71, "shape": 71, "permiss": 71, "altern": [71, 185, 238], "dure": 71, "relat": [71, 154, 201], "describ": [71, 154], "appear": 71, "devic": 74, "cross": [76, 132], "gdb": [77, 246], "lldb": 77, "which": 77, "back": [77, 97, 115, 132, 213, 223, 246], "end": [77, 115, 132, 213, 246, 257], "you": 77, "c": [77, 127, 132, 154, 198, 208, 246, 249, 250, 251], "correspond": [77, 127], "understand": 77, "mangl": [77, 123], "inspect": [77, 119], "harp": [77, 126, 143], "environ": [79, 82, 89, 99, 135, 177, 206], "interactor": 80, "mode": [80, 91, 99], "emac": [80, 81, 214], "dime": [80, 214], "atom": [81, 127, 177], "intellij": 81, "sublim": [81, 218], "textmat": [81, 218], "vim": [81, 218], "get": [84, 98, 115], "line": [84, 94, 184, 217, 232, 240, 243, 248, 257], "depend": [85, 246], "git": 85, "submodul": [85, 253, 254], "registri": [85, 86, 88, 132], "entri": [85, 121, 176], "transit": 85, "lid": [86, 101, 132, 198, 238], "few": 87, "open_dylan_user_registri": 88, "search": [88, 97, 250], "order": [88, 177], "locat": [89, 101, 106, 119, 203, 205, 246], "browser": [90, 137], "similar": 90, "between": [90, 119, 127], "web": 90, "time": [90, 94, 95, 97, 99, 108, 131, 132, 202, 249, 250, 251, 252], "context": [90, 94, 96, 119], "reversi": [90, 91, 94, 102], "navig": 90, "move": [90, 101], "anoth": 90, "histori": [90, 143, 233, 234, 237, 238, 240, 241, 243], "namespac": 90, "issu": [90, 240], "local": [90, 94, 97, 107, 149, 257], "paus": [90, 94], "keep": [90, 94], "date": [90, 94, 202], "color": [91, 162, 250], "edit": [91, 104], "mean": 91, "com": 92, "pair": 92, "vtabl": 92, "dual": 92, "debugg": [94, 118, 119], "titl": 94, "execut": [94, 99, 102, 198, 201, 246, 249], "stop": [94, 118, 119], "resum": 94, "restart": [94, 106, 118, 119, 145], "techniqu": 94, "dll": [94, 95, 102], "ol": 94, "choos": [94, 101, 104], "session": 94, "playground": [94, 230, 232], "access": [94, 118], "breakpoint": [94, 118], "shortcut": [94, 96], "export": [94, 101, 192], "bug": [94, 97, 233, 247, 248], "report": [94, 106, 233, 248], "warn": [94, 97, 106, 201], "just": 94, "deliv": 95, "releas": [95, 130, 141, 213, 219, 222, 224, 227, 228, 229, 231, 232, 245, 246, 247, 248, 249, 256], "folder": 95, "visual": 96, "sourcesaf": 96, "what": [96, 174, 233], "rebuild": 97, "treatment": 97, "backtrac": [97, 118, 119], "caus": 97, "game": 97, "deliver": 99, "disk": 99, "increment": 99, "cycl": 99, "linker": [99, 198], "within": [99, 101], "view": 99, "guid": [100, 117, 220, 232, 257], "wizard": 101, "examin": 101, "custom": [101, 132], "advanc": 101, "delet": 101, "insert": 101, "posit": 101, "target": [101, 119, 132, 198, 233], "section": 101, "address": [101, 119, 198, 199], "subsystem": 101, "three": 102, "wai": 102, "look": [102, 117], "remot": [103, 118, 119], "machin": [103, 105, 166, 176], "attach": [103, 118], "jam": [104, 198], "why": [104, 153], "script": [104, 132], "automat": [104, 174], "addit": 104, "built": [104, 152], "dfmc": [105, 106, 108, 143, 249], "flow": [105, 108, 127, 233], "ppml": [106, 133], "pretti": [106, 182], "print": [106, 119, 133, 182], "markup": 106, "languag": [106, 127, 153, 188, 190, 201, 246], "filter": 106, "record": [106, 201], "respond": 106, "futur": [106, 131], "signal": [106, 145, 166], "preserv": 106, "recoveri": [106, 145], "subnot": 106, "unclassifi": 106, "old": [107, 108], "dfm": [107, 128], "comput": 107, "block": [107, 145], "unwind": [107, 125], "protect": [107, 118, 125], "pass": [107, 121], "intern": [108, 121, 128, 168], "reader": [108, 177], "excurs": 108, "convert": 108, "typist": 108, "doctow": 110, "skip": 111, "guidelin": [113, 117, 233], "gender": 113, "tens": 113, "3": [115, 201], "x": [115, 213], "quartz": 115, "maco": [115, 154], "hacker": 117, "idea": 117, "licens": [117, 247], "queri": [118, 184], "watchpoint": 118, "reason": [118, 119], "receiv": 118, "level": [118, 119, 176, 177], "first": 118, "chanc": 118, "continu": 118, "symbol": [118, 119, 257], "lookup": 118, "disassembli": 118, "transact": 119, "cach": 119, "util": [119, 154, 199], "conveni": [119, 184], "registr": [119, 174], "foreign": [119, 127, 198], "profil": [119, 131, 168], "extract": [119, 202], "some": 121, "extern": 121, "represent": [124, 131], "tag": 124, "size": [124, 154], "startup": 126, "llvm": [126, 132, 250], "win32": [126, 208], "layer": 127, "fluid": 127, "crash": 128, "dump": [128, 173], "output": [128, 183, 184, 201, 246], "topic": 129, "check": 130, "post": [130, 233], "analysi": 131, "perform": [131, 132, 202, 237, 246], "highlight": 131, "your": 132, "magic": 132, "autoconf": 132, "prepar": 132, "garbag": [132, 153], "collector": [132, 157], "without": 132, "token": 133, "constructor": [133, 192], "alias": 133, "appl": [134, 135, 136, 137, 138, 139, 140, 141, 142, 143], "cambridg": 134, "eulogi": 135, "mcl": 135, "sk8": 135, "influenc": 135, "radic": 135, "screenshot": [137, 138, 139, 140], "misc": 140, "builder": 140, "leftov": 140, "technologi": 141, "todai": 142, "harlequin": 143, "deuc": 143, "pool": 143, "demis": 143, "gwydion": [143, 237], "mindi": 143, "d2c": 143, "handler": 145, "true": 147, "fals": 147, "natur": 147, "ident": [147, 184], "parallel": [147, 174], "declar": 147, "rest": 149, "import": 150, "seal": 150, "sever": 152, "abstract": [152, 185, 199, 235, 236, 237, 238, 239, 240, 241, 242, 243], "overrid": 152, "algebra": 153, "infix": 153, "orient": [153, 173, 201], "Not": 153, "ffi": [154, 246, 249, 250, 251], "against": 154, "framework": 154, "pkg": 154, "config": 154, "fundament": 154, "pointer": 154, "char": 154, "sign": [154, 166], "unsign": [154, 166], "short": 154, "long": 154, "int": 154, "doubl": [154, 166], "ssize": 154, "alloc": 154, "dealloc": 154, "storag": 154, "vector": [156, 163, 247], "plist": 159, "modifi": [159, 233], "hash": [161, 248, 249], "weak": [161, 174, 197], "stream": [162, 184, 200, 203, 250, 251], "intens": 162, "byte": [163, 247], "word": [166, 257], "overflow": 166, "random": 169, "timer": [170, 176, 177], "transcendent": 171, "dood": 173, "schema": 173, "proxi": 173, "compress": 173, "drain": 174, "queue": 174, "after": 174, "upon": 174, "resurrect": 174, "directli": 174, "simplic": 174, "robust": 174, "singleton": 174, "my": 174, "lock": [176, 177, 184], "semaphor": [176, 177], "notif": [176, 177], "low": [176, 177], "appli": 176, "accessor": 176, "semant": 177, "explicit": 177, "synchron": 177, "safeti": 177, "exclus": 177, "writer": 177, "form": 177, "io": [181, 183, 249, 250, 251, 252], "pprint": 182, "input": [183, 184, 201], "concept": 184, "position": 184, "close": 184, "buffer": [184, 199], "wrapper": 184, "deleg": 184, "indent": [184, 257], "curri": 185, "motiv": [185, 235, 239, 241, 242], "backward": [185, 235, 239, 241, 242], "compat": [185, 235, 239, 241, 242], "FOR": 187, "inlin": 189, "adject": 189, "differ": 190, "templat": [191, 233], "comparison": 192, "magnitud": 192, "arithmet": [192, 202], "exclud": [192, 208], "big": [192, 251], "subtyp": 192, "equival": 192, "parser": [195, 217, 232, 248], "synopsi": [198, 209], "author": [198, 201, 233], "major": 198, "minor": [198, 208], "comment": [198, 257], "resourc": 198, "rc": 198, "detail": [198, 208], "network": [199, 225, 247, 248, 251], "internet": 199, "ipv6": 199, "ipv4": 199, "socket": 199, "tcp": 199, "udp": 199, "result": 201, "retriev": 201, "bridg": 201, "gap": 201, "1": [201, 213, 219, 222, 227, 228, 229, 231, 232, 245, 246, 247, 249, 250, 251, 252, 253, 254], "book": 201, "book_author": 201, "4": 201, "dbm": 201, "disconnect": 201, "null": [201, 208], "indic": 201, "polici": 201, "5": 201, "liaison": 201, "coercion": 201, "6": 201, "datatyp": 201, "diagnost": 201, "introspect": [201, 206], "repres": 202, "durat": 202, "compar": 202, "deal": [202, 208], "zone": 202, "pars": 202, "manipul": [203, 206], "directori": 203, "share": [206, 246], "organ": 208, "translat": 208, "onto": 208, "alia": 208, "messag": 208, "winmain": 208, "mask": 208, "index": 208, "b": 208, "d": 208, "e": 208, "f": 208, "g": 208, "h": 208, "l": 208, "m": 208, "n": 208, "o": [208, 213, 247, 248], "p": 208, "r": 208, "u": 208, "w": 208, "y": 208, "see": 209, "also": 209, "welcom": [210, 212], "websit": [212, 232], "2011": [213, 232, 245], "notabl": 213, "mac": 213, "insid": 214, "c3": [215, 232, 235, 246], "linear": [215, 232, 235, 246], "hack": [221, 232], "thon": [221, 232], "juli": 221, "13": 221, "14": 221, "2013": [221, 222, 224, 232, 247, 248], "bring": 223, "help": 225, "mirror": 225, "nix": [226, 232], "avail": 226, "2014": [227, 232, 249], "2019": [228, 232, 250], "2020": [229, 232, 251], "launch": 230, "2022": [231, 232, 252], "2023": [232, 253], "gtx": 232, "dswank": 232, "dep": 233, "preambl": 233, "belong": 233, "success": 233, "drm": 233, "last": 233, "resolut": 233, "supersed": 233, "By": 233, "replac": [233, 238], "submit": 233, "respons": 233, "workflow": 233, "footnot": 233, "cost": [234, 237], "implementor": [234, 237], "revis": [234, 237, 238, 240, 241, 243], "superclass": [235, 246], "discuss": [236, 237], "drop": 236, "amend": 237, "impact": 237, "benefit": 237, "aesthet": 237, "keith": 237, "playford": 237, "1995": 237, "doc": 237, "consid": 238, "safe": 239, "fill": 239, "raw": 243, "rectangl": 243, "under": [244, 246], "relocat": 246, "usabl": 246, "fdmake": 246, "testwork": [247, 248, 249, 250, 251, 252], "secur": 247, "architectur": 248, "algorithm": [248, 249], "log": 248, "bash": 249, "direct": 249, "app": 249, "contributor": [250, 251, 252, 253, 254, 255], "gabriel": 251, "benchmark": 251, "ssl": 252, "2024": [254, 255], "controversi": 257, "length": 257, "consist": 257, "notat": 257, "versu": 257, "semicolon": 257, "newlin": 257, "els": 257, "let": 257}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 58}, "alltitles": {"Classes & Instantiation": [[0, "classes-instantiation"]], "Everything is a value": [[1, "everything-is-a-value"]], "Generic Functions": [[2, "generic-functions"], [149, "generic-functions"]], "Getters & Setters are functions": [[3, "getters-setters-are-functions"]], "Hello, World!": [[4, "hello-world"]], "How it works": [[4, "how-it-works"]], "Keyword Arguments": [[5, "keyword-arguments"], [149, "keyword-arguments"]], "Limited Types": [[6, "limited-types"]], "Macros": [[7, "macros"], [140, "macros"], [257, "macros"]], "Multiple Return Values": [[8, "multiple-return-values"]], "A Quick Tour of Dylan": [[9, "a-quick-tour-of-dylan"]], "A bit more background on Dylan": [[9, "a-bit-more-background-on-dylan"]], "Beyond Java?": [[10, "beyond-java"]], "The Java Age": [[10, "the-java-age"]], "The Problems": [[10, "the-problems"]], "The Solutions": [[10, "the-solutions"]], "An Example": [[10, "an-example"]], "Single Implementation Inheritance": [[10, "single-implementation-inheritance"]], "Single Argument Method Dispatch": [[10, "single-argument-method-dispatch"]], "Single Argument Method Dispatch (Part II : The Visitor Horror)": [[10, "single-argument-method-dispatch-part-ii-the-visitor-horror"]], "Primitive Types Distinct From Objects": [[10, "primitive-types-distinct-from-objects"]], "Casting Required": [[10, "casting-required"]], "No Extensible Syntax": [[10, "no-extensible-syntax"]], "Poor Iteration/Collection Integration": [[10, "poor-iteration-collection-integration"]], "Conclusion": [[10, "conclusion"]], "Acknowledgements": [[10, "acknowledgements"]], "The Dylan Macro System": [[11, "the-dylan-macro-system"]], "Background and Overview": [[11, "background-and-overview"]], "Anatomy and terms": [[11, "anatomy-and-terms"]], "Macro Types": [[11, "macro-types"]], "Macro definitions": [[11, "macro-definitions"]], "Main Rules": [[11, "main-rules"]], "Body-style definition macro": [[11, "body-style-definition-macro"]], "List-style definition macro": [[11, "list-style-definition-macro"]], "Statement macro": [[11, "statement-macro"]], "Function macro": [[11, "function-macro"]], "Patterns": [[11, "patterns"]], "Subdivisions": [[11, "subdivisions"]], "Final items": [[11, "final-items"], [11, "finalitems-subst"]], "Property lists": [[11, "property-lists"]], "Pattern Variables": [[11, "pattern-variables"]], "Simple pattern variables": [[11, "simple-pattern-variables"]], "Property list pattern variables": [[11, "property-list-pattern-variables"]], "Body and macro pattern variables": [[11, "body-and-macro-pattern-variables"]], "Wildcard pattern variables": [[11, "wildcard-pattern-variables"]], "Auxiliary rule set pattern variables": [[11, "auxiliary-rule-set-pattern-variables"]], "Substitutions": [[11, "substitutions"]], "Simple substitutions": [[11, "simple-substitutions"]], "Conversion substitutions": [[11, "conversion-substitutions"]], "Concatenation substitutions": [[11, "concatenation-substitutions"]], "List substitutions": [[11, "list-substitutions"]], "Auxiliary rule set substitution": [[11, "auxiliary-rule-set-substitution"]], "Unhygienic reference": [[11, "unhygienic-reference"]], "Auxiliary Rules and Expansions": [[11, "auxiliary-rules-and-expansions"]], "Auxiliary Rules": [[11, "auxiliary-rules"]], "Expansions": [[11, "expansions"]], "Simple expansion": [[11, "simple-expansion"]], "Effect of constraints": [[11, "effect-of-constraints"]], "Empty and missing code fragments": [[11, "empty-and-missing-code-fragments"]], "Complex expansion": [[11, "complex-expansion"]], "Property lists and optional properties": [[11, "property-lists-and-optional-properties"]], "Auxiliary rule sets in auxiliary rules": [[11, "auxiliary-rule-sets-in-auxiliary-rules"]], "?? and ? pattern variables": [[11, "and-pattern-variables"]], "Empty ?? pattern variables": [[11, "empty-pattern-variables"]], "Recursive expansion": [[11, "recursive-expansion"]], "Hygiene": [[11, "hygiene"]], "Breaking hygiene": [[11, "breaking-hygiene"]], "FAQ and Tips": [[11, "faq-and-tips"]], "General advice and troubleshooting": [[11, "general-advice-and-troubleshooting"]], "How can I combine multiple names into one?": [[11, "how-can-i-combine-multiple-names-into-one"]], "How can I write macros that follow a BNF-like syntax?": [[11, "how-can-i-write-macros-that-follow-a-bnf-like-syntax"]], "I can\u2019t make a bare list!": [[11, "i-can-t-make-a-bare-list"]], "A Simple Function: Distance": [[12, "a-simple-function-distance"]], "Conditions and Multiple Values: The Quadratic Formula": [[13, "conditions-and-multiple-values-the-quadratic-formula"]], "Iteration and Sequences: Dot Product": [[14, "iteration-and-sequences-dot-product"]], "Procedural Dylan": [[15, "procedural-dylan"]], "or How to write Pascal programs in Dylan": [[15, "or-how-to-write-pascal-programs-in-dylan"]], "Adding Callbacks to the Application": [[16, "adding-callbacks-to-the-application"]], "Defining the underlying data structures for tasks": [[16, "defining-the-underlying-data-structures-for-tasks"]], "Specifying a callback in the definition of each gadget": [[16, "specifying-a-callback-in-the-definition-of-each-gadget"]], "Defining the callbacks": [[16, "defining-the-callbacks"]], "Handling files in the task list manager": [[16, "handling-files-in-the-task-list-manager"]], "The open-file method": [[16, "the-open-file-method"]], "The save-file method": [[16, "the-save-file-method"]], "The save-as-file method": [[16, "the-save-as-file-method"]], "The load-task-list function": [[16, "the-load-task-list-function"]], "The save-task-list function": [[16, "the-save-task-list-function"]], "Adding and removing tasks from the task list": [[16, "adding-and-removing-tasks-from-the-task-list"]], "DUIM support for adding and removing tasks": [[16, "duim-support-for-adding-and-removing-tasks"]], "Non-DUIM support for adding and removing tasks": [[16, "non-duim-support-for-adding-and-removing-tasks"]], "Updating the user interface": [[16, "updating-the-user-interface"]], "Initializing a new instance of ": [[16, "initializing-a-new-instance-of-task-frame"]], "Determining and setting the selected task": [[16, "determining-and-setting-the-selected-task"]], "Enabling and disabling buttons in the interface": [[16, "enabling-and-disabling-buttons-in-the-interface"]], "Refreshing the list of tasks": [[16, "id2"]], "Creating an information dialog": [[16, "creating-an-information-dialog"]], "Exiting the task list manager": [[16, "exiting-the-task-list-manager"]], "Enhancing the task list manager": [[16, "enhancing-the-task-list-manager"]], "Using Command Tables": [[17, "using-command-tables"]], "Introduction": [[17, "introduction"], [19, "introduction"], [22, "introduction"], [26, "introduction"], [48, "introduction"], [48, "id110"], [54, "introduction"], [108, "introduction"], [119, "introduction"], [246, "introduction"], [247, "introduction"], [248, "introduction"], [249, "introduction"]], "Implementing a command table": [[17, "implementing-a-command-table"]], "Re-implementing the menus of the task list manager": [[17, "re-implementing-the-menus-of-the-task-list-manager"]], "Including command tables in frame definitions": [[17, "including-command-tables-in-frame-definitions"]], "Changes required to run Task List 2": [[17, "changes-required-to-run-task-list-2"]], "Changes to button definitions": [[17, "changes-to-button-definitions"]], "Changes to callback definitions": [[17, "changes-to-callback-definitions"]], "Changes to method definitions": [[17, "changes-to-method-definitions"]], "Copyright": [[18, "copyright"], [65, "copyright"], [75, "copyright"], [93, "copyright"], [109, "copyright"], [146, "copyright"], [172, "copyright"], [185, "copyright"], [233, "copyright"], [235, "copyright"], [242, "copyright"]], "Designing A Simple DUIM Application": [[19, "designing-a-simple-duim-application"]], "Design of the application": [[19, "design-of-the-application"]], "Creating the basic sheet hierarchy": [[19, "creating-the-basic-sheet-hierarchy"]], "Placing all the elements in a single layout": [[19, "placing-all-the-elements-in-a-single-layout"]], "Redesigning the layout": [[19, "redesigning-the-layout"]], "Adding a radio box": [[19, "adding-a-radio-box"]], "Using contain to run examples interactively": [[19, "using-contain-to-run-examples-interactively"]], "Improving The Design": [[20, "improving-the-design"]], "Defining a project": [[20, "defining-a-project"]], "Starting the application": [[20, "starting-the-application"]], "Adding a default callback": [[20, "adding-a-default-callback"]], "Defining a new frame class": [[20, "defining-a-new-frame-class"]], "Adding a tool bar": [[20, "adding-a-tool-bar"]], "Adding a status bar": [[20, "adding-a-status-bar"]], "Gluing the new design together": [[20, "gluing-the-new-design-together"]], "Creating a dialog for adding new items": [[20, "creating-a-dialog-for-adding-new-items"]], "Building Applications With DUIM": [[21, "building-applications-with-duim"]], "Overview of the DUIM libraries": [[22, "overview-of-the-duim-libraries"]], "The DUIM programming model": [[22, "the-duim-programming-model"]], "It should be as easy to use as possible.": [[22, "it-should-be-as-easy-to-use-as-possible"]], "It should be as compact as possible.": [[22, "it-should-be-as-compact-as-possible"]], "It should be as portable as possible.": [[22, "it-should-be-as-portable-as-possible"]], "Adding Menus To The Application": [[23, "adding-menus-to-the-application"]], "A description of the menu system": [[23, "a-description-of-the-menu-system"]], "Creating a menu hierarchy": [[23, "creating-a-menu-hierarchy"]], "Documentation strings": [[23, "documentation-strings"]], "Keyboard accelerators": [[23, "keyboard-accelerators"]], "Gluing the final design together": [[23, "gluing-the-final-design-together"]], "Preface": [[24, "preface"], [51, "preface"], [100, "preface"]], "About this manual": [[24, "about-this-manual"]], "Running examples in this manual": [[24, "running-examples-in-this-manual"]], "Further reading": [[24, "further-reading"], [51, "further-reading"]], "Source Code For The Task List Manager": [[25, "source-code-for-the-task-list-manager"]], "A task list manager using menu gadgets": [[25, "a-task-list-manager-using-menu-gadgets"]], "Contents of the file frame.dylan :": [[25, "contents-of-the-file-frame-dylan"], [25, "id1"]], "A task list manager using command tables": [[25, "a-task-list-manager-using-command-tables"]], "Contents of the file task-list.dylan :": [[25, "contents-of-the-file-task-list-dylan"]], "A Tour of the DUIM Libraries": [[26, "a-tour-of-the-duim-libraries"]], "A tour of gadgets": [[26, "a-tour-of-gadgets"]], "General properties of gadgets": [[26, "general-properties-of-gadgets"]], "Button gadgets": [[26, "button-gadgets"], [69, "button-gadgets"]], "Standard buttons": [[26, "standard-buttons"]], "Menu buttons": [[26, "menu-buttons"]], "Collection gadgets": [[26, "collection-gadgets"], [69, "collection-gadgets"]], "Useful properties of collection gadgets": [[26, "useful-properties-of-collection-gadgets"]], "Button boxes": [[26, "button-boxes"]], "Menu boxes": [[26, "menu-boxes"]], "Lists": [[26, "lists"]], "Display controls": [[26, "display-controls"]], "Tree controls": [[26, "tree-controls"]], "List controls": [[26, "list-controls"]], "Table controls": [[26, "table-controls"]], "Spin boxes": [[26, "spin-boxes"]], "Text gadgets": [[26, "text-gadgets"], [69, "text-gadgets"]], "Useful properties of text gadgets": [[26, "useful-properties-of-text-gadgets"]], "Text fields": [[26, "text-fields"]], "Text editors": [[26, "text-editors"]], "Password fields": [[26, "password-fields"]], "Range gadgets": [[26, "range-gadgets"]], "Useful properties of range gadgets": [[26, "useful-properties-of-range-gadgets"]], "Scroll bars": [[26, "scroll-bars"]], "Sliders": [[26, "sliders"]], "Progress bars": [[26, "progress-bars"]], "Assigning callbacks to gadgets": [[26, "assigning-callbacks-to-gadgets"]], "A tour of layouts": [[26, "a-tour-of-layouts"]], "Row layouts and column layouts": [[26, "row-layouts-and-column-layouts"]], "Stack layouts": [[26, "stack-layouts"]], "Pinboard layouts and fixed layouts": [[26, "pinboard-layouts-and-fixed-layouts"]], "Using horizontally and vertically macros": [[26, "using-horizontally-and-vertically-macros"]], "A tour of sheets": [[26, "a-tour-of-sheets"]], "Basic properties of sheets": [[26, "basic-properties-of-sheets"]], "A tour of frames": [[26, "a-tour-of-frames"]], "Creating frames and displaying them on-screen": [[26, "creating-frames-and-displaying-them-on-screen"]], "Useful properties of frames": [[26, "useful-properties-of-frames"]], "Defining new classes of frame": [[26, "defining-new-classes-of-frame"]], "Specifying slots for a new class of frame": [[26, "specifying-slots-for-a-new-class-of-frame"]], "Specifying panes for a new class of frame": [[26, "specifying-panes-for-a-new-class-of-frame"]], "Overview of dialogs": [[26, "overview-of-dialogs"]], "Where to go from here": [[26, "where-to-go-from-here"]], "Dylan / Cilk": [[27, "dylan-cilk"]], "Dylan / Cocoa": [[28, "dylan-cocoa"]], "Dispatch Optimization": [[29, "dispatch-optimization"]], "Dylan Documentation Tools": [[30, "dylan-documentation-tools"]], "Searchable, Browsable API documentation": [[30, "searchable-browsable-api-documentation"]], "Interactive Graphs": [[30, "interactive-graphs"]], "DyLint": [[31, "dylint"]], "Frontend/LISP": [[32, "frontend-lisp"]], "Dylan / Gtk+": [[33, "dylan-gtk"]], "Google Summer of Code - 2012": [[34, "google-summer-of-code-2012"]], "JavaScript Compiler Backend": [[35, "javascript-compiler-backend"]], "Dylan / Numerics": [[36, "dylan-numerics"]], "Rethinking the Project Manager": [[37, "rethinking-the-project-manager"]], "Problem": [[37, "problem"]], "Example Application": [[37, "example-application"]], "Current Situation": [[37, "current-situation"]], "Better World?": [[37, "better-world"]], "Proposal": [[37, "proposal"], [236, "proposal"], [242, "proposal"]], "Workspaces": [[37, "workspaces"]], "Package Manager": [[37, "package-manager"]], "Catalog": [[37, "catalog"]], "Software Distribution": [[37, "software-distribution"]], "User Interface": [[37, "user-interface"]], "Versioning": [[37, "versioning"], [99, "versioning"]], "Development Process": [[37, "development-process"]], "Glossary": [[37, "glossary"], [116, "glossary"]], "Speed": [[38, "speed"]], "Static Linking": [[39, "static-linking"]], "Tracing": [[40, "tracing"]], "Google Summer of Code": [[41, "google-summer-of-code"]], "Connect with the Dylan Community": [[42, "connect-with-the-dylan-community"]], "The Bank Client": [[43, "the-bank-client"]], "The bank client": [[43, "id1"]], "The client\u2019s perspective": [[43, "the-clients-perspective"]], "Requirements for implementing the bank client": [[43, "requirements-for-implementing-the-bank-client"]], "Implementing the bank client\u2019s GUI": [[43, "implementing-the-bank-clients-gui"]], "Implementing CORBA initialization for the bank client": [[43, "implementing-corba-initialization-for-the-bank-client"]], "Writing and Compiling IDL": [[44, "writing-and-compiling-idl"]], "Writing IDL for a CORBA application": [[44, "writing-idl-for-a-corba-application"]], "IDL for the account interface": [[44, "idl-for-the-account-interface"]], "IDL for the checkingAccount interface": [[44, "idl-for-the-checkingaccount-interface"]], "IDL for the bank interface": [[44, "idl-for-the-bank-interface"]], "Compiling IDL for a CORBA application": [[44, "compiling-idl-for-a-corba-application"]], "Libraries created by compiling IDL": [[44, "libraries-created-by-compiling-idl"]], "IDL files in Dylan projects": [[44, "idl-files-in-dylan-projects"]], "Compilation steps": [[44, "compilation-steps"]], "Mapping IDL to Dylan": [[44, "mapping-idl-to-dylan"]], "Mapping for interfaces": [[44, "mapping-for-interfaces"], [48, "mapping-for-interfaces"]], "Mapping for basic types": [[44, "mapping-for-basic-types"], [48, "mapping-for-basic-types"]], "Mapping for attributes": [[44, "mapping-for-attributes"], [48, "mapping-for-attributes"]], "Mapping for operations": [[44, "mapping-for-operations"], [48, "mapping-for-operations"]], "Mapping for exceptions": [[44, "mapping-for-exceptions"], [48, "mapping-for-exceptions"]], "The Bank Server": [[45, "the-bank-server"]], "The server": [[45, "the-server"]], "The ODBC database": [[45, "the-odbc-database"]], "Overview of the Open Dylan SQL-ODBC library": [[45, "overview-of-the-open-dylan-sql-odbc-library"]], "Implementing CORBA objects in a server": [[45, "implementing-corba-objects-in-a-server"]], "Object adapters": [[45, "object-adapters"]], "The server\u2019s perspective": [[45, "the-servers-perspective"]], "Requirements for implementing the bank server": [[45, "requirements-for-implementing-the-bank-server"]], "The bank server GUI": [[45, "the-bank-server-gui"]], "The bank server library and module": [[45, "the-bank-server-library-and-module"]], "Implementing the servant classes": [[45, "implementing-the-servant-classes"]], "Implementing the servant methods": [[45, "implementing-the-servant-methods"]], "Implementing CORBA initialization for the bank server": [[45, "implementing-corba-initialization-for-the-bank-server"]], "Setting up the Bank Example": [[46, "setting-up-the-bank-example"]], "About the bank example": [[46, "about-the-bank-example"]], "Where to find the example code": [[46, "where-to-find-the-example-code"]], "ODBC requirements": [[46, "odbc-requirements"]], "Registering the database with ODBC": [[46, "registering-the-database-with-odbc"]], "Registering the database on Windows 10": [[46, "registering-the-database-on-windows-10"]], "Building the Bank client and server": [[46, "building-the-bank-client-and-server"]], "Running the server and client": [[46, "running-the-server-and-client"]], "Quick Start Tutorial": [[47, "quick-start-tutorial"]], "About this chapter": [[47, "about-this-chapter"]], "A CORBA-based Hello World": [[47, "a-corba-based-hello-world"]], "Creating the projects": [[47, "creating-the-projects"]], "Defining the interface": [[47, "defining-the-interface"]], "Generating stub, skeleton, protocol code from IDL": [[47, "generating-stub-skeleton-protocol-code-from-idl"]], "A browsing detour": [[47, "a-browsing-detour"]], "Implementing the client": [[47, "implementing-the-client"]], "Initializing the ORB": [[47, "initializing-the-orb"]], "Obtaining an object reference": [[47, "obtaining-an-object-reference"]], "Invoking an operation": [[47, "invoking-an-operation"]], "Complete code for the client": [[47, "complete-code-for-the-client"]], "Implementing the server": [[47, "implementing-the-server"]], "A note on terminology": [[47, "a-note-on-terminology"]], "Implementing the server\u2019s CORBA objects": [[47, "implementing-the-servers-corba-objects"]], "ORB and object initialization": [[47, "orb-and-object-initialization"]], "Complete code for the server": [[47, "complete-code-for-the-server"]], "Building and testing the application": [[47, "building-and-testing-the-application"]], "An IDL Binding for Dylan": [[48, "an-idl-binding-for-dylan"]], "Document conventions": [[48, "document-conventions"]], "Bibliography": [[48, "bibliography"]], "Design rationale": [[48, "design-rationale"]], "Glossary of terms": [[48, "glossary-of-terms"]], "Design philosophy": [[48, "design-philosophy"]], "Linguistic requirements": [[48, "linguistic-requirements"]], "Engineering requirements": [[48, "engineering-requirements"]], "Miscellaneous requirements": [[48, "miscellaneous-requirements"]], "Mapping summary": [[48, "mapping-summary"]], "Lexical mapping": [[48, "lexical-mapping"]], "Identifiers": [[48, "identifiers"], [48, "id11"]], "Background": [[48, "background"], [48, "id1"], [48, "id3"], [48, "id5"], [48, "id7"], [48, "id9"], [48, "id16"], [48, "id20"], [48, "id24"], [48, "id33"], [48, "id38"], [48, "id43"], [48, "id47"], [48, "id51"], [48, "id55"], [48, "id59"], [48, "id63"], [48, "id67"], [48, "id70"], [48, "id74"], [48, "id78"], [48, "id82"], [48, "id86"], [48, "id90"], [48, "id94"], [48, "id98"], [48, "id102"], [48, "id106"], [48, "id111"], [48, "id114"], [48, "id117"], [48, "id121"], [48, "id125"], [48, "id129"], [48, "id133"], [238, "background"]], "Specification": [[48, "specification"], [48, "id2"], [48, "id4"], [48, "id6"], [48, "id8"], [48, "id10"], [48, "id12"], [48, "id14"], [48, "id17"], [48, "id21"], [48, "id25"], [48, "id28"], [48, "id30"], [48, "id34"], [48, "id39"], [48, "id44"], [48, "id48"], [48, "id52"], [48, "id56"], [48, "id60"], [48, "id64"], [48, "id68"], [48, "id71"], [48, "id75"], [48, "id79"], [48, "id83"], [48, "id87"], [48, "id91"], [48, "id95"], [48, "id99"], [48, "id103"], [48, "id107"], [48, "id112"], [48, "id115"], [48, "id118"], [48, "id122"], [48, "id126"], [48, "id130"], [48, "id134"], [185, "specification"], [234, "specification"], [235, "specification"], [237, "specification"], [238, "specification"], [239, "specification"], [240, "specification"], [241, "specification"], [243, "specification"]], "Examples": [[48, "examples"], [48, "id13"], [48, "id19"], [48, "id23"], [48, "id27"], [48, "id29"], [48, "id36"], [48, "id41"], [48, "id46"], [48, "id50"], [48, "id54"], [48, "id58"], [48, "id62"], [48, "id66"], [48, "id69"], [48, "id73"], [48, "id77"], [48, "id81"], [48, "id85"], [48, "id89"], [48, "id93"], [48, "id97"], [48, "id101"], [48, "id105"], [48, "id109"], [48, "id136"], [54, "examples"], [185, "examples"], [234, "examples"], [235, "examples"], [237, "examples"], [243, "examples"]], "Literals": [[48, "literals"], [59, "literals"], [60, "literals"]], "Integers": [[48, "integers"], [48, "id32"], [192, "integers"]], "Floating point numbers": [[48, "floating-point-numbers"]], "Character literals": [[48, "character-literals"]], "String Literals": [[48, "string-literals"]], "Fixed point decimals": [[48, "fixed-point-decimals"]], "Constant expressions": [[48, "constant-expressions"]], "Operators": [[48, "operators"], [60, "operators"]], "The mapping of IDL to Dylan": [[48, "the-mapping-of-idl-to-dylan"]], "Names": [[48, "names"]], "Scoped names": [[48, "scoped-names"]], "Rationale": [[48, "rationale"], [48, "id15"], [48, "id18"], [48, "id22"], [48, "id26"], [48, "id31"], [48, "id35"], [48, "id40"], [48, "id45"], [48, "id49"], [48, "id53"], [48, "id57"], [48, "id61"], [48, "id65"], [48, "id72"], [48, "id76"], [48, "id80"], [48, "id84"], [48, "id88"], [48, "id92"], [48, "id96"], [48, "id100"], [48, "id104"], [48, "id108"], [48, "id113"], [48, "id116"], [48, "id119"], [48, "id123"], [48, "id127"], [48, "id131"], [48, "id135"], [185, "rationale"], [234, "rationale"], [235, "rationale"], [237, "rationale"], [238, "rationale"], [239, "rationale"], [240, "rationale"], [241, "rationale"], [243, "rationale"]], "IDL Files": [[48, "idl-files"]], "Implementation notes": [[48, "implementation-notes"]], "The DYLAN-ORB library": [[48, "the-dylan-orb-library"]], "Mapping modules": [[48, "mapping-modules"]], "Mapping for interface inheritance": [[48, "mapping-for-interface-inheritance"]], "Mapping for constants": [[48, "mapping-for-constants"]], "Overall Background": [[48, "overall-background"]], "Floating-point numbers": [[48, "id37"]], "Fixed-point decimals": [[48, "id42"]], "Characters": [[48, "characters"], [208, "characters"]], "Wide characters": [[48, "wide-characters"]], "Boolean values": [[48, "boolean-values"]], "Octets": [[48, "octets"]], "The \u201cany\u201d type": [[48, "the-any-type"]], "Mapping for constructed types": [[48, "mapping-for-constructed-types"]], "Mapping for typedefs": [[48, "mapping-for-typedefs"]], "Mapping for enumeration types": [[48, "mapping-for-enumeration-types"]], "Mapping for structure types": [[48, "mapping-for-structure-types"]], "Mapping for discriminated union type": [[48, "mapping-for-discriminated-union-type"]], "Mapping for sequence type": [[48, "mapping-for-sequence-type"]], "Mapping for string type": [[48, "mapping-for-string-type"]], "Mapping for wide string type": [[48, "mapping-for-wide-string-type"]], "Mapping for array type": [[48, "mapping-for-array-type"]], "In Parameters": [[48, "in-parameters"]], "Out Parameters": [[48, "out-parameters"]], "InOut Parameters": [[48, "inout-parameters"]], "Memory management considerations": [[48, "memory-management-considerations"]], "Multi-threading considerations": [[48, "multi-threading-considerations"]], "The mapping of pseudo-objects to Dylan": [[48, "the-mapping-of-pseudo-objects-to-dylan"]], "ORB Interface": [[48, "orb-interface"]], "Object references": [[48, "object-references"]], "Example": [[48, "example"], [48, "id120"], [48, "id124"], [48, "id128"], [48, "id132"]], "Object reference equality": [[48, "object-reference-equality"]], "Nil object references": [[48, "nil-object-references"]], "Dynamic Invocation Interface": [[48, "dynamic-invocation-interface"]], "NVList": [[48, "nvlist"]], "Dynamic Skeleton Interface": [[48, "dynamic-skeleton-interface"]], "Dynamic Implementation Routine": [[48, "dynamic-implementation-routine"]], "The Portable Object Adapter": [[48, "the-portable-object-adapter"]], "Servants": [[48, "servants"]], "Developing Component Software with CORBA": [[49, "developing-component-software-with-corba"]], "About Open Dylan CORBA": [[50, "about-open-dylan-corba"]], "About CORBA": [[50, "about-corba"]], "About the Open Dylan ORB": [[50, "about-the-open-dylan-orb"]], "Features of Open Dylan CORBA": [[50, "features-of-open-dylan-corba"]], "CORBA examples": [[50, "corba-examples"]], "Product": [[51, "product"]], "Parts": [[51, "parts"]], "Audience": [[51, "audience"]], "Standards compliance": [[51, "standards-compliance"]], "Creating CORBA Projects": [[52, "creating-corba-projects"]], "About CORBA projects": [[52, "about-corba-projects"]], "Creating CORBA projects": [[52, "id1"]], "Setting ORB options": [[52, "setting-orb-options"]], "The role of spec files in IDL compilation": [[52, "the-role-of-spec-files-in-idl-compilation"]], "How the spec file affects IDL compilation": [[52, "how-the-spec-file-affects-idl-compilation"]], "Header information for CORBA spec files": [[52, "header-information-for-corba-spec-files"]], "Server keywords for CORBA spec files": [[52, "server-keywords-for-corba-spec-files"]], "Client keywords for CORBA spec files": [[52, "client-keywords-for-corba-spec-files"]], "Other keywords for CORBA spec files": [[52, "other-keywords-for-corba-spec-files"]], "Using IDL for non-CORBA work": [[52, "using-idl-for-non-corba-work"]], "Running and Debugging CORBA Applications": [[53, "running-and-debugging-corba-applications"]], "Debugging client/server applications in the IDE": [[53, "debugging-client-server-applications-in-the-ide"]], "Browsing for supported CORBA operations": [[53, "browsing-for-supported-corba-operations"]], "ORB runtime": [[53, "orb-runtime"]], "Implicit activation": [[53, "implicit-activation"]], "Port assignment": [[53, "port-assignment"]], "POA threading": [[53, "poa-threading"]], "ORB runtime switches": [[53, "orb-runtime-switches"]], "Using the Dylan IDL Compiler": [[54, "using-the-dylan-idl-compiler"]], "General usage": [[54, "general-usage"]], "Code generation options": [[54, "code-generation-options"]], "Preprocessor options": [[54, "preprocessor-options"]], "Miscellaneous options": [[54, "miscellaneous-options"], [94, "miscellaneous-options"]], "Collections Cheat Sheet": [[55, "collections-cheat-sheet"]], "Common Collection Types": [[55, "common-collection-types"]], "Mutable vs. Immutable": [[55, "mutable-vs-immutable"]], "Common Operations": [[55, "common-operations"]], "Conditionals Cheat Sheet": [[56, "conditionals-cheat-sheet"]], "if": [[56, "if"]], "case": [[56, "case"]], "select": [[56, "select"]], "unless": [[56, "unless"]], "when": [[56, "when"]], "Cheat Sheets": [[57, "cheat-sheets"]], "Iteration Cheat Sheet": [[58, "iteration-cheat-sheet"]], "Simple iteration with while and until": [[58, "simple-iteration-with-while-and-until"]], "The for loop": [[58, "the-for-loop"]], "Iterating over a collection": [[58, "iterating-over-a-collection"]], "Iterating over a range": [[58, "iterating-over-a-range"]], "Iterating over a table": [[58, "iterating-over-a-table"]], "Breaking out of a loop": [[58, "breaking-out-of-a-loop"]], "Collection Functions": [[58, "collection-functions"]], "do": [[58, "do"]], "map, map-as, map-into": [[58, "map-map-as-map-into"]], "reduce, reduce1": [[58, "reduce-reduce1"]], "Iteration with Tail Recursion": [[58, "iteration-with-tail-recursion"]], "A Dylan Primer for Scheme Programmers": [[59, "a-dylan-primer-for-scheme-programmers"]], "Syntax": [[59, "syntax"]], "Predefined functions": [[59, "predefined-functions"]], "Syntax Cheat Sheet": [[60, "syntax-cheat-sheet"]], "Naming Conventions": [[60, "naming-conventions"], [147, "naming-conventions"]], "String Formatting": [[60, "string-formatting"]], "Parameter Lists": [[60, "parameter-lists"]], "Documentation": [[61, "documentation"], [247, "documentation"], [248, "documentation"], [250, "documentation"], [251, "documentation"], [252, "documentation"]], "Learn Dylan": [[61, "learn-dylan"]], "References": [[61, "references"]], "Articles": [[61, "articles"]], "Publications": [[61, "publications"], [131, "publications"]], "For Open Dylan Developers": [[61, "for-open-dylan-developers"]], "Publications about Dylan": [[62, "publications-about-dylan"]], "Install Open Dylan": [[63, "install-open-dylan"]], "Unix Platforms": [[63, "unix-platforms"]], "Windows": [[63, "windows"]], "Installing Older Versions": [[63, "installing-older-versions"]], "Conventions in this Manual": [[64, "conventions-in-this-manual"]], "Audience, goals, and purpose": [[64, "audience-goals-and-purpose"]], "Example code fragments": [[64, "example-code-fragments"]], "Module structure": [[64, "module-structure"]], "Spread point arguments to functions": [[64, "spread-point-arguments-to-functions"]], "Immutability of objects": [[64, "immutability-of-objects"]], "Behavior of interfaces": [[64, "behavior-of-interfaces"]], "Specialized arguments to generic functions": [[64, "specialized-arguments-to-generic-functions"]], "Macros that expand into calls to advertised functions": [[64, "macros-that-expand-into-calls-to-advertised-functions"]], "Terminology pertaining to error conditions": [[64, "terminology-pertaining-to-error-conditions"]], "DUIM-DCs Library": [[66, "duim-dcs-library"]], "Overview": [[66, "overview"], [67, "overview"], [68, "overview"], [69, "overview"], [70, "overview"], [71, "overview"], [73, "overview"], [74, "overview"], [154, "overview"], [159, "overview"], [184, "overview"], [199, "overview"]], "The class hierarchy for DUIM-DCs": [[66, "the-class-hierarchy-for-duim-dcs"]], "Subclasses of ": [[66, "subclasses-of-ink"]], "Error classes provided by DUIM-DCs": [[66, "error-classes-provided-by-duim-dcs"]], "DUIM-DCs Module": [[66, "duim-dcs-module"]], "DUIM-Extended-Geometry Library": [[67, "duim-extended-geometry-library"]], "The class hierarchy for DUIM-Extended-Geometry": [[67, "the-class-hierarchy-for-duim-extended-geometry"]], "Subclasses of ": [[67, "subclasses-of-area"]], "Subclass of ": [[67, "subclass-of-path"]], "DUIM-Extended-Geometry Module": [[67, "duim-extended-geometry-module"]], "DUIM-Frames Library": [[68, "duim-frames-library"]], "The class hierarchy for DUIM-Frames": [[68, "the-class-hierarchy-for-duim-frames"]], "The class and its subclasses": [[68, "the-frame-class-and-its-subclasses"]], "Subclasses of ": [[68, "subclasses-of-frame"]], "Subclasses of ": [[68, "subclasses-of-frame-event"]], "Subclasses of ": [[68, "subclasses-of-page"], [69, "subclasses-of-page"]], "DUIM-Commands Library": [[68, "duim-commands-library"]], "DUIM-Frames Module": [[68, "duim-frames-module"]], "DUIM-Gadgets Library": [[69, "duim-gadgets-library"]], "Callbacks and keys": [[69, "callbacks-and-keys"]], "Gadget protocols": [[69, "gadget-protocols"]], "The class hierarchy for DUIM-Gadgets": [[69, "the-class-hierarchy-for-duim-gadgets"]], "The class and its subclasses": [[69, "the-gadget-class-and-its-subclasses"]], "Overall class hierarchy for the DUIM-Gadgets library": [[69, "overall-class-hierarchy-for-the-duim-gadgets-library"]], "Subclasses of ": [[69, "subclasses-of-value-gadget"]], "Subclasses of the class": [[69, "subclasses-of-the-value-gadget-class"]], "Subclasses of the class": [[69, "subclasses-of-the-page-class"]], "Subclasses of